@jackbo_vip/admin-kit 1.0.18 → 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 +0 -34
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20,14 +20,9 @@ export { createIconifyIcon };
|
|
|
20
20
|
// ==========================================
|
|
21
21
|
// From @admin-kit/shared
|
|
22
22
|
// ==========================================
|
|
23
|
-
export { StateHandler, VisibleDomRect, arraysEqual, bindMethods, capitalizeFirstLetter, cn, diff, downloadFileFromBase64, downloadFileFromBlob, downloadFileFromBlobPart, downloadFileFromImageUrl, downloadFileFromUrl, filterTree, formatDate, formatDateTime, getCurrentTimezone, getElementVisibleRect, getFirstNonNullOrUndefined, getNestedValue, getScrollbarWidth, getSystemTimezone, isBoolean, isDate, isDayjsObject, isEmpty, isHttpUrl, isMacOs, isNumber, isUndefined, isWindow, isWindowsOs, kebabToCamelCase, loadScript, mapTree, mergeWithArrayOverride, needsScrollbar, openRouteInNewWindow, openWindow, setCurrentTimezone, sortTree, startProgress, stopProgress, to, toCamelCase, toLowerCaseFirstLetter, traverseTreeValues, triggerDownload, triggerWindowResize, uniqueByField, updateCSSVariables, urlToBase64 } from './utils/index.js';
|
|
24
23
|
export { get, isEqual, set } from 'es-toolkit/compat';
|
|
25
24
|
export { default as cloneDeep } from 'lodash.clonedeep';
|
|
26
|
-
export { IGlobalSharedState, globalShareState } from './global-state.js';
|
|
27
|
-
export { StorageManager } from './cache/index.js';
|
|
28
|
-
export { convertToHsl, convertToHslCssVar, convertToRgb, generatorColorVariables, isDarkColor, isLightColor, isValidColor } from './color/index.js';
|
|
29
25
|
export { TinyColor } from '@ctrl/tinycolor';
|
|
30
|
-
export { ADMIN_ANT_PREVIEW_URL, ADMIN_DOC_URL, ADMIN_ELE_PREVIEW_URL, ADMIN_GITHUB_URL, ADMIN_LOGO_URL, ADMIN_NAIVE_PREVIEW_URL, ADMIN_PREVIEW_URL, ADMIN_TD_PREVIEW_URL, CSS_VARIABLE_LAYOUT_CONTENT_HEIGHT, CSS_VARIABLE_LAYOUT_CONTENT_WIDTH, CSS_VARIABLE_LAYOUT_FOOTER_HEIGHT, CSS_VARIABLE_LAYOUT_HEADER_HEIGHT, DEFAULT_NAMESPACE, ELEMENT_ID_MAIN_CONTENT } from './constants/index.js';
|
|
31
26
|
export { isFunction, isObject, isString } from '@vue/shared';
|
|
32
27
|
export { createDefu as createMerge, defu as merge } from 'defu';
|
|
33
28
|
export * from '@tanstack/vue-store';
|
|
@@ -548,40 +543,11 @@ export type { UseNamespaceReturn };
|
|
|
548
543
|
// ==========================================
|
|
549
544
|
// From @admin-kit/form-ui
|
|
550
545
|
// ==========================================
|
|
551
|
-
export { setupAdminForm } from './config';
|
|
552
|
-
export type { BaseFormComponentType, ExtendedFormApi, AdminFormProps, FormSchema as AdminFormSchema, } from './types';
|
|
553
|
-
export * from './use-admin-form';
|
|
554
546
|
export * as z from 'zod';
|
|
555
547
|
|
|
556
548
|
|
|
557
|
-
// ==========================================
|
|
558
|
-
// From @admin-kit/layout-ui
|
|
559
|
-
// ==========================================
|
|
560
|
-
export type * from './admin-layout';
|
|
561
|
-
export { default as AdminLayout } from './admin-layout.vue';
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
// ==========================================
|
|
565
|
-
// From @admin-kit/menu-ui
|
|
566
|
-
// ==========================================
|
|
567
|
-
export { default as MenuBadge } from './components/menu-badge.vue';
|
|
568
|
-
export * from './components/normal-menu';
|
|
569
|
-
export { default as Menu } from './menu.vue';
|
|
570
|
-
export type * from './types';
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
// ==========================================
|
|
574
|
-
// From @admin-kit/popup-ui
|
|
575
|
-
// ==========================================
|
|
576
|
-
export * from './alert';
|
|
577
|
-
export * from './drawer';
|
|
578
|
-
export * from './modal';
|
|
579
|
-
|
|
580
|
-
|
|
581
549
|
// ==========================================
|
|
582
550
|
// From @admin-kit/tabs-ui
|
|
583
551
|
// ==========================================
|
|
584
|
-
export * from './components/widgets';
|
|
585
|
-
export { default as TabsView } from './tabs-view.vue';
|
|
586
552
|
export type { IContextMenuItem } from '@admin-kit/shadcn-ui';
|
|
587
553
|
|