ybd-ui 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +16 -0
  2. package/package.json +2 -2
@@ -0,0 +1,16 @@
1
+ import { App, Component } from 'vue'
2
+
3
+ // Declare the component
4
+ declare const ybButton: Component
5
+
6
+ // Declare the install function
7
+ declare const install: (app: App) => void
8
+
9
+ // Declare the default export
10
+ declare const _default: {
11
+ install: typeof install
12
+ ybButton: typeof ybButton
13
+ }
14
+
15
+ export default _default
16
+ export { ybButton }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ybd-ui",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "description": "A Vue 3 component library built with Vite",
6
6
  "main": "./dist/ybd-ui.umd.js",
@@ -36,4 +36,4 @@
36
36
  "vite": "^5.0.0",
37
37
  "vue-tsc": "^3.2.1"
38
38
  }
39
- }
39
+ }