blue-react 8.6.1 → 8.6.2
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/dist/components/Layout.js +10 -3
- package/dist/components/MenuItem.js +2 -1
- package/dist/style.css +133 -88
- package/dist/style.min.css +8 -6
- package/dist/style.scss +1 -1
- package/dist/styles/_action-menu.scss +10 -0
- package/dist/styles/_search.scss +1 -0
- package/dist/styles/_variables.scss +1 -0
- package/dist/styles/mixins/_sidebar.scss +13 -4
- package/dist/types/components/MenuItem.d.ts +1 -0
- package/package.json +3 -3
package/dist/style.scss
CHANGED
|
@@ -56,6 +56,16 @@
|
|
|
56
56
|
width: auto;
|
|
57
57
|
margin-top: 0;
|
|
58
58
|
margin-bottom: 0;
|
|
59
|
+
|
|
60
|
+
&.active::after {
|
|
61
|
+
top: initial;
|
|
62
|
+
bottom: 0.125rem;
|
|
63
|
+
left: 0.625rem;
|
|
64
|
+
right: 0.625rem;
|
|
65
|
+
width: auto;
|
|
66
|
+
height: 0.25rem;
|
|
67
|
+
animation: sidebar-menu-item-indicator-in-from-below 0.2s ease-in-out;
|
|
68
|
+
}
|
|
59
69
|
}
|
|
60
70
|
|
|
61
71
|
.blue-menu-item-dropdown-toggle .blue-menu-item-label {
|
package/dist/styles/_search.scss
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/* search */
|
|
48
|
-
.blue-search {
|
|
48
|
+
.blue-search:not(.blue-search-body) {
|
|
49
49
|
background-color: $sidebar-search-bg;
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -107,9 +107,9 @@
|
|
|
107
107
|
bottom: 0.625rem;
|
|
108
108
|
left: 0.125rem;
|
|
109
109
|
width: 0.25rem;
|
|
110
|
-
background-color:
|
|
110
|
+
background-color: var(--blue-menu-item-indicator-bg);
|
|
111
111
|
border-radius: 1rem;
|
|
112
|
-
animation: sidebar-menu-item-indicator-in 0.2s ease-in-out;
|
|
112
|
+
animation: sidebar-menu-item-indicator-in-from-side 0.2s ease-in-out;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
& > * + .blue-menu-item-label {
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
@keyframes sidebar-menu-item-indicator-in {
|
|
157
|
+
@keyframes sidebar-menu-item-indicator-in-from-side {
|
|
158
158
|
from {
|
|
159
159
|
transform: translateX(-100%);
|
|
160
160
|
}
|
|
@@ -162,3 +162,12 @@
|
|
|
162
162
|
transform: translateX(1);
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
|
+
|
|
166
|
+
@keyframes sidebar-menu-item-indicator-in-from-below {
|
|
167
|
+
from {
|
|
168
|
+
transform: translateY(100%);
|
|
169
|
+
}
|
|
170
|
+
to {
|
|
171
|
+
transform: translateY(1);
|
|
172
|
+
}
|
|
173
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-react",
|
|
3
|
-
"version": "8.6.
|
|
3
|
+
"version": "8.6.2",
|
|
4
4
|
"description": "Blue React Components",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@popperjs/core": "^2.11.5",
|
|
35
|
-
"bootstrap": "~5.2.
|
|
35
|
+
"bootstrap": "~5.2.2",
|
|
36
36
|
"clsx": "^1.1.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"postcss-minify": "^1.1.0",
|
|
64
64
|
"prettier": "2.4.1",
|
|
65
65
|
"react": "^18.1.0",
|
|
66
|
-
"react-bootstrap-icons": "^1.
|
|
66
|
+
"react-bootstrap-icons": "^1.9.1",
|
|
67
67
|
"react-docgen": "^5.4.0",
|
|
68
68
|
"react-dom": "^18.1.0",
|
|
69
69
|
"react-markdown": "^8.0.3",
|