@maltjoy/core-vue 3.29.2 → 3.31.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 +1,2 @@
1
- export type TJoyBadgeVariants = 'info' | 'gray' | 'green' | 'orange' | 'red' | 'teal' | 'pink' | 'dark-blue' | 'yellow';
1
+ import { TJoyDotVariants } from '../JoyDot/VJoyDot.types';
2
+ export type TJoyBadgeVariants = TJoyDotVariants;
@@ -1,5 +1,4 @@
1
1
  import { PropType } from 'vue';
2
- import { TJoyBadgeVariants } from './JoyBadge.types';
3
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
3
  /**
5
4
  * Display the colored bulletpoint on the left
@@ -17,11 +16,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
17
16
  };
18
17
  /**
19
18
  * Color of the badge. Override the color with `--badge-bg-color` and `--badge-circle-color` if needed.
19
+ *
20
+ * You can use the `TJoyBadgeVariants` type.
20
21
  */
21
22
  variant: {
22
- type: PropType<TJoyBadgeVariants>;
23
+ type: PropType<import("../JoyDot/VJoyDot.types").TJoyDotVariants>;
23
24
  default: string;
24
25
  };
26
+ number: NumberConstructor;
25
27
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
26
28
  /**
27
29
  * Display the colored bulletpoint on the left
@@ -39,15 +41,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
39
41
  };
40
42
  /**
41
43
  * Color of the badge. Override the color with `--badge-bg-color` and `--badge-circle-color` if needed.
44
+ *
45
+ * You can use the `TJoyBadgeVariants` type.
42
46
  */
43
47
  variant: {
44
- type: PropType<TJoyBadgeVariants>;
48
+ type: PropType<import("../JoyDot/VJoyDot.types").TJoyDotVariants>;
45
49
  default: string;
46
50
  };
