blue-web 1.3.2 → 1.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/js/all.bundle.js +2 -0
- package/dist/js/all.bundle.js.LICENSE.txt +5 -0
- package/dist/js/all.js +3 -0
- package/dist/js/button.bundle.js +1 -0
- package/dist/js/button.d.ts +1 -0
- package/dist/js/button.js +21 -0
- package/dist/style.css +8933 -5503
- package/dist/style.css.map +1 -0
- package/dist/style.min.css +8 -12
- package/dist/style.scss +16 -15
- package/dist/styles/_button-icon-wrapper.scss +24 -0
- package/package.json +6 -3
package/dist/style.scss
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Blue Web v1.
|
|
2
|
+
* Blue Web v1.5.0 (https://bruegmann.github.io/blue-web)
|
|
3
3
|
* Licensed under GNU General Public License v3.0 (https://github.com/bruegmann/blue-web/blob/master/LICENSE).
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
@import "./styles/bootstrap-variables";
|
|
7
7
|
@import "node_modules/bootstrap/scss/functions";
|
|
8
8
|
@import "node_modules/bootstrap/scss/variables";
|
|
9
|
-
@import "./styles/
|
|
9
|
+
@import "./styles/variables";
|
|
10
10
|
|
|
11
|
-
@import "./styles/
|
|
12
|
-
@import "./styles/
|
|
11
|
+
@import "./styles/mixins";
|
|
12
|
+
@import "./styles/keyframes";
|
|
13
13
|
|
|
14
14
|
@import "./styles/bootstrap";
|
|
15
15
|
|
|
@@ -20,18 +20,19 @@
|
|
|
20
20
|
border-color: var(--bs-primary, #{$form-check-input-checked-border-color});
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
@import "./styles/
|
|
24
|
-
@import "./styles/
|
|
25
|
-
@import "./styles/
|
|
26
|
-
@import "./styles/
|
|
27
|
-
@import "./styles/
|
|
28
|
-
@import "./styles/
|
|
23
|
+
@import "./styles/text-icons";
|
|
24
|
+
@import "./styles/general";
|
|
25
|
+
@import "./styles/router";
|
|
26
|
+
@import "./styles/status";
|
|
27
|
+
@import "./styles/layout";
|
|
28
|
+
@import "./styles/grid-layout";
|
|
29
29
|
@import "./styles/menu-item";
|
|
30
|
-
@import "./styles/
|
|
31
|
-
@import "./styles/
|
|
30
|
+
@import "./styles/sidebar";
|
|
31
|
+
@import "./styles/search";
|
|
32
32
|
@import "./styles/action-menu";
|
|
33
|
-
@import "./styles/
|
|
34
|
-
@import "./styles/
|
|
35
|
-
@import "./styles/
|
|
33
|
+
@import "./styles/caret";
|
|
34
|
+
@import "./styles/tooltips";
|
|
35
|
+
@import "./styles/hover";
|
|
36
|
+
@import "./styles/button-icon-wrapper";
|
|
36
37
|
@import "./styles/buttons";
|
|
37
38
|
@import "./styles/container-grid";
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Extending `.icon-link > .bi` by Bootstrap to allow wrapped icons.
|
|
2
|
+
|
|
3
|
+
.blue-btn-icon-wrapper {
|
|
4
|
+
display: contents;
|
|
5
|
+
|
|
6
|
+
& > * {
|
|
7
|
+
flex-shrink: 0;
|
|
8
|
+
@include transition($icon-link-icon-transition);
|
|
9
|
+
}
|
|
10
|
+
& > svg {
|
|
11
|
+
width: $icon-link-icon-size;
|
|
12
|
+
height: $icon-link-icon-size;
|
|
13
|
+
fill: currentcolor;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.icon-link-hover {
|
|
18
|
+
&:hover,
|
|
19
|
+
&:focus-visible {
|
|
20
|
+
.blue-btn-icon-wrapper > * {
|
|
21
|
+
transform: var(--#{$prefix}icon-link-transform, $icon-link-icon-transform);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-web",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "UI components built on top of Bootstrap 5",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"homepage": "https://bruegmann.github.io/blue-web/v1",
|
|
@@ -17,8 +17,10 @@
|
|
|
17
17
|
"build-types": "tsc --declaration --emitDeclarationOnly --declarationDir ./dist/js --noEmit false --project tsconfig.build.json",
|
|
18
18
|
"build": "babel ./src/js --out-dir ./dist/js --extensions \".tsx,.js,.ts\"",
|
|
19
19
|
"build-bundles": "webpack",
|
|
20
|
-
"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",
|
|
21
|
-
"build-
|
|
20
|
+
"build-css-legacy": "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",
|
|
21
|
+
"build-css": "node ./setVersionToStyleScss.js && sass --load-path=. ./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-neu-css-legacy": "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
|
+
"build-neu-css": "sass --load-path=. ./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",
|
|
22
24
|
"build-release": "npm run build-types && npm run build && npm run build-bundles && npm run build-css",
|
|
23
25
|
"test": "react-scripts test",
|
|
24
26
|
"eject": "react-scripts eject",
|
|
@@ -65,6 +67,7 @@
|
|
|
65
67
|
"react-scripts": "^5.0.1",
|
|
66
68
|
"react-syntax-highlighter": "^15.4.3",
|
|
67
69
|
"reactstrap": "^9.0.0-0",
|
|
70
|
+
"sass": "~1.77.6",
|
|
68
71
|
"typescript": "^4.3.5",
|
|
69
72
|
"webpack": "^5.95.0",
|
|
70
73
|
"webpack-cli": "^5.1.4"
|