@maltjoy/core-vue 3.27.1 → 3.28.0
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/README.md +1 -0
- package/dist/components/JoyBottomSheetTrigger/VJoyBottomSheetTrigger.vue.d.ts +8 -8
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +3 -3
- package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +4 -4
- package/dist/components/JoyCounter/VJoyCounter.vue.d.ts +7 -7
- package/dist/components/JoyDialog/VJoyDialog.vue.d.ts +1 -1
- package/dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +40 -60
- package/dist/components/JoyDrawer/VJoyDrawer.vue.d.ts +1 -1
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +40 -60
- package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +5 -5
- package/dist/components/JoyDropdownList/VJoyDropdownList.vue.d.ts +2 -2
- package/dist/components/JoyFunnel/VJoyFunnel.vue.d.ts +1 -0
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +3 -3
- package/dist/components/JoyInput/VJoyInput.vue.d.ts +3 -3
- package/dist/components/JoyLabel/VJoyLabel.vue.d.ts +1 -1
- package/dist/components/JoyProductTour/JoyProductTour.store.d.ts +550 -0
- package/dist/components/JoyProductTour/JoyProductTour.types.d.ts +32 -0
- package/dist/components/JoyProductTour/JoyProductTourSpotlight/VJoyProductTourSpotlight.vue.d.ts +2 -0
- package/dist/components/JoyProductTour/VJoyProductTour.vue.d.ts +22 -0
- package/dist/components/JoyProductTour/VJoyProductTourInner.vue.d.ts +55 -0
- package/dist/components/JoyProductTourTrigger/VJoyProductTourTrigger.vue.d.ts +310 -0
- package/dist/components/JoyProgressBar/JoyProgressBar.types.d.ts +2 -2
- package/dist/components/JoyProgressBar/VJoyProgressBar.vue.d.ts +4 -3
- package/dist/components/JoyRadio/VJoyRadio.vue.d.ts +1 -1
- package/dist/components/JoySelect/VJoySelect.vue.d.ts +2 -2
- package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +4 -3
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +1 -1
- package/dist/components/JoyStepper/VJoyStepper.vue.d.ts +7 -7
- package/dist/components/JoyTag/VJoyTag.vue.d.ts +12 -12
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +18 -18
- package/dist/components/JoyTagsList/VJoyTagsList.vue.d.ts +2 -2
- package/dist/components/JoyText/VJoyText.vue.d.ts +3 -3
- package/dist/components/JoyTextarea/VJoyTextarea.vue.d.ts +1 -1
- package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +2 -2
- package/dist/components/JoyTooltip/VJoyTooltip.vue.d.ts +97 -0
- package/dist/components/JoyWrapper/VJoyWrapper.vue.d.ts +1 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/joy-vue.js +4711 -4053
- package/dist/joy-vue.umd.cjs +12 -4
- package/dist/style.css +1 -1
- package/joy-components.d.ts +2 -0
- package/package.json +6 -7
package/joy-components.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ declare module 'vue' {
|
|
|
41
41
|
VJoyPagination: typeof import('./dist/components/JoyPagination/VJoyPagination.vue')['default'];
|
|
42
42
|
VJoyPanel: typeof import('./dist/components/JoyPanel/VJoyPanel.vue')['default'];
|
|
43
43
|
VJoyPanelSection: typeof import('./dist/components/JoyPanelSection/VJoyPanelSection.vue')['default'];
|
|
44
|
+
VJoyProductTour: typeof import('./dist/components/JoyProductTour/VJoyProductTour.vue')['default'];
|
|
45
|
+
VJoyProductTourTrigger: typeof import('./dist/components/JoyProductTourTrigger/VJoyProductTourTrigger.vue')['default'];
|
|
44
46
|
VJoyProgressBar: typeof import('./dist/components/JoyProgressBar/VJoyProgressBar.vue')['default'];
|
|
45
47
|
VJoyRadio: typeof import('./dist/components/JoyRadio/VJoyRadio.vue')['default'];
|
|
46
48
|
VJoyRadioGroup: typeof import('./dist/components/JoyRadioGroup/VJoyRadioGroup.vue')['default'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -21,14 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@floating-ui/dom": "1.5.3",
|
|
23
23
|
"@floating-ui/vue": "^1.0.2",
|
|
24
|
-
"@maltjoy/
|
|
25
|
-
"@maltjoy/
|
|
26
|
-
"@maltjoy/
|
|
24
|
+
"@maltjoy/css": "3.28.0",
|
|
25
|
+
"@maltjoy/icons": "3.28.0",
|
|
26
|
+
"@maltjoy/themes": "3.28.0",
|
|
27
27
|
"@vueuse/components": "10.8.0",
|
|
28
28
|
"@vueuse/core": "10.8.0",
|
|
29
29
|
"@vueuse/integrations": "10.5.0",
|
|
30
30
|
"focus-trap": "^7.5.4",
|
|
31
31
|
"mitt": "3.0.1",
|
|
32
|
+
"pinia": "^2.1.7",
|
|
32
33
|
"vue": "3.4.21",
|
|
33
34
|
"vue-router": "4.2.5"
|
|
34
35
|
},
|
|
@@ -60,14 +61,12 @@
|
|
|
60
61
|
"happy-dom": "^8.2.6",
|
|
61
62
|
"prettier": "2.8.8",
|
|
62
63
|
"pretty": "^2.0.0",
|
|
63
|
-
"react": "17.0.2",
|
|
64
|
-
"react-dom": "17.0.2",
|
|
65
64
|
"sass": "^1.60.0",
|
|
66
65
|
"storybook": "8.0.8",
|
|
67
66
|
"typescript": "5.3.3",
|
|
68
67
|
"vite": "5.2.10",
|
|
69
68
|
"vitest": "^0.28.4",
|
|
70
|
-
"vue-tsc": "
|
|
69
|
+
"vue-tsc": "2.0.18"
|
|
71
70
|
},
|
|
72
71
|
"scripts": {
|
|
73
72
|
"dev": "pnpm prepare && vite",
|