vue-tel-input 6.0.3 → 6.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.
- package/package.json +2 -2
- package/dist/css/component.css +0 -98
- package/dist/css/sprite.css +0 -1071
- package/dist/vue-tel-input.cjs.js +0 -9
- package/dist/vue-tel-input.css +0 -1
- package/dist/vue-tel-input.es.js +0 -4205
- package/dist/vue-tel-input.iife.js +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-tel-input",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"description": "International Telephone Input with Vue",
|
|
5
5
|
"author": "Steven Dao <iamstevendao@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"docs:serve": "vitepress serve docs"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"libphonenumber-js": "^1.10.
|
|
27
|
+
"libphonenumber-js": "^1.10.12"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"vue": "^3.2.37"
|
package/dist/css/component.css
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
.vue-tel-input {
|
|
2
|
-
border-radius: 3px;
|
|
3
|
-
display: flex;
|
|
4
|
-
border: 1px solid #bbb;
|
|
5
|
-
text-align: left;
|
|
6
|
-
}
|
|
7
|
-
.vue-tel-input.disabled .selection,
|
|
8
|
-
.vue-tel-input.disabled .dropdown,
|
|
9
|
-
.vue-tel-input.disabled input {
|
|
10
|
-
cursor: no-drop;
|
|
11
|
-
}
|
|
12
|
-
.vue-tel-input:focus-within {
|
|
13
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
|
14
|
-
border-color: #66afe9;
|
|
15
|
-
}
|
|
16
|
-
.vti__dropdown {
|
|
17
|
-
display: flex;
|
|
18
|
-
flex-direction: column;
|
|
19
|
-
align-content: center;
|
|
20
|
-
justify-content: center;
|
|
21
|
-
position: relative;
|
|
22
|
-
padding: 7px;
|
|
23
|
-
cursor: pointer;
|
|
24
|
-
}
|
|
25
|
-
.vti__dropdown.show {
|
|
26
|
-
max-height: 300px;
|
|
27
|
-
overflow: scroll;
|
|
28
|
-
}
|
|
29
|
-
.vti__dropdown.open {
|
|
30
|
-
background-color: #f3f3f3;
|
|
31
|
-
}
|
|
32
|
-
.vti__dropdown.disabled {
|
|
33
|
-
cursor: no-drop;
|
|
34
|
-
outline: none;
|
|
35
|
-
background-color: #f3f3f3;
|
|
36
|
-
}
|
|
37
|
-
.vti__dropdown:hover {
|
|
38
|
-
background-color: #f3f3f3;
|
|
39
|
-
}
|
|
40
|
-
.vti__selection {
|
|
41
|
-
font-size: 0.8em;
|
|
42
|
-
display: flex;
|
|
43
|
-
align-items: center;
|
|
44
|
-
}
|
|
45
|
-
.vti__selection .vti__country-code {
|
|
46
|
-
color: #666;
|
|
47
|
-
}
|
|
48
|
-
.vti__flag {
|
|
49
|
-
margin-right: 5px;
|
|
50
|
-
margin-left: 5px;
|
|
51
|
-
}
|
|
52
|
-
.vti__dropdown-list {
|
|
53
|
-
z-index: 1;
|
|
54
|
-
padding: 0;
|
|
55
|
-
margin: 0;
|
|
56
|
-
text-align: left;
|
|
57
|
-
list-style: none;
|
|
58
|
-
max-height: 200px;
|
|
59
|
-
overflow-y: scroll;
|
|
60
|
-
position: absolute;
|
|
61
|
-
left: -1px;
|
|
62
|
-
background-color: #fff;
|
|
63
|
-
border: 1px solid #ccc;
|
|
64
|
-
width: 390px;
|
|
65
|
-
}
|
|
66
|
-
.vti__dropdown-list.below {
|
|
67
|
-
top: 33px;
|
|
68
|
-
}
|
|
69
|
-
.vti__dropdown-list.above {
|
|
70
|
-
top: auto;
|
|
71
|
-
bottom: 100%;
|
|
72
|
-
}
|
|
73
|
-
.vti__dropdown-arrow {
|
|
74
|
-
transform: scaleY(0.5);
|
|
75
|
-
display: inline-block;
|
|
76
|
-
color: #666;
|
|
77
|
-
}
|
|
78
|
-
.vti__dropdown-item {
|
|
79
|
-
cursor: pointer;
|
|
80
|
-
padding: 4px 15px;
|
|
81
|
-
}
|
|
82
|
-
.vti__dropdown-item.highlighted {
|
|
83
|
-
background-color: #f3f3f3;
|
|
84
|
-
}
|
|
85
|
-
.vti__dropdown-item.last-preferred {
|
|
86
|
-
border-bottom: 1px solid #cacaca;
|
|
87
|
-
}
|
|
88
|
-
.vti__dropdown-item .vti__flag {
|
|
89
|
-
display: inline-block;
|
|
90
|
-
margin-right: 5px;
|
|
91
|
-
}
|
|
92
|
-
.vti__input {
|
|
93
|
-
border: none;
|
|
94
|
-
border-radius: 0 2px 2px 0;
|
|
95
|
-
width: 100%;
|
|
96
|
-
outline: none;
|
|
97
|
-
padding-left: 7px;
|
|
98
|
-
}
|