@maltjoy/core-vue 4.3.0 → 4.4.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.
- package/dist/components/JoyAvatar/VJoyAvatar.vue.d.ts +2 -2
- package/dist/components/JoyBottomSheet/VJoyBottomSheet.vue.d.ts +1 -1
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
- package/dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +2 -2
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +2 -2
- package/dist/components/JoyIcon/VJoyIcon.vue.d.ts +1 -1
- package/dist/components/JoyProductTour/JoyProductTour.store.d.ts +2 -2
- package/dist/components/JoySnackbar/VJoySnackbar.vue.d.ts +1 -1
- package/dist/components/JoyTitleBrand/VJoyTitleBrand.vue.d.ts +19 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/{style-CuJh_KFd.js → core-vue.js} +1298 -1279
- package/dist/core-vue.umd.cjs +12 -0
- package/dist/joy-core-vue-manifest.json +8 -1
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -0
- package/package.json +31 -30
- package/LICENSE +0 -21
- package/dist/components/main.d.ts +0 -8
- package/dist/components.cjs +0 -1
- package/dist/components.js +0 -87
- package/dist/main.cjs +0 -1
- package/dist/main.js +0 -164
- package/dist/style-E2O6Fed7.cjs +0 -12
package/joy-components.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ declare module 'vue' {
|
|
|
68
68
|
VJoyTemplateShape: typeof import('./dist/components/JoyTemplateShape/VJoyTemplateShape.vue')['default'];
|
|
69
69
|
VJoyText: typeof import('./dist/components/JoyText/VJoyText.vue')['default'];
|
|
70
70
|
VJoyTextarea: typeof import('./dist/components/JoyTextarea/VJoyTextarea.vue')['default'];
|
|
71
|
+
VJoyTitleBrand: typeof import('./dist/components/JoyTitleBrand/VJoyTitleBrand.vue')['default'];
|
|
71
72
|
VJoyToggle: typeof import('./dist/components/JoyToggle/VJoyToggle.vue')['default'];
|
|
72
73
|
VJoyTooltip: typeof import('./dist/components/JoyTooltip/VJoyTooltip.vue')['default'];
|
|
73
74
|
VJoyUserCard: typeof import('./dist/components/JoyUserCard/VJoyUserCard.vue')['default'];
|
package/package.json
CHANGED
|
@@ -1,29 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0-next",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"*.d.ts"
|
|
8
8
|
],
|
|
9
|
-
"main": "./dist/
|
|
10
|
-
"module": "./dist/
|
|
9
|
+
"main": "./dist/core-vue.cjs",
|
|
10
|
+
"module": "./dist/core-vue.js",
|
|
11
11
|
"types": "./index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
"./plugin": {
|
|
14
14
|
"types": "./plugin.d.ts",
|
|
15
|
-
"import": "./dist/
|
|
16
|
-
"require": "./dist/
|
|
15
|
+
"import": "./dist/core-vue.js",
|
|
16
|
+
"require": "./dist/core-vue.umd.cjs"
|
|
17
17
|
},
|
|
18
18
|
".": {
|
|
19
19
|
"types": "./index.d.ts",
|
|
20
|
-
"import": "./dist/
|
|
21
|
-
"require": "./dist/
|
|
20
|
+
"import": "./dist/core-vue.js",
|
|
21
|
+
"require": "./dist/core-vue.umd.cjs"
|
|
22
22
|
},
|
|
23
23
|
"./global-components": "./joy-components.d.ts",
|
|
24
24
|
"./dist/style.css": "./dist/style.css",
|
|
25
25
|
"./dist/joy-core-vue-manifest.json": "./dist/joy-core-vue-manifest.json"
|
|
26
26
|
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"prepare": "pnpm generate:components-autoimports && pnpm generate:components-types && pnpm copy:fonticon",
|
|
29
|
+
"dev": "pnpm prepare && vite",
|
|
30
|
+
"build:lib": "vite build",
|
|
31
|
+
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test && pnpm generate:manifest",
|
|
32
|
+
"preview": "vite preview",
|
|
33
|
+
"test": "vitest run --dom --coverage",
|
|
34
|
+
"test:dev": "vitest watch --dom",
|
|
35
|
+
"test:update": "vitest run --dom -u",
|
|
36
|
+
"lint": "eslint --ext .ts,.vue src",
|
|
37
|
+
"lint:fix": "eslint --ext .ts,.vue src --fix",
|
|
38
|
+
"lint:staged": "eslint --fix",
|
|
39
|
+
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
40
|
+
"format:staged": "prettier --write",
|
|
41
|
+
"storybook": "pnpm prepare && storybook dev --port=33725",
|
|
42
|
+
"typecheck": "vue-tsc --noEmit",
|
|
43
|
+
"build-storybook": "pnpm prepare && storybook build",
|
|
44
|
+
"preview-storybook": "pnpm storybook build && pnpm dlx http-server ./storybook-static/",
|
|
45
|
+
"generate:components-types": "node src/tasks/generate-components-types.mjs",
|
|
46
|
+
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
|
|
47
|
+
"generate:manifest": "node src/tasks/generate-manifest.mjs",
|
|
48
|
+
"copy:fonticon": "node src/tasks/copy-fonticon.mjs"
|
|
49
|
+
},
|
|
27
50
|
"dependencies": {
|
|
28
51
|
"@floating-ui/dom": "1.5.3",
|
|
29
52
|
"@floating-ui/vue": "^1.0.2",
|
|
@@ -72,27 +95,5 @@
|
|
|
72
95
|
"vitest": "^0.28.4",
|
|
73
96
|
"vue-component-type-helpers": "2.2.0",
|
|
74
97
|
"vue-tsc": "2.1.6"
|
|
75
|
-
},
|
|
76
|
-
"scripts": {
|
|
77
|
-
"dev": "pnpm prepare && vite",
|
|
78
|
-
"build:lib": "vite build",
|
|
79
|
-
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test && pnpm generate:manifest",
|
|
80
|
-
"preview": "vite preview",
|
|
81
|
-
"test": "vitest run --dom --coverage",
|
|
82
|
-
"test:dev": "vitest watch --dom",
|
|
83
|
-
"test:update": "vitest run --dom -u",
|
|
84
|
-
"lint": "eslint --ext .ts,.vue src",
|
|
85
|
-
"lint:fix": "eslint --ext .ts,.vue src --fix",
|
|
86
|
-
"lint:staged": "eslint --fix",
|
|
87
|
-
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
88
|
-
"format:staged": "prettier --write",
|
|
89
|
-
"storybook": "pnpm prepare && storybook dev --port=33725",
|
|
90
|
-
"typecheck": "vue-tsc --noEmit",
|
|
91
|
-
"build-storybook": "pnpm prepare && storybook build",
|
|
92
|
-
"preview-storybook": "pnpm storybook build && pnpm dlx http-server ./storybook-static/",
|
|
93
|
-
"generate:components-types": "node src/tasks/generate-components-types.mjs",
|
|
94
|
-
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
|
|
95
|
-
"generate:manifest": "node src/tasks/generate-manifest.mjs",
|
|
96
|
-
"copy:fonticon": "node src/tasks/copy-fonticon.mjs"
|
|
97
98
|
}
|
|
98
|
-
}
|
|
99
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
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,8 +0,0 @@
|
|
|
1
|
-
import type { App } from 'vue';
|
|
2
|
-
import '../style.scss';
|
|
3
|
-
export declare const JoyVuePlugin: {
|
|
4
|
-
install: (app: App) => void;
|
|
5
|
-
};
|
|
6
|
-
export { vJoyRipple } from '@/directives';
|
|
7
|
-
export * from './';
|
|
8
|
-
export { createAllSnackbarsContainer, pushVJoySnackbar, resetCount } from './JoySnackbar';
|
package/dist/components.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-E2O6Fed7.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
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import { aj as o, ak as s, al as e } from "./style-CuJh_KFd.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-CuJh_KFd.js";
|
|
3
|
-
const J = {
|
|
4
|
-
install: (a) => {
|
|
5
|
-
typeof window < "u" && o(), a.directive("joy-ripple", s), a.directive("bind-once", e);
|
|
6
|
-
}
|
|
7
|
-
};
|
|
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,
|
|
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,
|
|
27
|
-
C as VJoyDot,
|
|
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,
|
|
35
|
-
x as VJoyFormError,
|
|
36
|
-
A as VJoyFormFieldSkeleton,
|
|
37
|
-
R as VJoyFunnel,
|
|
38
|
-
W as VJoyFunnelFooter,
|
|
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
|
-
O as VJoyLabel,
|
|
46
|
-
U as VJoyLink,
|
|
47
|
-
q as VJoyListItem,
|
|
48
|
-
K as VJoyMenu,
|
|
49
|
-
N as VJoyMultiCheckbox,
|
|
50
|
-
Q as VJoyPagination,
|
|
51
|
-
X as VJoyPanel,
|
|
52
|
-
Y as VJoyPanelSection,
|
|
53
|
-
Z as VJoyProductTour,
|
|
54
|
-
_ as VJoyProductTourTrigger,
|
|
55
|
-
$ as VJoyProgressBar,
|
|
56
|
-
aa as VJoyRadio,
|
|
57
|
-
oa as VJoyRadioGroup,
|
|
58
|
-
sa as VJoyRatingStars,
|
|
59
|
-
ea as VJoyScreenLoader,
|
|
60
|
-
ya as VJoySelect,
|
|
61
|
-
Ja as VJoySelectableItem,
|
|
62
|
-
Va as VJoySelectableItemGroup,
|
|
63
|
-
ra as VJoySeparator,
|
|
64
|
-
ta as VJoySnackbar,
|
|
65
|
-
ia as VJoySpinner,
|
|
66
|
-
na as VJoyStep,
|
|
67
|
-
la as VJoyStepper,
|
|
68
|
-
ga as VJoyTab,
|
|
69
|
-
pa as VJoyTabs,
|
|
70
|
-
ca as VJoyTag,
|
|
71
|
-
da as VJoyTagsInput,
|
|
72
|
-
ua as VJoyTagsList,
|
|
73
|
-
Sa as VJoyTemplate,
|
|
74
|
-
Ta as VJoyTemplateShape,
|
|
75
|
-
ma as VJoyText,
|
|
76
|
-
ha as VJoyTextarea,
|
|
77
|
-
ba as VJoyToggle,
|
|
78
|
-
ka as VJoyTooltip,
|
|
79
|
-
Ba as VJoyUserCard,
|
|
80
|
-
va as VJoyWalkthrough,
|
|
81
|
-
Ca as VJoyWalkthroughTrigger,
|
|
82
|
-
Da as VJoyWrapper,
|
|
83
|
-
o as createAllSnackbarsContainer,
|
|
84
|
-
Ia as pushVJoySnackbar,
|
|
85
|
-
La as resetCount,
|
|
86
|
-
s as vJoyRipple
|
|
87
|
-
};
|
package/dist/main.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-E2O6Fed7.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
DELETED
|
@@ -1,164 +0,0 @@
|
|
|
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-CuJh_KFd.js";
|
|
2
|
-
import { am as La, an as Pa } from "./style-CuJh_KFd.js";
|
|
3
|
-
const ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4
|
-
__proto__: null,
|
|
5
|
-
VJoyAvailability: e,
|
|
6
|
-
VJoyAvatar: r,
|
|
7
|
-
VJoyAvatarsList: y,
|
|
8
|
-
VJoyBadge: t,
|
|
9
|
-
VJoyBadgeLevel: J,
|
|
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: m,
|
|
20
|
-
VJoyDialogTrigger: T,
|
|
21
|
-
VJoyDividerCta: S,
|
|
22
|
-
VJoyDot: b,
|
|
23
|
-
VJoyDrawer: _,
|
|
24
|
-
VJoyDrawerTrigger: f,
|
|
25
|
-
VJoyDropdown: h,
|
|
26
|
-
VJoyDropdownList: D,
|
|
27
|
-
VJoyDropzone: k,
|
|
28
|
-
VJoyFilterBar: B,
|
|
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,
|
|
62
|
-
VJoyStepper: ta,
|
|
63
|
-
VJoyTab: Ja,
|
|
64
|
-
VJoyTabs: Va,
|
|
65
|
-
VJoyTag: ia,
|
|
66
|
-
VJoyTagsInput: na,
|
|
67
|
-
VJoyTagsList: la,
|
|
68
|
-
VJoyTemplate: ca,
|
|
69
|
-
VJoyTemplateShape: ga,
|
|
70
|
-
VJoyText: pa,
|
|
71
|
-
VJoyTextarea: da,
|
|
72
|
-
VJoyToggle: ua,
|
|
73
|
-
VJoyTooltip: ma,
|
|
74
|
-
VJoyUserCard: Ta,
|
|
75
|
-
VJoyWalkthrough: Sa,
|
|
76
|
-
VJoyWalkthroughTrigger: ba,
|
|
77
|
-
VJoyWrapper: _a
|
|
78
|
-
}, Symbol.toStringTag, { value: "Module" })), va = {
|
|
79
|
-
install: (a) => {
|
|
80
|
-
Object.entries(ka).forEach(([o, s]) => {
|
|
81
|
-
a.component(o, s);
|
|
82
|
-
}), typeof window < "u" && fa(), a.directive("joy-ripple", ha), a.directive("bind-once", Da);
|
|
83
|
-
}
|
|
84
|
-
};
|
|
85
|
-
export {
|
|
86
|
-
va as JoyVuePlugin,
|
|
87
|
-
e as VJoyAvailability,
|
|
88
|
-
r as VJoyAvatar,
|
|
89
|
-
y as VJoyAvatarsList,
|
|
90
|
-
t as VJoyBadge,
|
|
91
|
-
J as VJoyBadgeLevel,
|
|
92
|
-
V as VJoyBlockSkeleton,
|
|
93
|
-
i as VJoyBottomSheet,
|
|
94
|
-
n as VJoyBottomSheetTrigger,
|
|
95
|
-
l as VJoyButton,
|
|
96
|
-
c as VJoyCheckbox,
|
|
97
|
-
g as VJoyCollapse,
|
|
98
|
-
p as VJoyCollapseItem,
|
|
99
|
-
d as VJoyCompanyAvatar,
|
|
100
|
-
u as VJoyCounter,
|
|
101
|
-
m as VJoyDialog,
|
|
102
|
-
T as VJoyDialogTrigger,
|
|
103
|
-
S as VJoyDividerCta,
|
|
104
|
-
b as VJoyDot,
|
|
105
|
-
_ as VJoyDrawer,
|
|
106
|
-
f as VJoyDrawerTrigger,
|
|
107
|
-
h as VJoyDropdown,
|
|
108
|
-
D as VJoyDropdownList,
|
|
109
|
-
k as VJoyDropzone,
|
|
110
|
-
B as VJoyFilterBar,
|
|
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,
|
|
144
|
-
ta as VJoyStepper,
|
|
145
|
-
Ja as VJoyTab,
|
|
146
|
-
Va as VJoyTabs,
|
|
147
|
-
ia as VJoyTag,
|
|
148
|
-
na as VJoyTagsInput,
|
|
149
|
-
la as VJoyTagsList,
|
|
150
|
-
ca as VJoyTemplate,
|
|
151
|
-
ga as VJoyTemplateShape,
|
|
152
|
-
pa as VJoyText,
|
|
153
|
-
da as VJoyTextarea,
|
|
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
|
|
164
|
-
};
|