51
+ number: NumberConstructor;
47
52
  }>>, {
48
53
  label: string;
54
+ variant: import("../JoyDot/VJoyDot.types").TJoyDotVariants;
49
55
  bulletpoint: boolean;
50
- variant: TJoyBadgeVariants;
51
56
  }, {}>, Readonly<{
52
57
  /** Use the slot as an alternative to "label" property. */
53
58
  default(): any;
@@ -0,0 +1 @@
1
+ export type TJoyDotVariants = 'info' | 'gray' | 'green' | 'orange' | 'red' | 'teal' | 'pink' | 'dark-blue' | 'yellow';
@@ -0,0 +1,18 @@
1
+ import { PropType } from 'vue';
2
+ import { TJoyDotVariants } from './VJoyDot.types';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ number: NumberConstructor;
5
+ variant: {
6
+ type: PropType<TJoyDotVariants>;
7
+ default: string;
8
+ };
9
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ number: NumberConstructor;
11
+ variant: {
12
+ type: PropType<TJoyDotVariants>;
13
+ default: string;
14
+ };
15
+ }>>, {
16
+ variant: TJoyDotVariants;
17
+ }, {}>;
18
+ export default _default;
@@ -0,0 +1,120 @@
1
+ declare const _default: <T extends {
2
+ name: string;
3
+ }>(__VLS_props: {
4
+ name: string;
5
+ multiple?: boolean | undefined;
6
+ modelValue: (File | T)[];
7
+ accept?: string[] | undefined;
8
+ deleteLabel?: string | undefined;
9
+ updateLabel?: string | undefined;
10
+ maxSize?: number | undefined;
11
+ errorTextFormat?: string | undefined;
12
+ errorTextMaxSize?: string | undefined;
13
+ errorTextFormatAndMaxSize?: string | undefined;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
15
+ attrs: any;
16
+ slots: Readonly<{
17
+ /** Legend displayed at the bottom of the dropzone */
18
+ 'dropzone-legend'?: (() => any) | undefined;
19
+ /** Block description of the dropzone */
20
+ 'dropzone-description'?: (() => any) | undefined;
21
+ /** Add information under the file name */
22
+ 'file-information'?: (() => any) | undefined;
23
+ /** Add file actions next to the update button */
24
+ 'file-actions'?: (() => any) | undefined;
25
+ }> & {
26
+ /** Legend displayed at the bottom of the dropzone */
27
+ 'dropzone-legend'?: (() => any) | undefined;
28
+ /** Block description of the dropzone */
29
+ 'dropzone-description'?: (() => any) | undefined;
30
+ /** Add information under the file name */
31
+ 'file-information'?: (() => any) | undefined;
32
+ /** Add file actions next to the update button */
33
+ 'file-actions'?: (() => any) | undefined;
34
+ };
35
+ emit: any;
36
+ } | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
37
+ invalid: import("vue").ComputedRef<boolean>;
38
+ }>) => void) | undefined, __VLS_setup?: Promise<{
39
+ props: {
40
+ name: string;
41
+ multiple?: boolean | undefined;
42
+ modelValue: (File | T)[];
43
+ accept?: string[] | undefined;
44
+ deleteLabel?: string | undefined;
45
+ updateLabel?: string | undefined;
46
+ maxSize?: number | undefined;
47
+ errorTextFormat?: string | undefined;
48
+ errorTextMaxSize?: string | undefined;
49
+ errorTextFormatAndMaxSize?: string | undefined;
50
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
51
+ expose(exposed: import("vue").ShallowUnwrapRef<{
52
+ invalid: import("vue").ComputedRef<boolean>;
53
+ }>): void;
54
+ attrs: any;
55
+ slots: Readonly<{
56
+ /** Legend displayed at the bottom of the dropzone */
57
+ 'dropzone-legend'?: (() => any) | undefined;
58
+ /** Block description of the dropzone */
59
+ 'dropzone-description'?: (() => any) | undefined;
60
+ /** Add information under the file name */
61
+ 'file-information'?: (() => any) | undefined;
62
+ /** Add file actions next to the update button */
63
+ 'file-actions'?: (() => any) | undefined;
64
+ }> & {
65
+ /** Legend displayed at the bottom of the dropzone */
66
+ 'dropzone-legend'?: (() => any) | undefined;
67
+ /** Block description of the dropzone */
68
+ 'dropzone-description'?: (() => any) | undefined;
69
+ /** Add information under the file name */
70
+ 'file-information'?: (() => any) | undefined;
71
+ /** Add file actions next to the update button */
72
+ 'file-actions'?: (() => any) | undefined;
73
+ };
74
+ emit: any;
75
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
76
+ [key: string]: any;
77
+ }> & {
78
+ __ctx?: {
79
+ props: {
80
+ name: string;
81
+ multiple?: boolean | undefined;
82
+ modelValue: (File | T)[];
83
+ accept?: string[] | undefined;
84
+ deleteLabel?: string | undefined;
85
+ updateLabel?: string | undefined;
86
+ maxSize?: number | undefined;
87
+ errorTextFormat?: string | undefined;
88
+ errorTextMaxSize?: string | undefined;
89
+ errorTextFormatAndMaxSize?: string | undefined;
90
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
91
+ expose(exposed: import("vue").ShallowUnwrapRef<{
92
+ invalid: import("vue").ComputedRef<boolean>;
93
+ }>): void;
94
+ attrs: any;
95
+ slots: Readonly<{
96
+ /** Legend displayed at the bottom of the dropzone */
97
+ 'dropzone-legend'?: (() => any) | undefined;
98
+ /** Block description of the dropzone */
99
+ 'dropzone-description'?: (() => any) | undefined;
100
+ /** Add information under the file name */
101
+ 'file-information'?: (() => any) | undefined;
102
+ /** Add file actions next to the update button */
103
+ 'file-actions'?: (() => any) | undefined;
104
+ }> & {
105
+ /** Legend displayed at the bottom of the dropzone */
106
+ 'dropzone-legend'?: (() => any) | undefined;
107
+ /** Block description of the dropzone */
108
+ 'dropzone-description'?: (() => any) | undefined;
109
+ /** Add information under the file name */
110
+ 'file-information'?: (() => any) | undefined;
111
+ /** Add file actions next to the update button */
112
+ 'file-actions'?: (() => any) | undefined;
113
+ };
114
+ emit: any;
115
+ } | undefined;
116
+ };
117
+ export default _default;
118
+ type __VLS_Prettify<T> = {
119
+ [K in keyof T]: T[K];
120
+ } & {};
@@ -0,0 +1,75 @@
1
+ declare const _default: <T extends {
2
+ name: string;
3
+ }>(__VLS_props: {
4
+ error?: string | undefined;
5
+ file: T | File;
6
+ onDelete?: ((...args: any[]) => any) | undefined;
7
+ onUpdate?: ((...args: any[]) => any) | undefined;
8
+ deleteLabel: string;
9
+ updateLabel: string;
10
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
11
+ attrs: any;
12
+ slots: Readonly<{
13
+ /** Information under the file name */
14
+ information?: (() => any) | undefined;
15
+ /** Extra file actions */
16
+ actions?: (() => any) | undefined;
17
+ }> & {
18
+ /** Information under the file name */
19
+ information?: (() => any) | undefined;
20
+ /** Extra file actions */
21
+ actions?: (() => any) | undefined;
22
+ };
23
+ emit: (event: "delete" | "update", ...args: any[]) => void;
24
+ } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
25
+ props: {
26
+ error?: string | undefined;
27
+ file: T | File;
28
+ onDelete?: ((...args: any[]) => any) | undefined;
29
+ onUpdate?: ((...args: any[]) => any) | undefined;
30
+ deleteLabel: string;
31
+ updateLabel: string;
32
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
33
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
34
+ attrs: any;
35
+ slots: Readonly<{
36
+ /** Information under the file name */
37
+ information?: (() => any) | undefined;
38
+ /** Extra file actions */
39
+ actions?: (() => any) | undefined;
40
+ }> & {
41
+ /** Information under the file name */
42
+ information?: (() => any) | undefined;
43
+ /** Extra file actions */
44
+ actions?: (() => any) | undefined;
45
+ };
46
+ emit: (event: "delete" | "update", ...args: any[]) => void;
47
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
48
+ [key: string]: any;
49
+ }> & {
50
+ __ctx?: {
51
+ props: {
52
+ error?: string | undefined;
53
+ file: T | File;
54
+ onDelete?: ((...args: any[]) => any) | undefined;
55
+ onUpdate?: ((...args: any[]) => any) | undefined;
56
+ deleteLabel: string;
57
+ updateLabel: string;
58
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
59
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
60
+ attrs: any;
61
+ slots: Readonly<{
62
+ /** Information under the file name */
63
+ information?: (() => any) | undefined;
64
+ /** Extra file actions */
65
+ actions?: (() => any) | undefined;
66
+ }> & {
67
+ /** Information under the file name */
68
+ information?: (() => any) | undefined;
69
+ /** Extra file actions */
70
+ actions?: (() => any) | undefined;
71
+ };
72
+ emit: (event: "delete" | "update", ...args: any[]) => void;
73
+ } | undefined;
74
+ };
75
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import { PropType } from 'vue';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ name: {
4
+ type: PropType<import("@maltjoy/icons").JoyIconsId>;
5
+ required: true;
6
+ };
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
8
+ name: {
9
+ type: PropType<import("@maltjoy/icons").JoyIconsId>;
10
+ required: true;
11
+ };
12
+ }>>, {}, {}>;
13
+ export default _default;
@@ -27,9 +27,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
27
27
  type: (StringConstructor | NumberConstructor)[];
28
28
  required: false;
29
29
  };
30
- notification: {
31
- type: BooleanConstructor;
32
- required: false;
30
+ notifications: {
31
+ type: NumberConstructor;
33
32
  };
34
33
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
35
34
  changeTab: () => void;
@@ -62,15 +61,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
62
61
  type: (StringConstructor | NumberConstructor)[];
63
62
  required: false;
64
63
  };
65
- notification: {
66
- type: BooleanConstructor;
67
- required: false;
64
+ notifications: {
65
+ type: NumberConstructor;
68
66
  };
69
67
  }>> & {
70
68
  onChangeTab?: (() => any) | undefined;
71
69
  }, {
72
70
  selected: boolean;
73
- notification: boolean;
74
71
  }, {}>, {
75
72
  default?(_: {}): any;
76
73
  }>;
@@ -0,0 +1,8 @@
1
+ import { App } from 'vue';
2
+ import '../style.scss';
3
+ export declare const JoyVueLightPlugin: {
4
+ install: (app: App) => void;
5
+ };
6
+ export { vJoyRipple } from '@/directives';
7
+ export { createAllSnackbarsContainer, pushVJoySnackbar, resetCount } from './JoySnackbar';
8
+ export * from './';
@@ -15,10 +15,12 @@ import { default as VJoyCounter } from './JoyCounter/VJoyCounter.vue';
15
15
  import { default as VJoyDialog } from './JoyDialog/VJoyDialog.vue';
16
16
  import { default as VJoyDialogTrigger } from './JoyDialogTrigger/VJoyDialogTrigger.vue';
17
17
  import { default as VJoyDividerCta } from './JoyDividerCta/VJoyDividerCta.vue';
18
+ import { default as VJoyDot } from './JoyDot/VJoyDot.vue';
18
19
  import { default as VJoyDrawer } from './JoyDrawer/VJoyDrawer.vue';
19
20
  import { default as VJoyDrawerTrigger } from './JoyDrawerTrigger/VJoyDrawerTrigger.vue';
20
21
  import { default as VJoyDropdown } from './JoyDropdown/VJoyDropdown.vue';
21
22
  import { default as VJoyDropdownList } from './JoyDropdownList/VJoyDropdownList.vue';
23
+ import { default as VJoyDropzone } from './JoyDropzone/VJoyDropzone.vue';
22
24
  import { default as VJoyFilterBar } from './JoyFilterBar/VJoyFilterBar.vue';
23
25
  import { default as VJoyFilterBarButton } from './JoyFilterBarButton/VJoyFilterBarButton.vue';
24
26
  import { default as VJoyFooter } from './JoyFooter/VJoyFooter.vue';
@@ -66,4 +68,4 @@ import { default as VJoyToggle } from './JoyToggle/VJoyToggle.vue';
66
68
  import { default as VJoyTooltip } from './JoyTooltip/VJoyTooltip.vue';
67
69
  import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
68
70
  import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
69
- export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyFilterBar, VJoyFilterBarButton, VJoyFooter, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, 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, VJoyWrapper, };
71
+ 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, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, 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, VJoyWrapper, };
@@ -1,9 +1,8 @@
1
1
  import type { App } from 'vue';
