luyoumin-ui 0.0.29 → 0.0.30

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 (44) hide show
  1. package/.vscode/extensions.json +3 -0
  2. package/README.md +0 -4
  3. package/dist/components/HelloWorld.vue.d.ts +12 -0
  4. package/dist/index.d.ts +5 -12
  5. package/dist/luyoumin-ui.es.js +20 -3130
  6. package/dist/luyoumin-ui.umd.js +1 -8
  7. package/index.html +13 -0
  8. package/package.json +6 -29
  9. package/public/vite.svg +1 -0
  10. package/src/App.vue +30 -0
  11. package/src/assets/vue.svg +1 -0
  12. package/src/components/HelloWorld.vue +19 -0
  13. package/src/index.ts +9 -0
  14. package/src/main.ts +5 -0
  15. package/src/style.css +79 -0
  16. package/src/vite-env.d.ts +1 -0
  17. package/tsconfig.json +21 -0
  18. package/tsconfig.node.json +11 -0
  19. package/vite.config.ts +27 -0
  20. package/dist/components/JsonExportExcel.vue.d.ts +0 -32
  21. package/dist/components/LymButton.vue.d.ts +0 -162
  22. package/dist/components/LymCheckBox.vue.d.ts +0 -95
  23. package/dist/components/LymCheckBoxGroup.vue.d.ts +0 -62
  24. package/dist/components/LymColorPicker.vue.d.ts +0 -62
  25. package/dist/components/LymDialog.vue.d.ts +0 -140
  26. package/dist/components/LymDrawer.vue.d.ts +0 -133
  27. package/dist/components/LymInput.vue.d.ts +0 -188
  28. package/dist/components/LymLink.vue.d.ts +0 -106
  29. package/dist/components/cascader/LymCascader.vue.d.ts +0 -18
  30. package/dist/components/generic-img/GenericImg.vue.d.ts +0 -104
  31. package/dist/components/generic-img/SvgIcons.vue.d.ts +0 -2
  32. package/dist/style.css +0 -1
  33. package/dist/utils/array_utils.d.ts +0 -0
  34. package/dist/utils/canvas_utils.d.ts +0 -22
  35. package/dist/utils/color_utils.d.ts +0 -21
  36. package/dist/utils/date_utils.d.ts +0 -19
  37. package/dist/utils/dom_utils.d.ts +0 -32
  38. package/dist/utils/event_utils.d.ts +0 -6
  39. package/dist/utils/file_utils.d.ts +0 -1
  40. package/dist/utils/img_deal.d.ts +0 -7
  41. package/dist/utils/number_utils.d.ts +0 -0
  42. package/dist/utils/object_utils.d.ts +0 -0
  43. package/dist/utils/string_utils.d.ts +0 -27
  44. package/dist/utils/url_utils.d.ts +0 -30
@@ -0,0 +1,3 @@
1
+ {
2
+ "recommendations": ["Vue.volar"]
3
+ }
package/README.md CHANGED
@@ -7,7 +7,3 @@ This template should help get you started developing with Vue 3 and TypeScript i
7
7
  - [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
8
8
 
9
9
  - Use [vue-tsc](https://github.com/vuejs/language-tools/tree/master/packages/tsc) for performing the same type checking from the command line, or for generating d.ts files for SFCs.
10
-
11
- npm 发布流程:
12
- 1、npm login (输入账号密码和邮箱验证码登录,账号:luyoumin,密码:luyoumin19936871)
13
- 2、npm publish (每次上传需要更改版本号)
@@ -0,0 +1,12 @@
1
+ declare const _default: import('vue').DefineComponent<{
2
+ msg: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ }, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
7
+ msg: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ }>>, {}, {}>;
12
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -1,15 +1,8 @@
1
1
  import { App } from 'vue';
2
- import { default as LymButton } from './components/LymButton.vue';
3
- import { default as LymCheckBox } from './components/LymCheckBox.vue';
4
- import { default as LymCheckBoxGroup } from './components/LymCheckBoxGroup.vue';
5
- import { default as LymColorPicker } from './components/LymColorPicker.vue';
6
- import { default as LymDialog } from './components/LymDialog.vue';
7
- import { default as LymDrawer } from './components/LymDrawer.vue';
8
- import { default as LymInput } from './components/LymInput.vue';
9
- import { default as LymLink } from './components/LymLink.vue';
2
+ import { default as HelloWorld } from './components/HelloWorld.vue';
10
3
 
11
- declare const install: {
12
- install(app: App): void;
4
+ export { HelloWorld };
5
+ declare const _default: {
6
+ install: (app: App<any>) => void;
13
7
  };
14
- export { LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink };
15
- export default install;
8
+ export default _default;