luyoumin-ui 0.0.53 → 0.0.54

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/global.d.ts CHANGED
@@ -1,5 +1,18 @@
1
1
  export {}
2
2
 
3
+ // import GenericImg from './components/generic-img/GenericImg.vue';
4
+ // import LymButton from './components/LymButton.vue';
5
+ // import LymCheckBox from './components/LymCheckBox.vue';
6
+ // import LymCheckBoxGroup from './components/LymCheckBoxGroup.vue';
7
+ // import LymColorPicker from './components/LymColorPicker.vue';
8
+ // import LymDialog from './components/LymDialog.vue';
9
+ // import LymDrawer from './components/LymDrawer.vue';
10
+ // import LymInput from './components/LymInput.vue';
11
+ // import LymLink from './components/LymLink.vue';
12
+ // import LymEcharts from './components/echarts/LymEcharts.vue';
13
+ // import LymCountTo from './components/LymCountTo.vue';
14
+ // import LymSelect from './components/LymSelect.vue';
15
+ // import LymCascader from './components/cascader/LymCascader.vue';
3
16
  import { GenericImg, LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, LymEcharts, LymCountTo, LymSelect, LymCascader } from './index'
4
17
 
5
18
  // 自动注册全局组件虽然很方便,但在使用时缺少了ts类型提示,下面介绍一下为全局组件添加类型提示
@@ -19,4 +32,29 @@ declare module 'vue' {
19
32
  LymSelect: typeof LymSelect
20
33
  LymCascader: typeof LymCascader
21
34
  }
22
- }
35
+ }
36
+
37
+
38
+ // 打包后插入dist目录的global.d.ts文件内容
39
+ // export {}
40
+
41
+ // import { GenericImg, LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, LymEcharts, LymCountTo, LymSelect, LymCascader } from './index'
42
+
43
+ // // 自动注册全局组件虽然很方便,但在使用时缺少了ts类型提示,下面介绍一下为全局组件添加类型提示
44
+ // declare module 'vue' {
45
+ // export interface GlobalComponents {
46
+ // GenericImg: typeof GenericImg
47
+ // LymButton: typeof LymButton
48
+ // LymCheckBox: typeof LymCheckBox
49
+ // LymCheckBoxGroup: typeof LymCheckBoxGroup
50
+ // LymColorPicker: typeof LymColorPicker
51
+ // LymDialog: typeof LymDialog
52
+ // LymDrawer: typeof LymDrawer
53
+ // LymInput: typeof LymInput
54
+ // LymLink: typeof LymLink
55
+ // LymEcharts: typeof LymEcharts
56
+ // LymCountTo: typeof LymCountTo
57
+ // LymSelect: typeof LymSelect
58
+ // LymCascader: typeof LymCascader
59
+ // }
60
+ // }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "luyoumin-ui",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "description": "Ui component library based on Vue3",
5
5
  "author": "luyoumin",
6
6
  "license": "MIT",
package/src/global.d.ts CHANGED
@@ -1,18 +1,19 @@
1
1
  export {}
2
2
 
3
- import GenericImg from './components/generic-img/GenericImg.vue';
4
- import LymButton from './components/LymButton.vue';
5
- import LymCheckBox from './components/LymCheckBox.vue';
6
- import LymCheckBoxGroup from './components/LymCheckBoxGroup.vue';
7
- import LymColorPicker from './components/LymColorPicker.vue';
8
- import LymDialog from './components/LymDialog.vue';
9
- import LymDrawer from './components/LymDrawer.vue';
10
- import LymInput from './components/LymInput.vue';
11
- import LymLink from './components/LymLink.vue';
12
- import LymEcharts from './components/echarts/LymEcharts.vue';
13
- import LymCountTo from './components/LymCountTo.vue';
14
- import LymSelect from './components/LymSelect.vue';
15
- import LymCascader from './components/cascader/LymCascader.vue';
3
+ // import GenericImg from './components/generic-img/GenericImg.vue';
4
+ // import LymButton from './components/LymButton.vue';
5
+ // import LymCheckBox from './components/LymCheckBox.vue';
6
+ // import LymCheckBoxGroup from './components/LymCheckBoxGroup.vue';
7
+ // import LymColorPicker from './components/LymColorPicker.vue';
8
+ // import LymDialog from './components/LymDialog.vue';
9
+ // import LymDrawer from './components/LymDrawer.vue';
10
+ // import LymInput from './components/LymInput.vue';
11
+ // import LymLink from './components/LymLink.vue';
12
+ // import LymEcharts from './components/echarts/LymEcharts.vue';
13
+ // import LymCountTo from './components/LymCountTo.vue';
14
+ // import LymSelect from './components/LymSelect.vue';
15
+ // import LymCascader from './components/cascader/LymCascader.vue';
16
+ import { GenericImg, LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, LymEcharts, LymCountTo, LymSelect, LymCascader } from './index'
16
17
 
17
18
  // 自动注册全局组件虽然很方便,但在使用时缺少了ts类型提示,下面介绍一下为全局组件添加类型提示
18
19
  declare module 'vue' {