vue-business-kit 0.0.1 → 0.0.2

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/README.md CHANGED
@@ -23,6 +23,8 @@
23
23
 
24
24
  > ⚠️ **Development Status**: This project is currently under active development. APIs may change before the stable release.
25
25
 
26
+ > ℹ️ **Migration Notice**: This package replaces `vue-ep-toolkit`. If you were using `vue-ep-toolkit`, please migrate to this package for continued support and new features.
27
+
26
28
  ## ✨ Features
27
29
 
28
30
  - 🚀 **Vue3 + TypeScript** - Built with the latest Vue3 and TypeScript, providing complete type support
package/dist/global.d.ts CHANGED
@@ -1,21 +1,17 @@
1
1
 
2
2
  import type { DefineComponent } from "vue"
3
3
  import type {
4
- BkButtonProps,
5
- BkFormEmits,
6
- BkFormInstance,
7
- BkFormProps,
8
- BkIconProps,
9
- BkTableEmits,
10
- BkTableInstance,
11
- BkTableProps
4
+
12
5
  } from "./index"
13
6
 
14
7
  declare module "@vue/runtime-core" {
15
8
  export interface GlobalComponents {
16
- BkButton: DefineComponent<BkButtonProps, {}>
17
- BkForm: DefineComponent<BkFormProps, BkFormInstance, {}, {}, {}, {}, string, BkFormEmits>
18
- BkIcon: DefineComponent<BkIconProps, {}>
19
- BkTable: DefineComponent<BkTableProps, BkTableInstance, {}, {}, {}, {}, string, BkTableEmits>
9
+ BkButton: DefineComponent<{}>
10
+ BkDialog: DefineComponent<{}>
11
+ BkDrawer: DefineComponent<{}>
12
+ BkDropdown: DefineComponent<{}>
13
+ BkForm: DefineComponent<{}>
14
+ BkIcon: DefineComponent<{}>
15
+ BkTable: DefineComponent<{}>
20
16
  }
21
17
  }