@jackbo_vip/admin-kit 1.0.7 → 1.0.8
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/index.d.ts +26 -12
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
// Type declarations for @jackbo_vip/admin-kit
|
|
2
2
|
// This package bundles all dependencies into a single distributable package
|
|
3
3
|
|
|
4
|
-
//
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export * from '
|
|
8
|
-
export * from '
|
|
9
|
-
export * from '@
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
4
|
+
// Note: Full type declarations will be available after building all workspace packages
|
|
5
|
+
// For now, we provide basic type support
|
|
6
|
+
|
|
7
|
+
export * from 'vue';
|
|
8
|
+
export * from 'vue-router';
|
|
9
|
+
export * from '@vueuse/core';
|
|
10
|
+
|
|
11
|
+
// Component types
|
|
12
|
+
export declare const AdminButton: any;
|
|
13
|
+
export declare const AdminIcon: any;
|
|
14
|
+
export declare const Badge: any;
|
|
15
|
+
export declare const Card: any;
|
|
16
|
+
export declare const CardHeader: any;
|
|
17
|
+
export declare const CardTitle: any;
|
|
18
|
+
export declare const CardDescription: any;
|
|
19
|
+
export declare const CardContent: any;
|
|
20
|
+
export declare const CardFooter: any;
|
|
21
|
+
|
|
22
|
+
// Composables
|
|
23
|
+
export declare function useIsMobile(): any;
|
|
24
|
+
export declare function useNamespace(name: string): any;
|
|
25
|
+
|
|
26
|
+
// Utilities
|
|
27
|
+
export declare function cn(...inputs: any[]): string;
|
|
28
|
+
export declare function formatDate(time?: any, format?: string): string;
|
|
29
|
+
export declare function formatDateTime(time?: any): string;
|