@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.
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +75 -87
- package/dist/components/index.d.ts +1 -2
- package/dist/components.cjs +1 -1
- package/dist/components.js +40 -41
- package/dist/joy-core-vue-manifest.json +1 -1
- package/dist/main.cjs +1 -1
- package/dist/main.js +113 -115
- package/dist/{style-ChThEVbr.js → style-BQpAWKFv.js} +1736 -1699
- package/dist/style-C28KlN2W.cjs +18 -0
- package/dist/style.css +1 -1
- package/dist/tests/tests-helpers/index.d.ts +2 -0
- package/joy-components.d.ts +0 -1
- package/package.json +5 -4
- package/dist/components/JoyButton/useRandomId.d.ts +0 -6
- package/dist/components/JoyFooter/VJoyFooter.vue.d.ts +0 -13
- package/dist/style-PpLJlUke.cjs +0 -16
|
@@ -40,7 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
42
42
|
}>, {
|
|
43
|
-
randomId:
|
|
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:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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,
|
|
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, };
|
package/dist/components.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-
|
|
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;
|
package/dist/components.js
CHANGED
|
@@ -1,38 +1,37 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { V as
|
|
3
|
-
const
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
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
|
-
|
|
82
|
-
|
|
83
|
-
|
|
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,
|
package/dist/main.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-
|
|
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
|
|
2
|
-
import { am as
|
|
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:
|
|
9
|
-
VJoyBadgeLevel:
|
|
8
|
+
VJoyBadge: t,
|
|
9
|
+
VJoyBadgeLevel: J,
|
|
10
10
|
VJoyBlockSkeleton: V,
|
|
11
11
|
VJoyBottomSheet: i,
|
|
12
12
|
VJoyBottomSheetTrigger: n,
|
|
13
13
|
VJoyButton: l,
|
|
14
|
-
VJoyCheckbox:
|
|
15
|
-
VJoyCollapse:
|
|
14
|
+
VJoyCheckbox: c,
|
|
15
|
+
VJoyCollapse: g,
|
|
16
16
|
VJoyCollapseItem: p,
|
|
17
|
-
VJoyCompanyAvatar:
|
|
18
|
-
VJoyCounter:
|
|
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:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
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:
|
|
65
|
-
VJoyTabs:
|
|
66
|
-
VJoyTag:
|
|
67
|
-
VJoyTagsInput:
|
|
68
|
-
VJoyTagsList:
|
|
63
|
+
VJoyTab: Ja,
|
|
64
|
+
VJoyTabs: Va,
|
|
65
|
+
VJoyTag: ia,
|
|
66
|
+
VJoyTagsInput: na,
|
|
67
|
+
VJoyTagsList: la,
|
|
69
68
|
VJoyTemplate: ca,
|
|
70
|
-
VJoyTemplateShape:
|
|
71
|
-
VJoyText:
|
|
69
|
+
VJoyTemplateShape: ga,
|
|
70
|
+
VJoyText: pa,
|
|
72
71
|
VJoyTextarea: da,
|
|
73
|
-
VJoyToggle:
|
|
74
|
-
VJoyTooltip:
|
|
75
|
-
VJoyUserCard:
|
|
76
|
-
VJoyWalkthrough:
|
|
77
|
-
VJoyWalkthroughTrigger:
|
|
78
|
-
VJoyWrapper:
|
|
79
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
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" &&
|
|
82
|
+
}), typeof window < "u" && fa(), a.directive("joy-ripple", ha), a.directive("bind-once", Da);
|
|
84
83
|
}
|
|
85
84
|
};
|
|
86
85
|
export {
|
|
87
|
-
|
|
86
|
+
va as JoyVuePlugin,
|
|
88
87
|
e as VJoyAvailability,
|
|
89
88
|
r as VJoyAvatar,
|
|
90
89
|
y as VJoyAvatarsList,
|
|
91
|
-
|
|
92
|
-
|
|
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
|
-
|
|
98
|
-
|
|
96
|
+
c as VJoyCheckbox,
|
|
97
|
+
g as VJoyCollapse,
|
|
99
98
|
p as VJoyCollapseItem,
|
|
100
|
-
|
|
101
|
-
|
|
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
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
w as
|
|
118
|
-
F as
|
|
119
|
-
x as
|
|
120
|
-
j as
|
|
121
|
-
A as
|
|
122
|
-
$ as
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
W as
|
|
127
|
-
z as
|
|
128
|
-
E as
|
|
129
|
-
G as
|
|
130
|
-
H as
|
|
131
|
-
U as
|
|
132
|
-
q as
|
|
133
|
-
K as
|
|
134
|
-
N as
|
|
135
|
-
Q as
|
|
136
|
-
X as
|
|
137
|
-
Y as
|
|
138
|
-
Z as
|
|
139
|
-
aa as
|
|
140
|
-
oa as
|
|
141
|
-
sa as
|
|
142
|
-
ea as
|
|
143
|
-
ra as
|
|
144
|
-
ya as
|
|
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
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
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
|
-
|
|
154
|
-
|
|
151
|
+
ga as VJoyTemplateShape,
|
|
152
|
+
pa as VJoyText,
|
|
155
153
|
da as VJoyTextarea,
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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
|
};
|