hw-cus-ui 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/README.md CHANGED
@@ -29,7 +29,7 @@ app.mount('#app')
29
29
  ```ts
30
30
  import { createApp } from 'vue'
31
31
  import App from './App.vue'
32
- import { HwBtn } from '@yourname/hw-cus-ui'
32
+ import { HwBtn } from 'hw-cus-ui'
33
33
  import '@yourname/hw-cus-ui/dist/hw-cus-ui.css'
34
34
 
35
35
  const app = createApp(App)
@@ -67,4 +67,4 @@ npm run build
67
67
 
68
68
  ## License
69
69
 
70
- MIT
70
+ MIT
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,6 @@
1
+ type __VLS_Props = {
2
+ msg: string;
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
@@ -0,0 +1 @@
1
+ import './style.css';
@@ -0,0 +1,3 @@
1
+ import hwCusUi from './components';
2
+ export default hwCusUi;
3
+ export * from './components';
package/package.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "hw-cus-ui",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "type": "module",
5
- "main": "./dist/hw-cus-ui.es.js",
5
+ "main": "./dist/hw-cus-ui.umd.cjs",
6
+ "module": "./dist/hw-cus-ui.es.cjs",
7
+ "types": "./dist/types/index.d.ts",
6
8
  "files": [
7
9
  "dist"
8
10
  ],
File without changes
File without changes