@awes-io/ui 2.79.0 → 2.80.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 +13 -0
- package/assets/css/components/button-nav.css +0 -1
- package/assets/css/components/dropdown-button.css +2 -2
- package/assets/css/components/layout.css +3 -3
- package/assets/css/components/tooltip.css +3 -3
- package/assets/js/styles.js +19 -19
- package/components/5_layouts/_AwMenuItemIcon.vue +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.80.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.79.0...@awes-io/ui@2.80.0) (2023-11-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* change dark colors ([778849d](https://github.com/awes-io/client/commit/778849d643154a47a587126c09647f9459dcc492))
|
|
12
|
+
* change style for tooltip and menu item ([7d37a3f](https://github.com/awes-io/client/commit/7d37a3f7b98c02b735a0bceb394bb586a5b4ae96))
|
|
13
|
+
* change style in layot, dd btn and button nav ([c00a414](https://github.com/awes-io/client/commit/c00a414cb403de539e2a69b3e01b3449467edec7))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
# [2.79.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.78.0...@awes-io/ui@2.79.0) (2023-11-03)
|
|
7
20
|
|
|
8
21
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
bottom: 0;
|
|
17
17
|
|
|
18
18
|
&.aw-layout-menu--no-submenu {
|
|
19
|
-
max-width:
|
|
19
|
+
max-width: 5rem;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
& ~ * {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
&.aw-layout-menu--no-submenu ~ * {
|
|
28
|
-
max-width: calc(100% -
|
|
29
|
-
margin-left:
|
|
28
|
+
max-width: calc(100% - 5rem);
|
|
29
|
+
margin-left: 5rem;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
.aw-tooltip {
|
|
2
|
-
padding:
|
|
2
|
+
padding: 0.5rem;
|
|
3
3
|
font-size: theme('fontSize.xs', 0.75rem);
|
|
4
|
-
line-height:
|
|
5
|
-
border-radius: 0.
|
|
4
|
+
line-height: 0.875rem;
|
|
5
|
+
border-radius: 0.3125rem;
|
|
6
6
|
background-color: var(--c-mono-200);
|
|
7
7
|
color: var(--c-surface);
|
|
8
8
|
display: none;
|
package/assets/js/styles.js
CHANGED
|
@@ -27,17 +27,17 @@ export const CUSTOM_COLORS_BG_LIGHT = {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export const CUSTOM_COLORS_BG_DARK = {
|
|
30
|
-
red: '#
|
|
31
|
-
peach: '#
|
|
32
|
-
yellow: '#
|
|
33
|
-
magenta: '#
|
|
30
|
+
red: '#5F2A26',
|
|
31
|
+
peach: '#4C2113',
|
|
32
|
+
yellow: '#4C3200',
|
|
33
|
+
magenta: '#490120',
|
|
34
34
|
purple: '#271147',
|
|
35
|
-
'light-blue': '#
|
|
36
|
-
blue: '#
|
|
37
|
-
green: '#
|
|
38
|
-
lime: '#
|
|
35
|
+
'light-blue': '#044964',
|
|
36
|
+
blue: '#242C4A',
|
|
37
|
+
green: '#114907',
|
|
38
|
+
lime: '#313900',
|
|
39
39
|
grey: '#060709',
|
|
40
|
-
'light-grey': '#
|
|
40
|
+
'light-grey': '#434447'
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
export default {
|
|
@@ -116,16 +116,16 @@ export default {
|
|
|
116
116
|
|
|
117
117
|
'mono-0': '#fff',
|
|
118
118
|
'mono-50': '#f3f5f7',
|
|
119
|
-
'mono-100': '#
|
|
120
|
-
'mono-200': '#
|
|
121
|
-
'mono-300': '#
|
|
122
|
-
'mono-400': '#
|
|
123
|
-
'mono-500': '#
|
|
124
|
-
'mono-600': '#
|
|
125
|
-
'mono-700': '#
|
|
126
|
-
'mono-800': '#
|
|
127
|
-
'mono-900': '#
|
|
128
|
-
'mono-1000': '#
|
|
119
|
+
'mono-100': '#EAEAEB',
|
|
120
|
+
'mono-200': '#D5D5D6',
|
|
121
|
+
'mono-300': '#C0C1C2',
|
|
122
|
+
'mono-400': '#ABACAD',
|
|
123
|
+
'mono-500': '#979799',
|
|
124
|
+
'mono-600': '#828285',
|
|
125
|
+
'mono-700': '#6D6D70',
|
|
126
|
+
'mono-800': '#46474A',
|
|
127
|
+
'mono-900': '#434447',
|
|
128
|
+
'mono-1000': '#2E2F33',
|
|
129
129
|
|
|
130
130
|
...CUSTOM_COLORS_BG_DARK
|
|
131
131
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.80.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"rollup-plugin-visualizer": "^2.6.0",
|
|
114
114
|
"rollup-plugin-vue": "^5.0.1"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "48246faf5d78f3c6474d2fe140d68676f66efae0"
|
|
117
117
|
}
|