@jackbo_vip/admin-kit 1.0.6 → 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.
Files changed (2) hide show
  1. package/dist/index.d.ts +23 -18
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1,24 +1,29 @@
1
1
  // Type declarations for @jackbo_vip/admin-kit
2
- // This package bundles multiple workspace packages into a single distributable package
2
+ // This package bundles all dependencies into a single distributable package
3
3
 
4
- // Re-export all types from workspace packages
5
- // Note: Actual type definitions are embedded in the bundled JavaScript files
4
+ // Note: Full type declarations will be available after building all workspace packages
5
+ // For now, we provide basic type support
6
6
 
7
- // Base packages
8
- export * from '@admin-kit/icons';
9
- export * from '@admin-kit/shared';
10
- export * from '@admin-kit/typings';
7
+ export * from 'vue';
8
+ export * from 'vue-router';
9
+ export * from '@vueuse/core';
11
10
 
12
- // Composables
13
- export * from '@admin-kit/composables';
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;
14
21
 
15
- // Preferences
16
- export * from '@admin-kit/preferences';
22
+ // Composables
23
+ export declare function useIsMobile(): any;
24
+ export declare function useNamespace(name: string): any;
17
25
 
18
- // UI Kit
19
- export * from '@admin-kit/form-ui';
20
- export * from '@admin-kit/layout-ui';
21
- export * from '@admin-kit/menu-ui';
22
- export * from '@admin-kit/popup-ui';
23
- export * from '@admin-kit/shadcn-ui';
24
- export * from '@admin-kit/tabs-ui';
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jackbo_vip/admin-kit",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "A comprehensive Vue 3 admin UI component library with TypeScript support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",