]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Add helpers to utilities bundle (#32324)
authorMarc Jansing <marc.jansing@innoq.com>
Fri, 18 Dec 2020 05:39:39 +0000 (06:39 +0100)
committerGitHub <noreply@github.com>
Fri, 18 Dec 2020 05:39:39 +0000 (07:39 +0200)
Adds currently missing utilities classes which are located in scss/helpers to
boostrap-utilities dist files.

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
.bundlewatch.config.json
scss/bootstrap-utilities.scss
site/content/docs/5.0/migration.md

index 0740663900222cf6b364099ac37b520490ce17b0..da47da48014549181943bfdb5b0f861d9b7b8a5d 100644 (file)
     },
     {
       "path": "./dist/css/bootstrap-utilities.css",
-      "maxSize": "7 kB"
+      "maxSize": "7.5 kB"
     },
     {
       "path": "./dist/css/bootstrap-utilities.min.css",
-      "maxSize": "6.25 kB"
+      "maxSize": "6.75 kB"
     },
     {
       "path": "./dist/css/bootstrap.css",
index 8d96cf9d763ffe813208ad3ae6fc7a319dd335cf..265aa890af549b1321616a01e4538011c56416d9 100644 (file)
@@ -6,13 +6,13 @@
  */
 
 // Configuration
-
 @import "functions";
 @import "variables";
 @import "mixins";
 @import "utilities";
 
+// Helpers
+@import "helpers";
 
 // Utilities
-
 @import "utilities/api";
index b2e08c3ab5134452ed5f3c098b698c25177ea8ae..1a442d516a38cb60aa6e3f989be3da060687fd75 100644 (file)
@@ -11,7 +11,10 @@ toc: true
 
 ### Sass
 
+#### Utilities
+
 - Extended the `.visually-hidden-focusable` helper to also work on containers, using `:focus-within`.
+- `bootstrap-utilities.css` now also includes our helpers. Helpers don't need to be imported in custom builds anymore.
 - Extended form validation states customization capabilities. Added three new optional parameters to the `form-validation-state` mixin: `tooltip-color`, `tooltip-bg-color`, `focus-box-shadow`. These parameters can be set in the `$form-validation-states` map. [See #31757](https://github.com/twbs/bootstrap/pull/31757).
 
 ### JavaScript