blue-react 8.4.4 → 8.5.0-beta.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/style.css +2119 -1585
- package/dist/style.min.css +6 -6
- package/dist/style.scss +1 -1
- package/dist/styles/_bootstrap.scss +3 -2
- package/dist/styles/_grid.scss +4 -4
- package/dist/styles/_variables.scss +4 -4
- package/package.json +4 -4
package/dist/style.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Bootstrap v5.0
|
|
2
|
+
* Bootstrap v5.2.0 (https://getbootstrap.com/)
|
|
3
3
|
* Copyright 2011-2021 The Bootstrap Authors
|
|
4
4
|
* Copyright 2011-2021 Twitter, Inc.
|
|
5
5
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
@@ -9,9 +9,10 @@
|
|
|
9
9
|
// Configuration
|
|
10
10
|
@import "node_modules/bootstrap/scss/functions";
|
|
11
11
|
@import "node_modules/bootstrap/scss/variables";
|
|
12
|
+
@import "node_modules/bootstrap/scss/maps";
|
|
12
13
|
@import "node_modules/bootstrap/scss/mixins";
|
|
13
14
|
|
|
14
|
-
@import "./_bootstrap-mixins_overwritten.scss";
|
|
15
|
+
// @import "./_bootstrap-mixins_overwritten.scss";
|
|
15
16
|
|
|
16
17
|
@import "node_modules/bootstrap/scss/utilities";
|
|
17
18
|
|
package/dist/styles/_grid.scss
CHANGED
|
@@ -262,13 +262,13 @@
|
|
|
262
262
|
margin-top: 0.125rem;
|
|
263
263
|
margin-bottom: 0.125rem;
|
|
264
264
|
|
|
265
|
-
&:hover {
|
|
266
|
-
box-shadow: none !important;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
265
|
&:focus {
|
|
270
266
|
box-shadow: none;
|
|
271
267
|
}
|
|
268
|
+
|
|
269
|
+
&:focus-visible {
|
|
270
|
+
box-shadow: inset 0 0 0.25rem;
|
|
271
|
+
}
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
.blue-menu-item-label {
|
|
@@ -21,10 +21,10 @@ $theme-colors: map-merge(
|
|
|
21
21
|
);
|
|
22
22
|
|
|
23
23
|
// Since Bootstrap 5.1 this needs to be set. Otherwise we couldn't use .bg-* and .text-* utils with our custom $theme
|
|
24
|
-
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
|
|
25
|
-
$utilities-colors: map-merge($utilities-colors, $theme-colors-rgb);
|
|
26
|
-
$utilities-text-colors: map-merge($utilities-text-colors, map-loop($utilities-colors, rgba-css-var, "$key", "text"));
|
|
27
|
-
$utilities-bg-colors: map-merge($utilities-bg-colors, map-loop($utilities-colors, rgba-css-var, "$key", "bg"));
|
|
24
|
+
// $theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
|
|
25
|
+
// $utilities-colors: map-merge($utilities-colors, $theme-colors-rgb);
|
|
26
|
+
// $utilities-text-colors: map-merge($utilities-text-colors, map-loop($utilities-colors, rgba-css-var, "$key", "text"));
|
|
27
|
+
// $utilities-bg-colors: map-merge($utilities-bg-colors, map-loop($utilities-colors, rgba-css-var, "$key", "bg"));
|
|
28
28
|
|
|
29
29
|
// Alpha value (RGBA) e.g. for header background.
|
|
30
30
|
$shimmering: 0.7 !default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-react",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.5.0-beta.2",
|
|
4
4
|
"description": "Blue React Components",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"main": "index.js",
|
|
@@ -26,12 +26,12 @@
|
|
|
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 && npm run deploy",
|
|
29
|
+
"release": "npm publish --tag next && npm run deploy",
|
|
30
30
|
"prettier": "npx prettier --write ."
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@popperjs/core": "^2.
|
|
34
|
-
"bootstrap": "
|
|
33
|
+
"@popperjs/core": "^2.11.5",
|
|
34
|
+
"bootstrap": "~5.2.0",
|
|
35
35
|
"clsx": "^1.1.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|