2
2
  import '../style.scss';
3
3
  export declare const JoyVuePlugin: {
4
- install: (app: App, options?: {
5
- env: 'client' | 'server';
6
- }) => void;
4
+ install: (app: App) => void;
7
5
  };
6
+ export { vJoyRipple } from '@/directives';
8
7
  export * from './';
9
8
  export { createAllSnackbarsContainer, pushVJoySnackbar, resetCount } from './JoySnackbar';
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-WXyWlWuE.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.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.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.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVueLightPlugin=y;
@@ -0,0 +1,84 @@
1
+ import { ag as o, ah as s } from "./style-BeFMqd8A.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 c, g as d, h as u, i as S, j as T, k as m, l as b, m as h, n as B, o as C, p as k, q as D, r as v, s as I, J as L, t as F, u as P, v as f, w, x, y as A, z as R, A as j, B as G, C as H, D as M, E as z, F as E, G as U, H as W, 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 ca, a8 as da, a9 as ua, aa as Sa, ab as Ta, ac as ma, ad as ba, ae as ha, af as Ba, ai as Ca, aj as ka } from "./style-BeFMqd8A.js";
3
+ const y = {
4
+ install: (a) => {
5
+ typeof window < "u" && o(), a.directive("joy-ripple", s);
6
+ }
7
+ };
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,
15
+ p as VJoyBlockSkeleton,
16
+ g as VJoyBottomSheet,
17
+ c as VJoyBottomSheetTrigger,
18
+ d as VJoyButton,
19
+ u as VJoyCheckbox,
20
+ S as VJoyCollapse,
21
+ T as VJoyCollapseItem,
22
+ m as VJoyCompanyAvatar,
23
+ b as VJoyCounter,
24
+ h as VJoyDialog,
25
+ B as VJoyDialogTrigger,
26
+ C as VJoyDividerCta,
27
+ k as VJoyDot,
28
+ D as VJoyDrawer,
29
+ v as VJoyDrawerTrigger,
30
+ I as VJoyDropdown,
31
+ L as VJoyDropdownList,
32
+ F as VJoyDropzone,
33
+ P as VJoyFilterBar,
34
+ f as VJoyFilterBarButton,
35
+ w as VJoyFooter,
36
+ x as VJoyFormError,
37
+ A as VJoyFormFieldSkeleton,
38
+ R as VJoyFunnel,
39
+ j as VJoyHeader,
40
+ G as VJoyHighlight,
41
+ H as VJoyIcon,
42
+ M as VJoyIndicator,
43
+ z as VJoyIndicators,
44
+ E as VJoyInput,
45
+ U as VJoyLabel,
46
+ W as VJoyLink,
47
+ q as VJoyMenu,
48
+ K as VJoyMultiCheckbox,
49
+ N as VJoyPagination,
50
+ O as VJoyPanel,
51
+ Q as VJoyPanelSection,
52
+ X as VJoyProductTour,
53
+ Y as VJoyProductTourTrigger,
54
+ Z as VJoyProgressBar,
55
+ _ as VJoyRadio,
56
+ $ as VJoyRadioGroup,
57
+ aa as VJoyRatingStars,
58
+ oa as VJoyScreenLoader,
59
+ sa as VJoySelect,
60
+ ea as VJoySelectableItem,
61
+ ya as VJoySelectableItemGroup,
62
+ Ja as VJoySeparator,
63
+ Va as VJoySnackbar,
64
+ ra as VJoySpinner,
65
+ ta as VJoyStep,
66
+ ia as VJoyStepper,
67
+ na as VJoyTab,
68
+ la as VJoyTabs,
69
+ pa as VJoyTag,
70
+ ga as VJoyTagsInput,
71
+ ca as VJoyTagsList,
72
+ da as VJoyTemplate,
73
+ ua as VJoyTemplateShape,
74
+ Sa as VJoyText,
75
+ Ta as VJoyTextarea,
76
+ ma as VJoyToggle,
77
+ ba as VJoyTooltip,
78
+ ha as VJoyUserCard,
79
+ Ba as VJoyWrapper,
80
+ o as createAllSnackbarsContainer,
81
+ Ca as pushVJoySnackbar,
82
+ ka as resetCount,
83
+ s as vJoyRipple
84
+ };
package/dist/main.cjs ADDED
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-WXyWlWuE.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,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,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,VJoyWrapper:o.VJoyWrapper},Symbol.toStringTag,{value:"Module"})),a={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.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.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.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVuePlugin=a;
package/dist/main.js ADDED
@@ -0,0 +1,158 @@
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 c, i as g, j as p, k as d, l as u, m as T, n as m, o as S, p as b, q as _, r as f, s as D, J as h, t as B, u as C, v as P, w as k, x as v, y as w, z as I, A as L, 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 z, L as E, M as G, N as H, O as U, P as W, 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 ca, aa as ga, ab as pa, ac as da, ad as ua, ae as Ta, af as ma, ag as Sa, ah as ba } from "./style-BeFMqd8A.js";
2
+ import { ai as Ca, aj as Pa } from "./style-BeFMqd8A.js";
3
+ const _a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4
+ __proto__: null,
5
+ VJoyAvailability: e,
6
+ VJoyAvatar: r,
7
+ VJoyAvatarsList: y,
8
+ VJoyBadge: J,
9
+ VJoyBadgeLevel: t,
10
+ VJoyBlockSkeleton: V,
11
+ VJoyBottomSheet: i,
12
+ VJoyBottomSheetTrigger: n,
13
+ VJoyButton: l,
14
+ VJoyCheckbox: c,
15
+ VJoyCollapse: g,
16
+ VJoyCollapseItem: p,
17
+ VJoyCompanyAvatar: d,
18
+ VJoyCounter: u,
19
+ VJoyDialog: T,
20
+ VJoyDialogTrigger: m,
21
+ VJoyDividerCta: S,
22
+ VJoyDot: b,
23
+ VJoyDrawer: _,
24
+ VJoyDrawerTrigger: f,
25
+ VJoyDropdown: D,
26
+ VJoyDropdownList: h,
27
+ VJoyDropzone: B,
28
+ VJoyFilterBar: C,
29
+ VJoyFilterBarButton: P,
30
+ VJoyFooter: k,
31
+ VJoyFormError: v,
32
+ VJoyFormFieldSkeleton: w,
33
+ VJoyFunnel: I,
34
+ VJoyHeader: L,
35
+ VJoyHighlight: F,
36
+ VJoyIcon: x,
37
+ VJoyIndicator: j,
38
+ VJoyIndicators: A,
39
+ VJoyInput: $,
40
+ VJoyLabel: R,
41
+ VJoyLink: M,
42
+ VJoyMenu: O,
43
+ VJoyMultiCheckbox: z,
44
+ VJoyPagination: E,
45
+ VJoyPanel: G,
46
+ VJoyPanelSection: H,
47
+ VJoyProductTour: U,
48
+ VJoyProductTourTrigger: W,
49
+ VJoyProgressBar: q,
50
+ VJoyRadio: K,
51
+ VJoyRadioGroup: N,
52
+ VJoyRatingStars: Q,
53
+ VJoyScreenLoader: X,
54
+ VJoySelect: Y,
55
+ VJoySelectableItem: Z,
56
+ VJoySelectableItemGroup: aa,
57
+ VJoySeparator: oa,
58
+ VJoySnackbar: sa,
59
+ VJoySpinner: ea,
60
+ VJoyStep: ra,
61
+ VJoyStepper: ya,
62
+ VJoyTab: Ja,
63
+ VJoyTabs: ta,
64
+ VJoyTag: Va,
65
+ VJoyTagsInput: ia,
66
+ VJoyTagsList: na,
67
+ VJoyTemplate: la,
68
+ VJoyTemplateShape: ca,
69
+ VJoyText: ga,
70
+ VJoyTextarea: pa,
71
+ VJoyToggle: da,
72
+ VJoyTooltip: ua,
73
+ VJoyUserCard: Ta,
74
+ VJoyWrapper: ma
75
+ }, Symbol.toStringTag, { value: "Module" })), Da = {
76
+ install: (a) => {
77
+ Object.entries(_a).forEach(([o, s]) => {
78
+ a.component(o, s);
79
+ }), typeof window < "u" && Sa(), a.directive("joy-ripple", ba);
80
+ }
81
+ };
82
+ export {
83
+ Da as JoyVuePlugin,
84
+ e as VJoyAvailability,
85
+ r as VJoyAvatar,
86
+ y as VJoyAvatarsList,
87
+ J as VJoyBadge,
88
+ t as VJoyBadgeLevel,
89
+ V as VJoyBlockSkeleton,
90
+ i as VJoyBottomSheet,
91
+ n as VJoyBottomSheetTrigger,
92
+ l as VJoyButton,
93
+ c as VJoyCheckbox,
94
+ g as VJoyCollapse,
95
+ p as VJoyCollapseItem,
96
+ d as VJoyCompanyAvatar,
97
+ u as VJoyCounter,
98
+ T as VJoyDialog,
99
+ m as VJoyDialogTrigger,
100
+ S as VJoyDividerCta,
101
+ b as VJoyDot,
102
+ _ as VJoyDrawer,
103
+ f as VJoyDrawerTrigger,
104
+ D as VJoyDropdown,
105
+ h as VJoyDropdownList,
106
+ B as VJoyDropzone,
107
+ C as VJoyFilterBar,
108
+ P as VJoyFilterBarButton,
109
+ k as VJoyFooter,
110
+ v as VJoyFormError,
111
+ w as VJoyFormFieldSkeleton,
112
+ I as VJoyFunnel,
113
+ L as VJoyHeader,
114
+ F as VJoyHighlight,
115
+ x as VJoyIcon,
116
+ j as VJoyIndicator,
117
+ A as VJoyIndicators,
118
+ $ as VJoyInput,
119
+ R as VJoyLabel,
120
+ M as VJoyLink,
121
+ O as VJoyMenu,
122
+ z as VJoyMultiCheckbox,
123
+ E as VJoyPagination,
124
+ G as VJoyPanel,
125
+ H as VJoyPanelSection,
126
+ U as VJoyProductTour,
127
+ W as VJoyProductTourTrigger,
128
+ q as VJoyProgressBar,
129
+ K as VJoyRadio,
130
+ N as VJoyRadioGroup,
131
+ Q as VJoyRatingStars,
132
+ X as VJoyScreenLoader,
133
+ Y as VJoySelect,
134
+ Z as VJoySelectableItem,
135
+ aa as VJoySelectableItemGroup,
136
+ oa as VJoySeparator,
137
+ sa as VJoySnackbar,
138
+ ea as VJoySpinner,
139
+ ra as VJoyStep,
140
+ ya as VJoyStepper,
141
+ Ja as VJoyTab,
142
+ ta as VJoyTabs,
143
+ Va as VJoyTag,
144
+ ia as VJoyTagsInput,
145
+ na as VJoyTagsList,
146
+ la as VJoyTemplate,
147
+ ca as VJoyTemplateShape,
148
+ ga as VJoyText,
149
+ pa as VJoyTextarea,
150
+ da as VJoyToggle,
151
+ ua as VJoyTooltip,
152
+ Ta as VJoyUserCard,
153
+ ma as VJoyWrapper,
154
+ Sa as createAllSnackbarsContainer,
155
+ Ca as pushVJoySnackbar,
156
+ Pa as resetCount,
157
+ ba as vJoyRipple
158
+ };