yc-vep-ui 0.0.22 → 0.0.24

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/entry.d.ts CHANGED
@@ -10,7 +10,14 @@ import { default as UiDescriptions } from './components/Descriptions/index.vue';
10
10
  import { default as UiDialog } from './components/Dialog/index.vue';
11
11
  export { UiCard, UiTable, UiFilter, UiForm, UiEditor, UiTree, UiInfiniteScroll, UiDescriptions, UiDialog, };
12
12
  export type { IProp } from './components/type';
13
- export type * from './components/type';
13
+ export type { IColumn, ITableProps, ITableInstance, IRender, IRenderProps, IExtra, IColumnRenderProps } from './components/Table/type';
14
+ export type { IField, IFilterProps, IFieldSlot, IFilterRenderProps } from './components/Filter/type';
15
+ export type { IFormProps, IFormInstance } from './components/Form/type';
16
+ export type { IDescriptionsProps, IDescriptionsField } from './components/Descriptions/type';
17
+ export type { ITreeProps } from './components/Tree/type';
18
+ export type { IInfiniteScrollProps } from './components/InfiniteScroll/type';
19
+ export type { IEditorProps } from './components/Editor/type';
20
+ export type { ICardProps } from './components/Card/type';
14
21
  declare const _default: {
15
22
  install(app: App): void;
16
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yc-vep-ui",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "type": "module",
5
5
  "description": "基于 Vue 3 + Element Plus 的企业级 UI 组件库",
6
6
  "keywords": [
@@ -1,9 +0,0 @@
1
- export type IProp = string | number | boolean | null | undefined
2
- export * from './Table/type'
3
- export * from './Filter/type'
4
- export * from './Form/type'
5
- export * from './Descriptions/type'
6
- export * from './InfiniteScroll/type'
7
- export * from './Tree/type'
8
- export * from './Card/type'
9
- export * from './Editor/type'