@roku-ui/vue 0.20.0 → 0.22.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 +33 -33
- package/dist/components/AppShell.vue.d.ts +55 -0
- package/dist/components/AspectRatio.vue.d.ts +11 -15
- package/dist/components/AutoHeightTransition.vue.d.ts +17 -0
- package/dist/components/Avatar.vue.d.ts +17 -22
- package/dist/components/Btn.vue.d.ts +21 -30
- package/dist/components/BtnGroup.vue.d.ts +5 -5
- package/dist/components/Calendar.vue.d.ts +40 -0
- package/dist/components/ChatContainer.vue.d.ts +3 -2
- package/dist/components/ChatMessage.vue.d.ts +11 -15
- package/dist/components/ChatSystem.vue.d.ts +10 -13
- package/dist/components/Checkbox.vue.d.ts +33 -0
- package/dist/components/Chip.vue.d.ts +12 -17
- package/dist/components/ColorInput.vue.d.ts +7 -5
- package/dist/components/ColorSwatch.vue.d.ts +3 -6
- package/dist/components/Drawer.vue.d.ts +7 -6
- package/dist/components/Dropzone.vue.d.ts +11 -10
- package/dist/components/FullscreenOverlay.vue.d.ts +10 -7
- package/dist/components/Image.vue.d.ts +7 -14
- package/dist/components/Indicator.vue.d.ts +10 -13
- package/dist/components/Menu.vue.d.ts +14 -9
- package/dist/components/MenuItem.vue.d.ts +8 -8
- package/dist/components/Modal.vue.d.ts +7 -6
- package/dist/components/Notification.vue.d.ts +21 -27
- package/dist/components/NotificationSystem.vue.d.ts +7 -13
- package/dist/components/Overlay.vue.d.ts +14 -13
- package/dist/components/Paper.vue.d.ts +16 -20
- package/dist/components/PinInput.vue.d.ts +105 -9
- package/dist/components/Popover.vue.d.ts +10 -6
- package/dist/components/Progress.vue.d.ts +6 -13
- package/dist/components/Rating.vue.d.ts +5 -5
- package/dist/components/RokuProvider.vue.d.ts +12 -12
- package/dist/components/SchemeSwitch.vue.d.ts +11 -6
- package/dist/components/ScrollArea.vue.d.ts +20 -18
- package/dist/components/Select.vue.d.ts +6 -10
- package/dist/components/SelectArea.vue.d.ts +6 -11
- package/dist/components/Slider.vue.d.ts +13 -5
- package/dist/components/Switch.vue.d.ts +14 -10
- package/dist/components/TabItem.vue.d.ts +10 -9
- package/dist/components/Tabs.vue.d.ts +9 -6
- package/dist/components/Tag.vue.d.ts +20 -21
- package/dist/components/TextField.vue.d.ts +9 -6
- package/dist/components/ThemeProvider.vue.d.ts +7 -8
- package/dist/components/Tooltip.vue.d.ts +10 -7
- package/dist/components/TreeList.vue.d.ts +58 -11
- package/dist/components/index.d.ts +4 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4277 -3248
- package/dist/index.umd.cjs +1 -1
- package/dist/shared/index.d.ts +8 -8
- package/dist/test/demo/AppShellDemo.vue.d.ts +2 -0
- package/dist/test/demo/AvatarDemo.vue.d.ts +2 -0
- package/dist/test/demo/ButtonDemo.vue.d.ts +2 -0
- package/dist/test/demo/CalendarDemo.vue.d.ts +2 -0
- package/dist/test/demo/ChatDemo.vue.d.ts +2 -0
- package/dist/test/demo/FormDemo.vue.d.ts +2 -0
- package/dist/test/demo/LayoutDemo.vue.d.ts +2 -0
- package/dist/test/demo/MediaDemo.vue.d.ts +2 -0
- package/dist/test/demo/ModalDemo.vue.d.ts +2 -0
- package/dist/test/demo/NavigationDemo.vue.d.ts +2 -0
- package/dist/test/demo/NotificationDemo.vue.d.ts +2 -0
- package/dist/test/demo/PopoverDemo.vue.d.ts +1 -1
- package/dist/test/demo/RatingDemo.vue.d.ts +1 -1
- package/dist/test/demo/SelectAreaDemo.vue.d.ts +3 -1
- package/dist/test/demo/SelectDemo.vue.d.ts +1 -1
- package/dist/test/demo/SliderDemo.vue.d.ts +2 -0
- package/dist/test/demo/SwitchDemo.vue.d.ts +2 -0
- package/dist/test/demo/TagsDemo.vue.d.ts +1 -1
- package/dist/test/demo/TooltipDemo.vue.d.ts +2 -0
- package/dist/test/demo/WaterfallDemo.vue.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/utils/modals.d.ts +5 -3
- package/dist/utils/notifications.d.ts +3 -3
- package/package.json +24 -24
package/dist/shared/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BtnVariant, Color, ContainerVariant, InputVariant } from '../types';
|
|
2
1
|
import { ComputedRef, MaybeRef } from 'vue';
|
|
2
|
+
import { BtnVariant, Color, ContainerVariant, InputVariant } from '../types';
|
|
3
3
|
import { default as tinycolor } from 'tinycolor2';
|
|
4
4
|
export declare const primaryColor: import('vue').Ref<string, string>;
|
|
5
5
|
export declare const secondaryColor: import('vue').Ref<string, string>;
|
|
@@ -24,7 +24,7 @@ export declare const defaultTheme: ComputedRef<{
|
|
|
24
24
|
};
|
|
25
25
|
}>;
|
|
26
26
|
export declare function useContainerCS(variant: MaybeRef<ContainerVariant>, color: MaybeRef<Color>): ComputedRef<{
|
|
27
|
-
style:
|
|
27
|
+
style: Record<string, string>;
|
|
28
28
|
class: string[];
|
|
29
29
|
}>;
|
|
30
30
|
export declare function useColors(color: MaybeRef<Color>, lightnessMap?: number[]): ComputedRef<tinycolor.Instance[]>;
|
|
@@ -45,27 +45,27 @@ interface CS {
|
|
|
45
45
|
class: string[] | string;
|
|
46
46
|
}
|
|
47
47
|
export declare function useContainerDefaultCS(): ComputedRef<{
|
|
48
|
-
style:
|
|
48
|
+
style: Record<string, string>;
|
|
49
49
|
class: string[];
|
|
50
50
|
}>;
|
|
51
51
|
export declare function useContainerDefaultVariantCS(): ComputedRef<{
|
|
52
|
-
style:
|
|
52
|
+
style: Record<string, string>;
|
|
53
53
|
class: string[];
|
|
54
54
|
}>;
|
|
55
55
|
export declare function useMergedCS(...cs: ReturnType<typeof useCS>[]): ComputedRef<{
|
|
56
|
-
style:
|
|
56
|
+
style: Record<string, string>;
|
|
57
57
|
class: string[];
|
|
58
58
|
}>;
|
|
59
59
|
export declare function useIndicatorFilledCS(color: MaybeRef<Color>): ComputedRef<{
|
|
60
|
-
style:
|
|
60
|
+
style: Record<string, string>;
|
|
61
61
|
class: string[];
|
|
62
62
|
}>;
|
|
63
63
|
export declare function useContainerFilledCS(color: MaybeRef<Color>): ComputedRef<{
|
|
64
|
-
style:
|
|
64
|
+
style: Record<string, string>;
|
|
65
65
|
class: string[];
|
|
66
66
|
}>;
|
|
67
67
|
export declare function useContainerLightCS(color: MaybeRef<Color>): ComputedRef<{
|
|
68
|
-
style:
|
|
68
|
+
style: Record<string, string>;
|
|
69
69
|
class: string[];
|
|
70
70
|
}>;
|
|
71
71
|
export declare function getCSInner(colors: tinycolor.Instance[], type: CSType, darkIndex: number, lightIndex: number, alpha?: number): CS;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
areaRef: HTMLDivElement;
|
|
3
|
+
}, HTMLDivElement>;
|
|
2
4
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type BtnVariant = 'filled' | 'default' | 'light' | 'outline' | 'subtle' | 'transparent' | 'contrast' | 'white';
|
|
2
2
|
export type ContainerVariant = 'filled' | 'default' | 'light' | 'outline' | 'white';
|
|
3
3
|
export type InputVariant = 'default' | 'filled';
|
|
4
|
+
export type CalendarMode = 'single' | 'multiple' | 'range';
|
|
4
5
|
export type Color = 'primary' | 'secondary' | 'tertiary' | 'error' | 'surface' | string;
|
|
5
6
|
export type Size = 'sm' | 'md' | 'lg';
|
|
6
7
|
export type Rounded = 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
package/dist/utils/modals.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export type ModalData = ModalDataType & {
|
|
|
24
24
|
id: string;
|
|
25
25
|
};
|
|
26
26
|
export declare function useModals(): import('vue').ShallowRef<ModalData[], ModalData[]>;
|
|
27
|
-
export declare
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
export declare const Modals: {
|
|
28
|
+
open(data: ModalDataType): void;
|
|
29
|
+
close(id: string): void;
|
|
30
|
+
clear(): void;
|
|
31
|
+
};
|
|
@@ -12,6 +12,6 @@ export interface NotificationData extends NotificationDataInterface {
|
|
|
12
12
|
initialDurationMS: number;
|
|
13
13
|
}
|
|
14
14
|
export declare function useNotifications(topN?: number): import('vue').WritableComputedRef<NotificationData[], NotificationData[]>;
|
|
15
|
-
export declare
|
|
16
|
-
|
|
17
|
-
}
|
|
15
|
+
export declare const Notifications: {
|
|
16
|
+
show(data: Partial<NotificationDataInterface>): void;
|
|
17
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roku-ui/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.22.0",
|
|
5
5
|
"author": "Jianqi Pan <jannchie@gmail.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -29,33 +29,33 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@formkit/auto-animate": "^0.8.2",
|
|
32
|
-
"@unocss/reset": "
|
|
33
|
-
"@vueuse/core": "^
|
|
32
|
+
"@unocss/reset": "66.3.3",
|
|
33
|
+
"@vueuse/core": "^13.5.0",
|
|
34
34
|
"tinycolor2": "^1.6.0",
|
|
35
|
-
"vue": "^3.5.
|
|
36
|
-
"vue-wf": "^0.
|
|
35
|
+
"vue": "^3.5.17",
|
|
36
|
+
"vue-wf": "^0.5.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@iconify/json": "^2.2.
|
|
40
|
-
"@jannchie/eslint-config": "^3.
|
|
39
|
+
"@iconify/json": "^2.2.356",
|
|
40
|
+
"@jannchie/eslint-config": "^3.6.1",
|
|
41
41
|
"@types/tinycolor2": "^1.4.6",
|
|
42
|
-
"@unocss/eslint-config": "
|
|
43
|
-
"@unocss/eslint-plugin": "
|
|
44
|
-
"@unocss/preset-icons": "
|
|
45
|
-
"@vitejs/plugin-vue": "^
|
|
46
|
-
"@vitejs/plugin-vue-jsx": "^
|
|
47
|
-
"eslint": "^9.
|
|
48
|
-
"eslint-plugin-format": "^0.1
|
|
49
|
-
"typescript": "5.
|
|
50
|
-
"unocss": "
|
|
51
|
-
"unplugin-auto-export": "^1.0.
|
|
52
|
-
"unplugin-auto-import": "^
|
|
53
|
-
"unplugin-vue-components": "^
|
|
54
|
-
"vite": "^
|
|
55
|
-
"vite-plugin-dts": "4.
|
|
56
|
-
"vitest": "^2.
|
|
57
|
-
"vue-tsc": "^
|
|
58
|
-
"@roku-ui/preset": "^0.
|
|
42
|
+
"@unocss/eslint-config": "66.3.3",
|
|
43
|
+
"@unocss/eslint-plugin": "66.3.3",
|
|
44
|
+
"@unocss/preset-icons": "66.3.3",
|
|
45
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
46
|
+
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
|
47
|
+
"eslint": "^9.30.1",
|
|
48
|
+
"eslint-plugin-format": "^1.0.1",
|
|
49
|
+
"typescript": "5.8.3",
|
|
50
|
+
"unocss": "66.3.3",
|
|
51
|
+
"unplugin-auto-export": "^1.0.4",
|
|
52
|
+
"unplugin-auto-import": "^19.3.0",
|
|
53
|
+
"unplugin-vue-components": "^28.8.0",
|
|
54
|
+
"vite": "^7.0.2",
|
|
55
|
+
"vite-plugin-dts": "4.5.4",
|
|
56
|
+
"vitest": "^3.2.4",
|
|
57
|
+
"vue-tsc": "^3.0.1",
|
|
58
|
+
"@roku-ui/preset": "^0.22.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"dev": "vite",
|