hs-admin-ui 3.9.6 → 3.9.7

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.
@@ -4,7 +4,7 @@ export { default as bcBreadcrumb } from './bcBreadcrumb.vue';
4
4
  export type PushParams = Record<'name', string> & {
5
5
  query?: any;
6
6
  };
7
- export interface BreadcrumbApi {
7
+ export interface IBreadcrumb {
8
8
  active: ComputedRef<string>;
9
9
  push: (params: PushParams) => void;
10
10
  back: () => void;
@@ -1,6 +1,6 @@
1
1
  import { directive } from '../directive';
2
2
  import { Router } from 'vue-router';
3
- import { BreadcrumbApi } from '../components/business/bcBreadcrumb';
3
+ import { IBreadcrumb } from '../components/business/bcBreadcrumb';
4
4
  import { ICustomData as ITable, IFormData as IForm } from '../types';
5
5
  import { getLoadData, getFormData, TableInstance, IFormInstance } from '../components/business/bcTable/utils/parseTable';
6
6
  import { HsMessage, HsMessageBox, HsNotification } from '../utils';
@@ -22,4 +22,4 @@ type IFormData = IForm.Form;
22
22
  type ISystemParams = ITable.PlatformSystemParams;
23
23
  declare function useHsAdminUi(app: App, options?: OptionsDef): void;
24
24
  export { HsTree, HsConfigProvider, zhCn };
25
- export { type ITable, type ITableData, type ISystemParams, type TableInstance, type IForm, type IFormData, type IFormInstance, type BreadcrumbApi, HsMessage, HsMessageBox, HsNotification, component, Utils, directive, Hooks, useHsAdminUi, getLoadData, getFormData, };
25
+ export { type ITable, type ITableData, type ISystemParams, type TableInstance, type IForm, type IFormData, type IFormInstance, type IBreadcrumb, HsMessage, HsMessageBox, HsNotification, component, Utils, directive, Hooks, useHsAdminUi, getLoadData, getFormData, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hs-admin-ui",
3
- "version": "3.9.6",
3
+ "version": "3.9.7",
4
4
  "description": "vue3 + typescript5 + vite5 的框架",
5
5
  "author": "wgd",
6
6
  "private": false,