blue-react 8.4.2 → 8.4.5
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/ActionMenu.js +10 -1
- package/dist/style.css +7 -2
- package/dist/style.min.css +4 -4
- package/dist/style.scss +1 -1
- package/dist/styles/_variables.scss +9 -1
- package/package.json +3 -2
package/dist/style.scss
CHANGED
|
@@ -66,7 +66,11 @@ $sidebar-open-bg: darken($sidebar-bg, 30%) !default;
|
|
|
66
66
|
$sidebar-deep-bg: darken($sidebar-bg, 4%) !default;
|
|
67
67
|
|
|
68
68
|
// Text color of sidebar.
|
|
69
|
-
$sidebar-color:
|
|
69
|
+
$blue-sidebar-color-h: 0 !default;
|
|
70
|
+
$blue-sidebar-color-s: 100% !default;
|
|
71
|
+
$blue-sidebar-color-l: 100% !default;
|
|
72
|
+
$blue-sidebar-color: hsl($blue-sidebar-color-h, $blue-sidebar-color-s, $blue-sidebar-color-l) !default;
|
|
73
|
+
$sidebar-color: $blue-sidebar-color !default;
|
|
70
74
|
|
|
71
75
|
// Color of indicator for active sidebar item.
|
|
72
76
|
$sidebar-indicator-color: $sidebar-color !default;
|
|
@@ -96,5 +100,9 @@ $scrollbar-size: 10px;
|
|
|
96
100
|
--theme: #{$theme};
|
|
97
101
|
|
|
98
102
|
--blue-sidebar-width: #{$bla-sidebar-width};
|
|
103
|
+
--blue-sidebar-color-h: #{$blue-sidebar-color-h};
|
|
104
|
+
--blue-sidebar-color-s: #{$blue-sidebar-color-s};
|
|
105
|
+
--blue-sidebar-color-l: #{$blue-sidebar-color-l};
|
|
106
|
+
--blue-sidebar-color: #{$blue-sidebar-color};
|
|
99
107
|
--blue-theme: #{$theme};
|
|
100
108
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-react",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.5",
|
|
4
4
|
"description": "Blue React Components",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@popperjs/core": "^2.10.2",
|
|
34
|
-
"bootstrap": "
|
|
34
|
+
"bootstrap": "5.1.2",
|
|
35
35
|
"clsx": "^1.1.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@types/react-router-dom": "^5.3.3",
|
|
54
54
|
"@types/react-syntax-highlighter": "^13.5.0",
|
|
55
55
|
"autoprefixer": "^10.3.6",
|
|
56
|
+
"blue-web-components": "github:bruegmann/blue-web-components",
|
|
56
57
|
"gh-pages": "^3.1.0",
|
|
57
58
|
"lint-staged": "^11.1.2",
|
|
58
59
|
"node-sass": "^6.0.1",
|