@datametria/vue-components 2.1.0 → 2.1.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/README.md +22 -8
- package/dist/index.d.ts +2 -0
- package/dist/src/components/DatametriaAlert.vue.d.ts +33 -0
- package/dist/src/components/DatametriaAutocomplete.vue.d.ts +28 -0
- package/dist/src/components/DatametriaAvatar.vue.d.ts +25 -0
- package/dist/src/components/DatametriaBadge.vue.d.ts +26 -0
- package/dist/src/components/DatametriaBreadcrumb.vue.d.ts +16 -0
- package/dist/src/components/DatametriaButton.vue.d.ts +37 -0
- package/dist/src/components/DatametriaCard.vue.d.ts +25 -0
- package/dist/src/components/DatametriaCheckbox.vue.d.ts +14 -0
- package/dist/src/components/DatametriaChip.vue.d.ts +34 -0
- package/dist/src/components/DatametriaContainer.vue.d.ts +24 -0
- package/dist/src/components/DatametriaDatePicker.vue.d.ts +55 -0
- package/dist/src/components/DatametriaDivider.vue.d.ts +25 -0
- package/dist/src/components/DatametriaFileUpload.vue.d.ts +28 -0
- package/dist/src/components/DatametriaFloatingBar.vue.d.ts +32 -0
- package/dist/src/components/DatametriaGrid.vue.d.ts +24 -0
- package/dist/src/components/DatametriaInput.vue.d.ts +18 -0
- package/dist/src/components/DatametriaMenu.vue.d.ts +71 -0
- package/dist/src/components/DatametriaModal.vue.d.ts +34 -0
- package/dist/src/components/DatametriaNavbar.vue.d.ts +34 -0
- package/dist/src/components/DatametriaPasswordInput.vue.d.ts +29 -0
- package/dist/src/components/DatametriaProgress.vue.d.ts +12 -0
- package/dist/src/components/DatametriaRadio.vue.d.ts +17 -0
- package/dist/src/components/DatametriaSelect.vue.d.ts +23 -0
- package/dist/src/components/DatametriaSidebar.vue.d.ts +45 -0
- package/dist/src/components/DatametriaSkeleton.vue.d.ts +18 -0
- package/dist/src/components/DatametriaSlider.vue.d.ts +41 -0
- package/dist/src/components/DatametriaSortableTable.vue.d.ts +32 -0
- package/dist/src/components/DatametriaSpinner.vue.d.ts +12 -0
- package/dist/src/components/DatametriaSwitch.vue.d.ts +16 -0
- package/dist/src/components/DatametriaTable.vue.d.ts +29 -0
- package/dist/src/components/DatametriaTabs.vue.d.ts +41 -0
- package/dist/src/components/DatametriaTextarea.vue.d.ts +22 -0
- package/dist/src/components/DatametriaTimePicker.vue.d.ts +36 -0
- package/dist/src/components/DatametriaToast.vue.d.ts +20 -0
- package/dist/src/components/DatametriaTooltip.vue.d.ts +58 -0
- package/dist/src/composables/useAPI.d.ts +14 -0
- package/dist/src/composables/useAccessibilityScale.d.ts +14 -0
- package/dist/src/composables/useBreakpoints.d.ts +33 -0
- package/dist/src/composables/useClipboard.d.ts +6 -0
- package/dist/src/composables/useDebounce.d.ts +2 -0
- package/dist/src/composables/useHapticFeedback.d.ts +34 -0
- package/dist/src/composables/useLocalStorage.d.ts +2 -0
- package/dist/src/composables/useRipple.d.ts +49 -0
- package/dist/src/composables/useTheme.d.ts +10 -0
- package/dist/src/composables/useValidation.d.ts +14 -0
- package/dist/src/index.d.ts +53 -0
- package/dist/src/theme/ThemeProvider.vue.d.ts +24 -0
- package/dist/src/theme/constants.d.ts +5 -0
- package/dist/src/theme/index.d.ts +11 -0
- package/dist/src/theme/presets/datametria.d.ts +2 -0
- package/dist/src/theme/presets/default.d.ts +2 -0
- package/dist/src/theme/presets/index.d.ts +7 -0
- package/dist/src/theme/tokens/colors.d.ts +2 -0
- package/dist/src/theme/tokens/index.d.ts +8 -0
- package/dist/src/theme/tokens/spacing.d.ts +2 -0
- package/dist/src/theme/tokens/typography.d.ts +2 -0
- package/dist/src/theme/types.d.ts +102 -0
- package/dist/src/theme/useTheme.d.ts +8 -0
- package/dist/src/types/index.d.ts +47 -0
- package/package.json +4 -2
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
interface RippleOptions {
|
|
2
|
+
color?: string;
|
|
3
|
+
duration?: number;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
}
|
|
6
|
+
interface RippleEffect {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
size: number;
|
|
10
|
+
id: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Composable para efeito ripple em elementos clicáveis
|
|
14
|
+
* Implementa Material Design ripple effect com acessibilidade
|
|
15
|
+
*/
|
|
16
|
+
export declare function useRipple(options?: RippleOptions): {
|
|
17
|
+
rippleRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
18
|
+
ripples: import('vue').Ref<{
|
|
19
|
+
x: number;
|
|
20
|
+
y: number;
|
|
21
|
+
size: number;
|
|
22
|
+
id: string;
|
|
23
|
+
}[], RippleEffect[] | {
|
|
24
|
+
x: number;
|
|
25
|
+
y: number;
|
|
26
|
+
size: number;
|
|
27
|
+
id: string;
|
|
28
|
+
}[]>;
|
|
29
|
+
applyRipple: (element: HTMLElement) => (() => void) | undefined;
|
|
30
|
+
removeRipple: (id: string) => void;
|
|
31
|
+
clearRipples: () => void;
|
|
32
|
+
getRippleStyle: (ripple: RippleEffect) => {
|
|
33
|
+
position: "absolute";
|
|
34
|
+
left: string;
|
|
35
|
+
top: string;
|
|
36
|
+
width: string;
|
|
37
|
+
height: string;
|
|
38
|
+
borderRadius: string;
|
|
39
|
+
backgroundColor: string;
|
|
40
|
+
transform: string;
|
|
41
|
+
animation: string;
|
|
42
|
+
pointerEvents: "none";
|
|
43
|
+
zIndex: number;
|
|
44
|
+
};
|
|
45
|
+
createRipple: (event: MouseEvent | TouchEvent) => void;
|
|
46
|
+
addRippleEffect: () => (() => void) | undefined;
|
|
47
|
+
removeRippleEffect: () => void;
|
|
48
|
+
};
|
|
49
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare function resetTheme(): void;
|
|
2
|
+
export declare function useTheme(): {
|
|
3
|
+
isDark: import('vue').Ref<boolean, boolean>;
|
|
4
|
+
currentTheme: import('vue').ComputedRef<"dark" | "light">;
|
|
5
|
+
toggle: () => void;
|
|
6
|
+
setTheme: (theme: "light" | "dark") => void;
|
|
7
|
+
setDark: () => void;
|
|
8
|
+
setLight: () => void;
|
|
9
|
+
initTheme: () => void;
|
|
10
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const required: (value: any) => boolean;
|
|
2
|
+
export declare const email: (value: any) => boolean;
|
|
3
|
+
export declare const minLength: (min: number) => (value: any) => boolean;
|
|
4
|
+
export declare const maxLength: (max: number) => (value: any) => boolean;
|
|
5
|
+
export declare const pattern: (regex: RegExp) => (value: any) => boolean;
|
|
6
|
+
export declare const custom: (validator: (value: any) => boolean) => (value: any) => boolean;
|
|
7
|
+
export declare function useValidation(): {
|
|
8
|
+
required: (value: any) => boolean;
|
|
9
|
+
email: (value: any) => boolean;
|
|
10
|
+
minLength: (min: number) => (value: any) => boolean;
|
|
11
|
+
maxLength: (max: number) => (value: any) => boolean;
|
|
12
|
+
pattern: (regex: RegExp) => (value: any) => boolean;
|
|
13
|
+
custom: (validator: (value: any) => boolean) => (value: any) => boolean;
|
|
14
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export { default as DatametriaButton } from './components/DatametriaButton.vue';
|
|
2
|
+
export { default as DatametriaInput } from './components/DatametriaInput.vue';
|
|
3
|
+
export { default as DatametriaPasswordInput } from './components/DatametriaPasswordInput.vue';
|
|
4
|
+
export { default as DatametriaSelect } from './components/DatametriaSelect.vue';
|
|
5
|
+
export { default as DatametriaCheckbox } from './components/DatametriaCheckbox.vue';
|
|
6
|
+
export { default as DatametriaRadio } from './components/DatametriaRadio.vue';
|
|
7
|
+
export { default as DatametriaSwitch } from './components/DatametriaSwitch.vue';
|
|
8
|
+
export { default as DatametriaTextarea } from './components/DatametriaTextarea.vue';
|
|
9
|
+
export { default as DatametriaDatePicker } from './components/DatametriaDatePicker.vue';
|
|
10
|
+
export { default as DatametriaTimePicker } from './components/DatametriaTimePicker.vue';
|
|
11
|
+
export { default as DatametriaSlider } from './components/DatametriaSlider.vue';
|
|
12
|
+
export { default as DatametriaFileUpload } from './components/DatametriaFileUpload.vue';
|
|
13
|
+
export { default as DatametriaAutocomplete } from './components/DatametriaAutocomplete.vue';
|
|
14
|
+
export { default as DatametriaCard } from './components/DatametriaCard.vue';
|
|
15
|
+
export { default as DatametriaModal } from './components/DatametriaModal.vue';
|
|
16
|
+
export { default as DatametriaContainer } from './components/DatametriaContainer.vue';
|
|
17
|
+
export { default as DatametriaGrid } from './components/DatametriaGrid.vue';
|
|
18
|
+
export { default as DatametriaDivider } from './components/DatametriaDivider.vue';
|
|
19
|
+
export { default as DatametriaAlert } from './components/DatametriaAlert.vue';
|
|
20
|
+
export { default as DatametriaToast } from './components/DatametriaToast.vue';
|
|
21
|
+
export { default as DatametriaTooltip } from './components/DatametriaTooltip.vue';
|
|
22
|
+
export { default as DatametriaSkeleton } from './components/DatametriaSkeleton.vue';
|
|
23
|
+
export { default as DatametriaProgress } from './components/DatametriaProgress.vue';
|
|
24
|
+
export { default as DatametriaSpinner } from './components/DatametriaSpinner.vue';
|
|
25
|
+
export { default as DatametriaTable } from './components/DatametriaTable.vue';
|
|
26
|
+
export { default as DatametriaSortableTable } from './components/DatametriaSortableTable.vue';
|
|
27
|
+
export { default as DatametriaAvatar } from './components/DatametriaAvatar.vue';
|
|
28
|
+
export { default as DatametriaBadge } from './components/DatametriaBadge.vue';
|
|
29
|
+
export { default as DatametriaChip } from './components/DatametriaChip.vue';
|
|
30
|
+
export { default as DatametriaNavbar } from './components/DatametriaNavbar.vue';
|
|
31
|
+
export { default as DatametriaSidebar } from './components/DatametriaSidebar.vue';
|
|
32
|
+
export { default as DatametriaFloatingBar } from './components/DatametriaFloatingBar.vue';
|
|
33
|
+
export { default as DatametriaMenu } from './components/DatametriaMenu.vue';
|
|
34
|
+
export { default as DatametriaBreadcrumb } from './components/DatametriaBreadcrumb.vue';
|
|
35
|
+
export { default as DatametriaTabs } from './components/DatametriaTabs.vue';
|
|
36
|
+
export { useValidation, required, email, minLength, maxLength, pattern, custom } from './composables/useValidation';
|
|
37
|
+
export { useAPI } from './composables/useAPI';
|
|
38
|
+
export { useAccessibilityScale } from './composables/useAccessibilityScale';
|
|
39
|
+
export { useBreakpoints } from './composables/useBreakpoints';
|
|
40
|
+
export { useRipple } from './composables/useRipple';
|
|
41
|
+
export { useHapticFeedback } from './composables/useHapticFeedback';
|
|
42
|
+
export { useLocalStorage } from './composables/useLocalStorage';
|
|
43
|
+
export { useDebounce } from './composables/useDebounce';
|
|
44
|
+
export { useClipboard } from './composables/useClipboard';
|
|
45
|
+
export { default as ThemeProvider } from './theme/ThemeProvider.vue';
|
|
46
|
+
export { useTheme } from './theme/useTheme';
|
|
47
|
+
export { datametriaTheme, defaultTheme } from './theme/presets';
|
|
48
|
+
export type { Theme, ThemeTokens } from './theme/types';
|
|
49
|
+
export type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'outline';
|
|
50
|
+
export type ButtonSize = 'sm' | 'md' | 'lg';
|
|
51
|
+
export type AlertVariant = 'info' | 'success' | 'warning' | 'error';
|
|
52
|
+
export type BadgeVariant = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info';
|
|
53
|
+
export type BadgeSize = 'sm' | 'md' | 'lg';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Theme } from './types';
|
|
2
|
+
interface Props {
|
|
3
|
+
theme: Theme;
|
|
4
|
+
prefix?: string;
|
|
5
|
+
}
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
16
|
+
prefix: string;
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme System Exports
|
|
3
|
+
* @author Vander Loto - CTO DATAMETRIA
|
|
4
|
+
* @date 13/11/2025
|
|
5
|
+
*/
|
|
6
|
+
export { default as ThemeProvider } from './ThemeProvider.vue';
|
|
7
|
+
export { useTheme } from './useTheme';
|
|
8
|
+
export * from './types';
|
|
9
|
+
export * from './constants';
|
|
10
|
+
export * from './tokens';
|
|
11
|
+
export * from './presets';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ThemeTokens, RadiusTokens, ShadowTokens, TransitionTokens } from '../types';
|
|
2
|
+
export declare const defaultRadius: RadiusTokens;
|
|
3
|
+
export declare const defaultShadows: ShadowTokens;
|
|
4
|
+
export declare const defaultTransitions: TransitionTokens;
|
|
5
|
+
export declare const defaultTokens: ThemeTokens;
|
|
6
|
+
export * from './colors';
|
|
7
|
+
export * from './typography';
|
|
8
|
+
export * from './spacing';
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme System Types
|
|
3
|
+
* @author Vander Loto - CTO DATAMETRIA
|
|
4
|
+
* @date 13/11/2025
|
|
5
|
+
*/
|
|
6
|
+
export interface ColorTokens {
|
|
7
|
+
primary: string;
|
|
8
|
+
secondary: string;
|
|
9
|
+
success: string;
|
|
10
|
+
warning: string;
|
|
11
|
+
error: string;
|
|
12
|
+
info: string;
|
|
13
|
+
neutral: {
|
|
14
|
+
50: string;
|
|
15
|
+
100: string;
|
|
16
|
+
200: string;
|
|
17
|
+
300: string;
|
|
18
|
+
400: string;
|
|
19
|
+
500: string;
|
|
20
|
+
600: string;
|
|
21
|
+
700: string;
|
|
22
|
+
800: string;
|
|
23
|
+
900: string;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
export interface TypographyTokens {
|
|
27
|
+
fontFamily: {
|
|
28
|
+
sans: string;
|
|
29
|
+
mono: string;
|
|
30
|
+
};
|
|
31
|
+
fontSize: {
|
|
32
|
+
xs: string;
|
|
33
|
+
sm: string;
|
|
34
|
+
base: string;
|
|
35
|
+
lg: string;
|
|
36
|
+
xl: string;
|
|
37
|
+
'2xl': string;
|
|
38
|
+
'3xl': string;
|
|
39
|
+
'4xl': string;
|
|
40
|
+
};
|
|
41
|
+
fontWeight: {
|
|
42
|
+
normal: number;
|
|
43
|
+
medium: number;
|
|
44
|
+
semibold: number;
|
|
45
|
+
bold: number;
|
|
46
|
+
};
|
|
47
|
+
lineHeight: {
|
|
48
|
+
tight: number;
|
|
49
|
+
normal: number;
|
|
50
|
+
relaxed: number;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export interface SpacingTokens {
|
|
54
|
+
0: string;
|
|
55
|
+
1: string;
|
|
56
|
+
2: string;
|
|
57
|
+
3: string;
|
|
58
|
+
4: string;
|
|
59
|
+
6: string;
|
|
60
|
+
8: string;
|
|
61
|
+
12: string;
|
|
62
|
+
16: string;
|
|
63
|
+
20: string;
|
|
64
|
+
24: string;
|
|
65
|
+
}
|
|
66
|
+
export interface RadiusTokens {
|
|
67
|
+
none: string;
|
|
68
|
+
sm: string;
|
|
69
|
+
md: string;
|
|
70
|
+
lg: string;
|
|
71
|
+
xl: string;
|
|
72
|
+
full: string;
|
|
73
|
+
}
|
|
74
|
+
export interface ShadowTokens {
|
|
75
|
+
none: string;
|
|
76
|
+
sm: string;
|
|
77
|
+
md: string;
|
|
78
|
+
lg: string;
|
|
79
|
+
xl: string;
|
|
80
|
+
'2xl': string;
|
|
81
|
+
}
|
|
82
|
+
export interface TransitionTokens {
|
|
83
|
+
fast: string;
|
|
84
|
+
base: string;
|
|
85
|
+
slow: string;
|
|
86
|
+
}
|
|
87
|
+
export interface ThemeTokens {
|
|
88
|
+
colors: ColorTokens;
|
|
89
|
+
typography: TypographyTokens;
|
|
90
|
+
spacing: SpacingTokens;
|
|
91
|
+
radius: RadiusTokens;
|
|
92
|
+
shadows: ShadowTokens;
|
|
93
|
+
transitions: TransitionTokens;
|
|
94
|
+
}
|
|
95
|
+
export interface Theme {
|
|
96
|
+
name: string;
|
|
97
|
+
tokens: ThemeTokens;
|
|
98
|
+
}
|
|
99
|
+
export interface ThemeConfig {
|
|
100
|
+
theme: Theme;
|
|
101
|
+
prefix?: string;
|
|
102
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComputedRef } from 'vue';
|
|
2
|
+
import { Theme } from './types';
|
|
3
|
+
/**
|
|
4
|
+
* Access the current theme from ThemeProvider
|
|
5
|
+
* @throws Error if used outside ThemeProvider
|
|
6
|
+
* @returns Current theme object (reactive)
|
|
7
|
+
*/
|
|
8
|
+
export declare function useTheme(): ComputedRef<Theme>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export declare enum ButtonVariant {
|
|
2
|
+
PRIMARY = "primary",
|
|
3
|
+
SECONDARY = "secondary",
|
|
4
|
+
OUTLINE = "outline",
|
|
5
|
+
GHOST = "ghost"
|
|
6
|
+
}
|
|
7
|
+
export declare enum ButtonSize {
|
|
8
|
+
SM = "sm",
|
|
9
|
+
MD = "md",
|
|
10
|
+
LG = "lg"
|
|
11
|
+
}
|
|
12
|
+
export interface ButtonProps {
|
|
13
|
+
variant?: ButtonVariant;
|
|
14
|
+
size?: ButtonSize;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
loading?: boolean;
|
|
17
|
+
fullWidth?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface InputProps {
|
|
20
|
+
modelValue?: string | number;
|
|
21
|
+
label?: string;
|
|
22
|
+
placeholder?: string;
|
|
23
|
+
errorMessage?: string;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
required?: boolean;
|
|
26
|
+
}
|
|
27
|
+
export interface CardProps {
|
|
28
|
+
title?: string;
|
|
29
|
+
padding?: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface TableColumn {
|
|
32
|
+
key: string;
|
|
33
|
+
label: string;
|
|
34
|
+
width?: string;
|
|
35
|
+
sortable?: boolean;
|
|
36
|
+
filterable?: boolean;
|
|
37
|
+
}
|
|
38
|
+
export interface SortableTableProps {
|
|
39
|
+
columns: TableColumn[];
|
|
40
|
+
data: Record<string, any>[];
|
|
41
|
+
selectable?: boolean;
|
|
42
|
+
searchable?: boolean;
|
|
43
|
+
filterable?: boolean;
|
|
44
|
+
paginated?: boolean;
|
|
45
|
+
pageSize?: number;
|
|
46
|
+
pageSizeOptions?: number[];
|
|
47
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datametria/vue-components",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "DATAMETRIA Vue.js 3 Component Library with Multi-Brand Theming - 32 components with theming support, WCAG 2.2 AA, dark mode, responsive system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"import": "./dist/index.es.js",
|
|
13
13
|
"require": "./dist/index.umd.js"
|
|
14
14
|
},
|
|
15
|
-
"./style.css": "./dist/
|
|
15
|
+
"./style.css": "./dist/vue-components.css",
|
|
16
|
+
"./dist/vue-components.css": "./dist/vue-components.css"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist",
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"prettier": "^3.4.0",
|
|
60
61
|
"typescript": "~5.7.0",
|
|
61
62
|
"vite": "^6.0.0",
|
|
63
|
+
"vite-plugin-dts": "^4.5.4",
|
|
62
64
|
"vitest": "^2.1.0",
|
|
63
65
|
"vue-tsc": "^2.2.0"
|
|
64
66
|
},
|