blue-react 8.5.0-beta.3 → 8.5.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/dist/style.css +2 -4
- package/dist/style.min.css +2 -2
- package/dist/style.scss +1 -1
- package/dist/styles/_variables.scss +5 -3
- package/package.json +2 -2
package/dist/style.scss
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
// Bootstrap
|
|
2
2
|
$primary: #007bff !default;
|
|
3
3
|
$success: #4bd763 !default;
|
|
4
4
|
$info: rgb(62, 158, 187) !default;
|
|
5
5
|
$warning: #f0ad4e !default;
|
|
6
6
|
$danger: #d9534f !default;
|
|
7
|
-
|
|
7
|
+
// Bootstrap ENDE
|
|
8
8
|
|
|
9
9
|
// Main color theme. E.g. used for background for body and sidebar.
|
|
10
10
|
$theme: $primary !default;
|
|
@@ -20,7 +20,9 @@ $theme-colors: map-merge(
|
|
|
20
20
|
$theme-colors
|
|
21
21
|
);
|
|
22
22
|
|
|
23
|
-
//
|
|
23
|
+
// For Bootstrap 5.1 this needs to be set. Otherwise we couldn't use .bg-* and .text-* utils with our custom $theme
|
|
24
|
+
// Since Bootstrap 5.2 it's no longer required, so it's commented out. If everything works fine, this can be removed for
|
|
25
|
+
// future releases.
|
|
24
26
|
// $theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
|
|
25
27
|
// $utilities-colors: map-merge($utilities-colors, $theme-colors-rgb);
|
|
26
28
|
// $utilities-text-colors: map-merge($utilities-text-colors, map-loop($utilities-colors, rgba-css-var, "$key", "text"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-react",
|
|
3
|
-
"version": "8.5.0
|
|
3
|
+
"version": "8.5.0",
|
|
4
4
|
"description": "Blue React Components",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"main": "index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"predeploy": "npm run build-docs",
|
|
27
27
|
"deploy": "gh-pages --dist build --dest v8",
|
|
28
28
|
"prepublishOnly": "npm i && npm run build-release",
|
|
29
|
-
"release": "npm publish
|
|
29
|
+
"release": "npm publish && npm run deploy",
|
|
30
30
|
"prettier": "npx prettier --write ."
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|