@awes-io/ui 2.32.4 → 2.34.1
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/CHANGELOG.md +49 -0
- package/assets/css/components/_index.css +2 -0
- package/assets/css/components/tel.css +49 -0
- package/assets/css/components/text-field.css +3 -79
- package/components/1_atoms/AwInput.vue +23 -2
- package/components/3_organisms/AwIslandAvatar.vue +1 -1
- package/components/3_organisms/AwMoney.vue +3 -0
- package/components/3_organisms/AwTel.vue +307 -43
- package/components/_config.js +7 -1
- package/dist/css/aw-icons.css +168 -0
- package/dist/css/ui.css +1 -0
- package/dist/fonts/aw-icons.svg +159 -0
- package/dist/fonts/aw-icons.ttf +0 -0
- package/dist/fonts/aw-icons.woff +0 -0
- package/dist/fonts/aw-icons.woff2 +0 -0
- package/dist/js/ui.esm.js +20 -0
- package/dist/js/ui.min.js +20 -0
- package/dist/js/ui.ssr.js +24996 -0
- package/mixins/arrow-focus.js +65 -4
- package/mixins/text-field.js +61 -21
- package/nuxt/icons.css +168 -0
- package/package.json +6 -5
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "aw-icons";
|
|
3
|
+
src: url("/fonts/aw-icons.woff2?b289fd926b2ed5447880ea85815122b1") format("woff2"),
|
|
4
|
+
url("/fonts/aw-icons.woff?b289fd926b2ed5447880ea85815122b1") format("woff");
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.aw-icon {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
line-height: 1;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
vertical-align: middle;
|
|
12
|
+
text-align: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.aw-icon:before {
|
|
16
|
+
font-family: aw-icons !important;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal !important;
|
|
19
|
+
vertical-align: top;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.aw-icon-arrow-d:before {
|
|
23
|
+
content: "\f101";
|
|
24
|
+
}
|
|
25
|
+
.aw-icon-arrow-l:before {
|
|
26
|
+
content: "\f102";
|
|
27
|
+
}
|
|
28
|
+
.aw-icon-arrow-r:before {
|
|
29
|
+
content: "\f103";
|
|
30
|
+
}
|
|
31
|
+
.aw-icon-arrow-u:before {
|
|
32
|
+
content: "\f104";
|
|
33
|
+
}
|
|
34
|
+
.aw-icon-bold:before {
|
|
35
|
+
content: "\f105";
|
|
36
|
+
}
|
|
37
|
+
.aw-icon-briefcase:before {
|
|
38
|
+
content: "\f106";
|
|
39
|
+
}
|
|
40
|
+
.aw-icon-burger:before {
|
|
41
|
+
content: "\f107";
|
|
42
|
+
}
|
|
43
|
+
.aw-icon-check-circle:before {
|
|
44
|
+
content: "\f108";
|
|
45
|
+
}
|
|
46
|
+
.aw-icon-check-solid:before {
|
|
47
|
+
content: "\f109";
|
|
48
|
+
}
|
|
49
|
+
.aw-icon-check:before {
|
|
50
|
+
content: "\f10a";
|
|
51
|
+
}
|
|
52
|
+
.aw-icon-chevron-d:before {
|
|
53
|
+
content: "\f10b";
|
|
54
|
+
}
|
|
55
|
+
.aw-icon-chevron-l:before {
|
|
56
|
+
content: "\f10c";
|
|
57
|
+
}
|
|
58
|
+
.aw-icon-chevron-r:before {
|
|
59
|
+
content: "\f10d";
|
|
60
|
+
}
|
|
61
|
+
.aw-icon-chevron-u:before {
|
|
62
|
+
content: "\f10e";
|
|
63
|
+
}
|
|
64
|
+
.aw-icon-circle:before {
|
|
65
|
+
content: "\f10f";
|
|
66
|
+
}
|
|
67
|
+
.aw-icon-close-circle:before {
|
|
68
|
+
content: "\f110";
|
|
69
|
+
}
|
|
70
|
+
.aw-icon-close-solid:before {
|
|
71
|
+
content: "\f111";
|
|
72
|
+
}
|
|
73
|
+
.aw-icon-close:before {
|
|
74
|
+
content: "\f112";
|
|
75
|
+
}
|
|
76
|
+
.aw-icon-copy:before {
|
|
77
|
+
content: "\f113";
|
|
78
|
+
}
|
|
79
|
+
.aw-icon-drag:before {
|
|
80
|
+
content: "\f114";
|
|
81
|
+
}
|
|
82
|
+
.aw-icon-external:before {
|
|
83
|
+
content: "\f115";
|
|
84
|
+
}
|
|
85
|
+
.aw-icon-eye-no:before {
|
|
86
|
+
content: "\f116";
|
|
87
|
+
}
|
|
88
|
+
.aw-icon-eye:before {
|
|
89
|
+
content: "\f117";
|
|
90
|
+
}
|
|
91
|
+
.aw-icon-font-size:before {
|
|
92
|
+
content: "\f118";
|
|
93
|
+
}
|
|
94
|
+
.aw-icon-graph:before {
|
|
95
|
+
content: "\f119";
|
|
96
|
+
}
|
|
97
|
+
.aw-icon-intelligence:before {
|
|
98
|
+
content: "\f11a";
|
|
99
|
+
}
|
|
100
|
+
.aw-icon-italic:before {
|
|
101
|
+
content: "\f11b";
|
|
102
|
+
}
|
|
103
|
+
.aw-icon-loader:before {
|
|
104
|
+
content: "\f11c";
|
|
105
|
+
}
|
|
106
|
+
.aw-icon-location:before {
|
|
107
|
+
content: "\f11d";
|
|
108
|
+
}
|
|
109
|
+
.aw-icon-minus:before {
|
|
110
|
+
content: "\f11e";
|
|
111
|
+
}
|
|
112
|
+
.aw-icon-more-v:before {
|
|
113
|
+
content: "\f11f";
|
|
114
|
+
}
|
|
115
|
+
.aw-icon-more:before {
|
|
116
|
+
content: "\f120";
|
|
117
|
+
}
|
|
118
|
+
.aw-icon-plus-solid:before {
|
|
119
|
+
content: "\f121";
|
|
120
|
+
}
|
|
121
|
+
.aw-icon-plus:before {
|
|
122
|
+
content: "\f122";
|
|
123
|
+
}
|
|
124
|
+
.aw-icon-quote:before {
|
|
125
|
+
content: "\f123";
|
|
126
|
+
}
|
|
127
|
+
.aw-icon-schedule:before {
|
|
128
|
+
content: "\f124";
|
|
129
|
+
}
|
|
130
|
+
.aw-icon-search:before {
|
|
131
|
+
content: "\f125";
|
|
132
|
+
}
|
|
133
|
+
.aw-icon-settings:before {
|
|
134
|
+
content: "\f126";
|
|
135
|
+
}
|
|
136
|
+
.aw-icon-speaker:before {
|
|
137
|
+
content: "\f127";
|
|
138
|
+
}
|
|
139
|
+
.aw-icon-speed:before {
|
|
140
|
+
content: "\f128";
|
|
141
|
+
}
|
|
142
|
+
.aw-icon-storage:before {
|
|
143
|
+
content: "\f129";
|
|
144
|
+
}
|
|
145
|
+
.aw-icon-triangle-d:before {
|
|
146
|
+
content: "\f12a";
|
|
147
|
+
}
|
|
148
|
+
.aw-icon-triangle-l:before {
|
|
149
|
+
content: "\f12b";
|
|
150
|
+
}
|
|
151
|
+
.aw-icon-triangle-r:before {
|
|
152
|
+
content: "\f12c";
|
|
153
|
+
}
|
|
154
|
+
.aw-icon-triangle-solid-r:before {
|
|
155
|
+
content: "\f12d";
|
|
156
|
+
}
|
|
157
|
+
.aw-icon-triangle-u:before {
|
|
158
|
+
content: "\f12e";
|
|
159
|
+
}
|
|
160
|
+
.aw-icon-upload:before {
|
|
161
|
+
content: "\f12f";
|
|
162
|
+
}
|
|
163
|
+
.aw-icon-user-solid:before {
|
|
164
|
+
content: "\f130";
|
|
165
|
+
}
|
|
166
|
+
.aw-icon-user:before {
|
|
167
|
+
content: "\f131";
|
|
168
|
+
}
|