@maltjoy/core-vue 3.21.0 → 3.22.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/JoyBottomSheetTrigger/VJoyBottomSheetTrigger.vue.d.ts +72 -103
- package/dist/components/JoyCollapse/VJoyCollapse.vue.d.ts +62 -49
- package/dist/components/JoyCollapseItem/JoyCollapseItem.types.d.ts +2 -0
- package/dist/components/JoyCollapseItem/VJoyCollapseItem.vue.d.ts +16 -0
- package/dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +160 -111
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +136 -109
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +5 -5
- package/dist/components/JoyStepper/VJoyStepper.vue.d.ts +36 -51
- package/dist/components/JoyTabs/VJoyTabs.vue.d.ts +22 -48
- package/dist/components/JoyTagsList/VJoyTagsList.vue.d.ts +4 -4
- package/dist/components/JoyText/VJoyText.vue.d.ts +3 -3
- package/dist/joy-vue.js +2057 -2037
- package/dist/joy-vue.umd.cjs +4 -4
- package/dist/pages/FunnelMode.vue.d.ts +2 -0
- package/dist/pages/IndexPage.vue.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +4 -4
- package/dist/components/JoyTooltip/VJoyTooltip.vue.d.ts +0 -91
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@floating-ui/dom": "1.5.3",
|
|
22
22
|
"@floating-ui/vue": "^1.0.2",
|
|
23
|
-
"@maltjoy/icons": "3.
|
|
24
|
-
"@maltjoy/themes": "3.
|
|
23
|
+
"@maltjoy/icons": "3.22.1",
|
|
24
|
+
"@maltjoy/themes": "3.22.1",
|
|
25
25
|
"@vueuse/components": "10.8.0",
|
|
26
26
|
"@vueuse/core": "10.8.0",
|
|
27
27
|
"@vueuse/integrations": "10.5.0",
|
|
28
28
|
"focus-trap": "^7.5.4",
|
|
29
29
|
"mitt": "3.0.1",
|
|
30
|
-
"vue": "3.3.
|
|
30
|
+
"vue": "3.3.8",
|
|
31
31
|
"vue-router": "4.2.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { Placement } from '@floating-ui/vue';
|
|
3
|
-
import { TJoyTooltipVariants } from './JoyTooltip.types';
|
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
5
|
-
/** If you are 100% sure the content you want to inject does not contain anything that could lead to any XSS, use this */
|
|
6
|
-
text: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
};
|
|
9
|
-
variant: {
|
|
10
|
-
type: PropType<TJoyTooltipVariants>;
|
|
11
|
-
default: string;
|
|
12
|
-
};
|
|
13
|
-
/** It will automatically switch to another placement if there is not enough space. Please see https://floating-ui.com/docs/tutorial#placements for available values */
|
|
14
|
-
placement: {
|
|
15
|
-
type: PropType<import("@floating-ui/vue").MaybeReadonlyRef<Placement | undefined>>;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
/** Mouseenter (default) or click */
|
|
19
|
-
event: {
|
|
20
|
-
type: PropType<"click" | "mouseenter">;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
/** By default the tooltip is shown after a certain delay to make the experience smoother. You can change the value (in ms) */
|
|
24
|
-
delay: {
|
|
25
|
-
type: NumberConstructor;
|
|
26
|
-
default: number;
|
|
27
|
-
};
|
|
28
|
-
/** Mostly for visual testing purpose */
|
|
29
|
-
show: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
/** Maw-width for the generated tooltip. */
|
|
34
|
-
tooltipWidth: {
|
|
35
|
-
type: NumberConstructor;
|
|
36
|
-
default: number;
|
|
37
|
-
};
|
|
38
|
-
}, {
|
|
39
|
-
tooltipVisible: import("vue").Ref<boolean>;
|
|
40
|
-
tooltip: import("vue").Ref<HTMLElement | null>;
|
|
41
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
42
|
-
/** If you are 100% sure the content you want to inject does not contain anything that could lead to any XSS, use this */
|
|
43
|
-
text: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
};
|
|
46
|
-
variant: {
|
|
47
|
-
type: PropType<TJoyTooltipVariants>;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
/** It will automatically switch to another placement if there is not enough space. Please see https://floating-ui.com/docs/tutorial#placements for available values */
|
|
51
|
-
placement: {
|
|
52
|
-
type: PropType<import("@floating-ui/vue").MaybeReadonlyRef<Placement | undefined>>;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
/** Mouseenter (default) or click */
|
|
56
|
-
event: {
|
|
57
|
-
type: PropType<"click" | "mouseenter">;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
/** By default the tooltip is shown after a certain delay to make the experience smoother. You can change the value (in ms) */
|
|
61
|
-
delay: {
|
|
62
|
-
type: NumberConstructor;
|
|
63
|
-
default: number;
|
|
64
|
-
};
|
|
65
|
-
/** Mostly for visual testing purpose */
|
|
66
|
-
show: {
|
|
67
|
-
type: BooleanConstructor;
|
|
68
|
-
default: boolean;
|
|
69
|
-
};
|
|
70
|
-
/** Maw-width for the generated tooltip. */
|
|
71
|
-
tooltipWidth: {
|
|
72
|
-
type: NumberConstructor;
|
|
73
|
-
default: number;
|
|
74
|
-
};
|
|
75
|
-
}>>, {
|
|
76
|
-
variant: TJoyTooltipVariants;
|
|
77
|
-
show: boolean;
|
|
78
|
-
placement: import("@floating-ui/vue").MaybeReadonlyRef<Placement | undefined>;
|
|
79
|
-
event: "click" | "mouseenter";
|
|
80
|
-
delay: number;
|
|
81
|
-
tooltipWidth: number;
|
|
82
|
-
}, {}>, Readonly<{
|
|
83
|
-
default: () => void;
|
|
84
|
-
'tooltip-content'?: (() => void) | undefined;
|
|
85
|
-
}>>;
|
|
86
|
-
export default _default;
|
|
87
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
88
|
-
new (): {
|
|
89
|
-
$slots: S;
|
|
90
|
-
};
|
|
91
|
-
};
|