blue-react 9.4.0 → 9.4.1

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.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Blue React v9.4.0-alpha2 (https://bruegmann.github.io/blue-react)
2
+ * Blue React v9.4.1-alpha2 (https://bruegmann.github.io/blue-react)
3
3
  * Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-react/blob/master/LICENSE).
4
4
  */
5
5
 
@@ -64,7 +64,7 @@
64
64
 
65
65
  .blue-header {
66
66
  @include header-bg();
67
- color: $header-color;
67
+ color: var(--blue-header-color);
68
68
  }
69
69
 
70
70
  .blue-header {
@@ -87,7 +87,7 @@
87
87
 
88
88
  > a {
89
89
  background-color: transparent;
90
- color: $header-color;
90
+ color: var(--blue-header-color);
91
91
  padding: $bla-header-nav-padding;
92
92
 
93
93
  &:hover,
@@ -101,6 +101,7 @@ $scrollbar-size: 10px;
101
101
  --blue-app-bg: #{$app-bg};
102
102
  --blue-sidebar-bg: #{$sidebar-bg};
103
103
  --blue-header-bg: #{$header-bg};
104
+ --blue-header-color: #{$header-color};
104
105
  --blue-action-link-bg-color: var(--blue-theme);
105
106
  --blue-menu-item-indicator-bg: #{$sidebar-indicator-color};
106
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blue-react",
3
- "version": "9.4.0",
3
+ "version": "9.4.1",
4
4
  "description": "Blue React Components",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "main": "index.js",
@@ -19,6 +19,7 @@
19
19
  "build-types": "tsc --declaration --emitDeclarationOnly --declarationDir ./dist/types --noEmit false",
20
20
  "build": "babel ./src/components --out-dir ./dist/components --extensions \".tsx,.js,.ts\"",
21
21
  "build-css": "node ./setVersionToStyleScss.js && node-sass ./dist/style.scss ./dist/style.css && npx postcss ./dist/style.css --use autoprefixer -r && npx postcss ./dist/style.css --use postcss-minify -o ./dist/style.min.css",
22
+ "build-css-better": "postcss ./dist/style.scss -o ./dist/style.css",
22
23
  "build-neu-css": "node-sass ./dist/neu.scss ./dist/neu.css && npx postcss ./dist/neu.css --use autoprefixer -r && npx postcss ./dist/neu.css --use postcss-minify -o ./dist/neu.min.css",
23
24
  "build-release": "npm run build-types && npm run build && npm run build-css && npm run docgen",
24
25
  "docgen": "react-docgen ./src/components/ -o ./src/docs/data/docs.json --exclude Utilities.js --extension tsx && node followUpDocs && npm run license-report",
@@ -61,6 +62,7 @@
61
62
  "node-sass": "^9.0.0",
62
63
  "postcss-cli": "^9.0.1",
63
64
  "postcss-minify": "^1.1.0",
65
+ "postcss-scss": "^4.0.9",
64
66
  "prettier": "2.4.1",
65
67
  "react": "^18.1.0",
66
68
  "react-bootstrap-icons": "^1.9.1",