@maltjoy/core-vue 3.38.4-next → 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/LICENSE +21 -0
- package/dist/components/JoyButton/JoyButton.types.d.ts +3 -1
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +4 -4
- 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-CyY04g9F.js → style-BQpAWKFv.js} +1834 -1796
- 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 +29 -29
- package/dist/components/JoyButton/useRandomId.d.ts +0 -6
- package/dist/components/JoyFooter/VJoyFooter.vue.d.ts +0 -13
- package/dist/style-5r5kgKhD.cjs +0 -16
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 maltcommunity / apps
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { TGenericVariants, TPositions, TSizes } from '../../types';
|
|
2
|
-
export type
|
|
2
|
+
export type TJoyDefaultButtonVariants = TGenericVariants | 'main' | 'admin' | 'ghost' | 'white';
|
|
3
|
+
export type TJoyAIButtonVariants = `${TJoyDefaultButtonVariants}-ai`;
|
|
4
|
+
export type TJoyButtonVariants = TJoyDefaultButtonVariants | Exclude<TJoyAIButtonVariants, 'admin-ai'>;
|
|
3
5
|
export type TJoyButtonSizes = Exclude<TSizes, 'xlarge'>;
|
|
4
6
|
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:
|
|
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.
|
|
@@ -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'
|
|
60
|
+
'highlight-decorator'(): any;
|
|
61
61
|
/** Not mandatory, renders a bold title above the main content */
|
|
62
|
-
'highlight-title'
|
|
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'
|
|
67
|
+
'highlight-decorator'(): any;
|
|
68
68
|
/** Not mandatory, renders a bold title above the main content */
|
|
69
|
-
'highlight-title'
|
|
69
|
+
'highlight-title'(): any;
|
|
70
70
|
}>;
|
|
71
71
|
export default _default;
|
|
72
72
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -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;
|