blue-react 8.3.4 → 8.4.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 +2082 -1561
- package/dist/style.min.css +6 -6
- package/dist/style.scss +1 -1
- package/dist/styles/_bootstrap.scss +3 -2
- package/dist/styles/_variables.scss +4 -4
- package/dist/types/components/MenuItem.d.ts +1 -1
- package/package.json +5 -5
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
|
|
|
@@ -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;
|
|
@@ -55,7 +55,7 @@ export interface MenuItemProps {
|
|
|
55
55
|
*/
|
|
56
56
|
supportOutside?: boolean;
|
|
57
57
|
/**
|
|
58
|
-
* By default, MenuItem is a `"button"
|
|
58
|
+
* By default, MenuItem is a `"button"`. If you set a `href`, it's a `"a"`.
|
|
59
59
|
* If you want to have it another type, you can pass a component reference with this prop (e.g. `Link`).
|
|
60
60
|
*/
|
|
61
61
|
elementType?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-react",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.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": "^5.
|
|
33
|
+
"@popperjs/core": "^2.11.5",
|
|
34
|
+
"bootstrap": "^5.2.0-beta1",
|
|
35
35
|
"clsx": "^1.1.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"postcss-minify": "^1.1.0",
|
|
61
61
|
"prettier": "2.4.1",
|
|
62
62
|
"react": "^18.1.0",
|
|
63
|
-
"react-bootstrap-icons": "^1.
|
|
63
|
+
"react-bootstrap-icons": "^1.8.2",
|
|
64
64
|
"react-docgen": "^5.4.0",
|
|
65
65
|
"react-dom": "^18.1.0",
|
|
66
66
|
"react-markdown-github": "^3.3.1",
|