@avakhula/ui 0.0.90 → 0.0.92

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avakhula/ui",
3
- "version": "0.0.90",
3
+ "version": "0.0.92",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
package/src/App.vue CHANGED
@@ -1,136 +1,20 @@
1
1
  <template>
2
- <ib-select :options="testData1" @input="test"></ib-select>
2
+ <ib-button @mouseenter="test" @mouseleave="test1"> test </ib-button>
3
3
  </template>
4
4
 
5
5
  <script>
6
- import IbSelect from "./components/TreeSelect/Select.vue";
6
+ import IbButton from "./components/Button/Button.vue";
7
7
  export default {
8
- data() {
9
- return {
10
- testData1: [
11
- {
12
- id: "1",
13
- title: "A Education",
14
- is_category: true,
15
- initiallyVisible: true,
16
- visible: true,
17
- isDisabled: false,
18
- checked: true,
19
- isChildrenVisible: true,
20
- },
21
- {
22
- id: "2",
23
- title: "Education 2",
24
- is_category: true,
25
- initiallyVisible: true,
26
- visible: true,
27
- isDisabled: false,
28
- checked: true,
29
- isChildrenVisible: true,
30
- },
31
- {
32
- id: "3",
33
- title: "Education 3",
34
- is_category: true,
35
- initiallyVisible: true,
36
- visible: true,
37
- isDisabled: false,
38
- checked: false,
39
- isChildrenVisible: true,
40
- },
41
- {
42
- id: "4",
43
- title: "Education 4",
44
- is_category: true,
45
- initiallyVisible: true,
46
- visible: true,
47
- isDisabled: false,
48
- checked: false,
49
- isChildrenVisible: true,
50
- },
51
- {
52
- id: "5",
53
- title: "Education 5",
54
- is_category: true,
55
- initiallyVisible: true,
56
- visible: true,
57
- isDisabled: false,
58
- checked: false,
59
- isChildrenVisible: true,
60
- },
61
-
62
- {
63
- id: "6",
64
- title: "Education 6",
65
- is_category: true,
66
- initiallyVisible: true,
67
- visible: true,
68
- isDisabled: false,
69
- checked: false,
70
- isChildrenVisible: true,
71
- },
72
-
73
- {
74
- id: "7",
75
- title: "Education 7",
76
- is_category: true,
77
- initiallyVisible: true,
78
- visible: true,
79
- isDisabled: false,
80
- checked: false,
81
- isChildrenVisible: true,
82
- },
83
-
84
- {
85
- id: "8",
86
- title: "Education 8",
87
- is_category: true,
88
- initiallyVisible: true,
89
- visible: true,
90
- isDisabled: false,
91
- checked: false,
92
- isChildrenVisible: true,
93
- },
94
- {
95
- id: "9",
96
- title: "Education 9",
97
- is_category: true,
98
- initiallyVisible: true,
99
- visible: true,
100
- isDisabled: false,
101
- checked: false,
102
- isChildrenVisible: true,
103
- },
104
- {
105
- id: "10",
106
- title: "Education 10",
107
- is_category: true,
108
- initiallyVisible: true,
109
- visible: true,
110
- isDisabled: false,
111
- checked: false,
112
- isChildrenVisible: true,
113
- },
114
- {
115
- id: "11",
116
- title: "Education 11",
117
- is_category: true,
118
- initiallyVisible: true,
119
- visible: true,
120
- isDisabled: false,
121
- checked: false,
122
- isChildrenVisible: true,
123
- },
124
- ],
125
- };
126
- },
127
8
  methods: {
128
- test(a) {
129
- console.log(a, "change select")
9
+ test() {
10
+ console.log('test')
11
+ },
12
+ test1() {
13
+ console.log('test')
130
14
  }
131
15
  },
132
16
  components: {
133
- IbSelect,
17
+ IbButton,
134
18
  },
135
19
  };
136
20
  </script>
@@ -2,6 +2,8 @@
2
2
  <component
3
3
  :is="href.length ? 'a' : 'button'"
4
4
  @click="onClick($event)"
5
+ @mouseenter="onMouseenter"
6
+ @mouseleave="onMouseleave"
5
7
  v-bind="attrs"
6
8
  >
7
9
  <slot name="icon"></slot>
@@ -83,6 +85,12 @@ export default {
83
85
  },
84
86
  },
85
87
  methods: {
88
+ onMouseenter(e) {
89
+ this.$emit("mouseenter", e);
90
+ },
91
+ onMouseleave(e) {
92
+ this.$emit("mouseleave", e);
93
+ },
86
94
  onClick(e) {
87
95
  if (this.preventDefault || this.isDisabled) {
88
96
  e.preventDefault();