@jackbo_vip/admin-kit 1.0.17 → 1.0.19
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 +11 -29
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,17 @@ declare function createIconifyIcon(icon: string): vue.DefineComponent<{}, () =>
|
|
|
17
17
|
export { createIconifyIcon };
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
// ==========================================
|
|
21
|
+
// From @admin-kit/shared
|
|
22
|
+
// ==========================================
|
|
23
|
+
export { get, isEqual, set } from 'es-toolkit/compat';
|
|
24
|
+
export { default as cloneDeep } from 'lodash.clonedeep';
|
|
25
|
+
export { TinyColor } from '@ctrl/tinycolor';
|
|
26
|
+
export { isFunction, isObject, isString } from '@vue/shared';
|
|
27
|
+
export { createDefu as createMerge, defu as merge } from 'defu';
|
|
28
|
+
export * from '@tanstack/vue-store';
|
|
29
|
+
|
|
30
|
+
|
|
20
31
|
// ==========================================
|
|
21
32
|
// From @admin-kit/typings
|
|
22
33
|
// ==========================================
|
|
@@ -532,40 +543,11 @@ export type { UseNamespaceReturn };
|
|
|
532
543
|
// ==========================================
|
|
533
544
|
// From @admin-kit/form-ui
|
|
534
545
|
// ==========================================
|
|
535
|
-
export { setupAdminForm } from './config';
|
|
536
|
-
export type { BaseFormComponentType, ExtendedFormApi, AdminFormProps, FormSchema as AdminFormSchema, } from './types';
|
|
537
|
-
export * from './use-admin-form';
|
|
538
546
|
export * as z from 'zod';
|
|
539
547
|
|
|
540
548
|
|
|
541
|
-
// ==========================================
|
|
542
|
-
// From @admin-kit/layout-ui
|
|
543
|
-
// ==========================================
|
|
544
|
-
export type * from './admin-layout';
|
|
545
|
-
export { default as AdminLayout } from './admin-layout.vue';
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
// ==========================================
|
|
549
|
-
// From @admin-kit/menu-ui
|
|
550
|
-
// ==========================================
|
|
551
|
-
export { default as MenuBadge } from './components/menu-badge.vue';
|
|
552
|
-
export * from './components/normal-menu';
|
|
553
|
-
export { default as Menu } from './menu.vue';
|
|
554
|
-
export type * from './types';
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
// ==========================================
|
|
558
|
-
// From @admin-kit/popup-ui
|
|
559
|
-
// ==========================================
|
|
560
|
-
export * from './alert';
|
|
561
|
-
export * from './drawer';
|
|
562
|
-
export * from './modal';
|
|
563
|
-
|
|
564
|
-
|
|
565
549
|
// ==========================================
|
|
566
550
|
// From @admin-kit/tabs-ui
|
|
567
551
|
// ==========================================
|
|
568
|
-
export * from './components/widgets';
|
|
569
|
-
export { default as TabsView } from './tabs-view.vue';
|
|
570
552
|
export type { IContextMenuItem } from '@admin-kit/shadcn-ui';
|
|
571
553
|
|