@awes-io/ui 2.120.0 → 2.121.0
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
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.121.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.120.0...@awes-io/ui@2.121.0) (2024-12-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix lint in page header style ([bf9c866](https://github.com/awes-io/client/commit/bf9c866a37e01398812f94c19deb9f6e6f20272a))
|
|
12
|
+
* fix style in dropdown ([83e3bd7](https://github.com/awes-io/client/commit/83e3bd74b46c0dfcffe6b22d9bd7fd3532810985))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* change style for dropdown ([44cda8d](https://github.com/awes-io/client/commit/44cda8dc492630af310f0fdf25a6c49965931222))
|
|
18
|
+
* change style in header and mob menu ([3d4ae6f](https://github.com/awes-io/client/commit/3d4ae6f8ac3b988c28b6bb934910ad91f9b8ceea))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
# [2.120.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.119.0...@awes-io/ui@2.120.0) (2024-12-06)
|
|
7
25
|
|
|
8
26
|
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&--mobile {
|
|
23
|
-
padding: calc(env(safe-area-inset-top, 0px) + 0.5rem)
|
|
23
|
+
padding: calc(env(safe-area-inset-top, 0px) + 0.5rem) 1rem
|
|
24
|
+
calc(env(safe-area-inset-bottom, 0px) + 1rem);
|
|
24
25
|
|
|
25
26
|
display: flex;
|
|
26
27
|
flex-direction: column;
|
|
@@ -56,9 +57,9 @@
|
|
|
56
57
|
border-radius: 0.625rem 0.625rem 0 0;
|
|
57
58
|
|
|
58
59
|
& + .aw-dropdown__content--mobile {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
border-top-left-radius: 0;
|
|
61
|
+
border-top-right-radius: 0;
|
|
62
|
+
border-top: 1px solid var(--c-mono-900);
|
|
62
63
|
}
|
|
63
64
|
}
|
|
64
65
|
|
|
@@ -96,7 +97,7 @@
|
|
|
96
97
|
|
|
97
98
|
&__close {
|
|
98
99
|
width: 100%;
|
|
99
|
-
margin-top:
|
|
100
|
+
margin-top: 1rem;
|
|
100
101
|
padding-top: 0;
|
|
101
102
|
padding-bottom: 0;
|
|
102
103
|
flex-shrink: 0;
|
|
@@ -111,17 +112,17 @@
|
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
.caret {
|
|
114
|
-
transition: 200ms transform ease-out
|
|
115
|
+
transition: 200ms transform ease-out;
|
|
115
116
|
}
|
|
116
117
|
|
|
117
118
|
.rotate-90 {
|
|
118
|
-
transform: rotate(-90deg)
|
|
119
|
+
transform: rotate(-90deg);
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
.rotate-180 {
|
|
122
|
-
transform: rotate(-180deg)
|
|
123
|
+
transform: rotate(-180deg);
|
|
123
124
|
}
|
|
124
125
|
|
|
125
126
|
.transition-200 {
|
|
126
|
-
transition: 200ms transform
|
|
127
|
+
transition: 200ms transform;
|
|
127
128
|
}
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
|
|
56
56
|
margin: 0;
|
|
57
57
|
|
|
58
|
-
font-size:
|
|
59
|
-
line-height: 1.
|
|
58
|
+
font-size: 0.875rem;
|
|
59
|
+
line-height: 1.25rem;
|
|
60
60
|
font-weight: 700;
|
|
61
61
|
text-align: center;
|
|
62
62
|
overflow: hidden;
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
|
|
115
115
|
&__title {
|
|
116
116
|
font-size: 1.25rem;
|
|
117
|
-
line-height: 1.
|
|
117
|
+
line-height: 1.4285;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
&--container {
|
package/nuxt/pages/more.vue
CHANGED
|
@@ -41,7 +41,13 @@
|
|
|
41
41
|
size="112"
|
|
42
42
|
/>
|
|
43
43
|
|
|
44
|
-
<AwAvatar
|
|
44
|
+
<AwAvatar
|
|
45
|
+
data-dark="false"
|
|
46
|
+
v-else
|
|
47
|
+
:src="user.src"
|
|
48
|
+
:name="user.name"
|
|
49
|
+
size="112"
|
|
50
|
+
/>
|
|
45
51
|
|
|
46
52
|
<AwHeadline tag="span" class="aw-more__profile-name mt-2">
|
|
47
53
|
{{ user.name }}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.121.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"rollup-plugin-visualizer": "^2.6.0",
|
|
115
115
|
"rollup-plugin-vue": "^5.0.1"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "8c460613dafa69173974783cdcd162510aefb9fe"
|
|
118
118
|
}
|