https://github.com/twbs/bootstrap

sort by:
Revision Author Date Message Commit Date
e50c11b Release v5.0.0-beta2 (#32467) * Bump version to 5.0.0-beta2 * Dist 10 February 2021, 16:14:51 UTC
2bb42a9 docs(scroll offset): improve a11y for sticky header (#33027) Our current trick works great for headings or landmarks `:target`ed by links activation, however it still allows focus to be hidden under the sticky header. 1. Go to any docs page, 2. use a TOC link to scroll down the page, 3. then `Shift`+`Tab` to navigate backward using keyboard. You should see on some browsers (mainly Firefox from my tests, but it used to do the same in Chrome) that focused elements isn't visible, hidden by our sticky header. Applying `scroll-padding-top` to the `:root` solves this without any side-effect—but it requires to drop `scroll-margin-top` for anchors to prevent doubling the offset. FWIW based on my test, Edgium and Chromium don't really care since they seem to have a new heuristic for such cases, making the focused element scroll to the center of the view. 10 February 2021, 05:27:43 UTC
2ab6dbd Downgrade karma to v6.0.4. (#33030) It seems v6.1.0 has some disconnect issues, so, trying to see if that's the case. 10 February 2021, 05:22:45 UTC
f7088e5 Add function type for `popperConfig` option (#32882) * Add function type for `popperConfig` option * Update .bundlewatch.config.json * copy edits Co-authored-by: XhmikosR <xhmikosr@gmail.com> Co-authored-by: Mark Otto <markdotto@gmail.com> 09 February 2021, 19:16:13 UTC
29e0c9d Dropdown — Change the selector to check the use of Popper (#33003) * Create the popper instance first Make sure that popper instance has been created first and then apply the styling on the dropdown(menu) * Use `data-bs-popper` attibute to check popper Co-authored-by: XhmikosR <xhmikosr@gmail.com> 09 February 2021, 19:04:23 UTC
91d3da1 fix(navbar): ensure .navbar-collapse behaves as intended (#33022) 09 February 2021, 18:54:37 UTC
273db7c Remove the default left styling in favor of Popper 09 February 2021, 12:34:27 UTC
d56992b Mention dropdown static change in Migration guide Co-authored-by: Rohit Sharma <rohit2sharma95@gmail.com> 09 February 2021, 12:34:27 UTC
8f1c882 Remove .dropdown-menu[style] reset and adjust .dropdown-menu-* modifiers - Removes the &[style] selector that was used for resetting Popper styles - Separate Popper-based alignment from static alignment with `data-bs-popover` attribute that separates the --bs-position and custom right/left properties Co-Authored-By: Rohit Sharma <rohit2sharma95@gmail.com> 09 February 2021, 12:34:27 UTC
a2b56de Bump linkinator from 2.13.3 to 2.13.4 (#33019) Bumps [linkinator](https://github.com/JustinBeckwith/linkinator) from 2.13.3 to 2.13.4. - [Release notes](https://github.com/JustinBeckwith/linkinator/releases) - [Commits](https://github.com/JustinBeckwith/linkinator/compare/v2.13.3...v2.13.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 09 February 2021, 07:22:31 UTC
28aba43 vnu-jar.js: quote vnu path (#33016) Should work now with folders with spaces 09 February 2021, 06:01:44 UTC
0eaa6c0 Remove custom `fallbackPlacements` from dropdown (#32843) 09 February 2021, 05:55:17 UTC
96b86c1 Docs on enforcing HTTPS and avoiding mixed content (#33017) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 09 February 2021, 05:54:16 UTC
96be06e Dynamic tabs: use buttons rather than links (#32630) * Dynamic tabs: use buttons rather than links - change docs - add mention that tabs should be <button> elements - tweak styles to neutralise border and background * Update js unit and visual test accordingly - replace links with buttons - make one specific test that uses links instead of buttons, as we still want to support it despite it being non-semantically appropriate - Leaving a couple of tests for now. The test for removed tabs should be redone so that tabs are removed programmatically (as the approach of having that close button inside the link is invalid and broken markup). The test for dropdowns should be removed together we actually ripping out the handling for dropdowns in the tab.js code (arguably a breaking change, though we discouraged this for a few versions and effectively "deprecated" it) * Add isolation:isolate to prevent focus being overlapped https://github.com/twbs/bootstrap/pull/32630#issuecomment-756015766 09 February 2021, 05:23:45 UTC
c93d754 CI: remove the cache fallback and shorten cache key (#33012) 08 February 2021, 19:41:10 UTC
6d34d93 Update devDependencies (#33011) * @babel/cli ^7.12.10 → ^7.12.13 * @babel/core ^7.12.10 → ^7.12.13 * @babel/preset-env ^7.12.11 → ^7.12.13 * karma ^6.0.4 → ^6.1.0 * linkinator 2.11.2 → ^2.13.3 * postcss ^8.2.4 → ^8.2.5 * rollup ^2.38.4 → ^2.38.5 * rtlcss ^3.1.1 → ^3.1.2 * vnu-jar 20.6.30 → 21.2.5 08 February 2021, 19:05:24 UTC
b6cae91 Add a note to change the case type of option name (#32995) 08 February 2021, 14:55:47 UTC
22d8e34 Fix boundary config description for dropdown and popover (#32979) 04 February 2021, 05:26:32 UTC
d63a922 Fix Popper preventOverflow boundary config (#32845) Currently, the boundary config is being assigned to the wrong var (`rootBoundary`) in the popper config. It should be assigned to the `boundary` var in popper's config. Ref: https://popper.js.org/docs/v2/utils/detect-overflow/#boundary 04 February 2021, 04:55:25 UTC
b376a3d Fix dropdown keys to open menu (#32750) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 03 February 2021, 20:03:21 UTC
2a9d721 Prevent `getSelector` from returning URLs as selector (#32586) * added checks to getSelector in util to prevent returning hrefs that are invalid selectors * restored compatibility for the class selector and added test cases for keeping urls from being returned as a selector Co-authored-by: XhmikosR <xhmikosr@gmail.com> 03 February 2021, 19:58:54 UTC
3770b7b Dropdown — Emit events on the `.dropdown-toggle` button (#32625) * Emit events on the dropdown button Emit the events on `.dropdown-toggle` button and then bubble up * Add migration note for events * Update the docs for events * Add unit test to check the event bubbling Co-authored-by: XhmikosR <xhmikosr@gmail.com> 03 February 2021, 19:51:19 UTC
02d103b fix(accordion): ensure .accordion-button stays left-aligned (#32951) Fixes #32938 Co-authored-by: XhmikosR <xhmikosr@gmail.com> 03 February 2021, 19:44:48 UTC
e4b249d fix(navbar): hardcoded custom property (#32930) 03 February 2021, 19:42:24 UTC
203b3e2 Fix default value for `$enable-deprecation-messages` (#32940) * Update the default value for $enable-deprecation-messages As seen in the https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss, the $enable-deprecation-messages variable is set to `true` by default. * Update site/content/docs/5.0/customize/options.md Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com> 03 February 2021, 19:40:05 UTC
217d84d Remove the initial margin from dropdown/popover in favor of Popper (#32524) * Remove the margin from dropdown in favor of Popper - Set the default margin to 0 for dropdowns (To remove the Popper's warning) - Set the required offset in dropdown's defaults * Remove the margin from the popover component Co-authored-by: XhmikosR <xhmikosr@gmail.com> 03 February 2021, 19:37:25 UTC
a1bb65e Tweak scss-docs shortcode Should work now with indented start/end capture statements 03 February 2021, 05:15:49 UTC
88be1ce Update docs for color and bg utilities - Split colors from background utilities with new docs page - Add Sass docs for both pages 03 February 2021, 05:15:49 UTC
14cfb7a Bump rtlcss from 3.0.0 to 3.1.1 (#32972) Bumps [rtlcss](https://github.com/MohammadYounes/rtlcss) from 3.0.0 to 3.1.1. - [Release notes](https://github.com/MohammadYounes/rtlcss/releases) - [Changelog](https://github.com/MohammadYounes/rtlcss/blob/master/CHANGELOG.md) - [Commits](https://github.com/MohammadYounes/rtlcss/compare/3.0.0...3.1.1) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 02 February 2021, 19:00:15 UTC
1383f54 Bump @rollup/plugin-commonjs from 17.0.0 to 17.1.0 (#32963) 02 February 2021, 12:09:14 UTC
eff7928 Bump sass from 1.32.5 to 1.32.6 (#32965) Bumps [sass](https://github.com/sass/dart-sass) from 1.32.5 to 1.32.6. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.32.5...1.32.6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 02 February 2021, 12:01:40 UTC
863dd32 Bump @rollup/plugin-node-resolve from 11.1.0 to 11.1.1 (#32962) Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 11.1.0 to 11.1.1. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/commonjs-v11.1.0...node-resolve-v11.1.1) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 02 February 2021, 11:59:57 UTC
7c8415e Bump eslint from 7.18.0 to 7.19.0 (#32964) Bumps [eslint](https://github.com/eslint/eslint) from 7.18.0 to 7.19.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.18.0...v7.19.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 02 February 2021, 11:56:19 UTC
9cdf322 Bump rollup from 2.38.0 to 2.38.4 (#32961) 02 February 2021, 11:52:20 UTC
586b43e Bump autoprefixer from 10.2.3 to 10.2.4 (#32966) Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.2.3 to 10.2.4. - [Release notes](https://github.com/postcss/autoprefixer/releases) - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/autoprefixer/compare/10.2.3...10.2.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 02 February 2021, 11:42:32 UTC
d0db6b7 Bump karma from 6.0.2 to 6.0.4 (#32959) Bumps [karma](https://github.com/karma-runner/karma) from 6.0.2 to 6.0.4. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v6.0.2...v6.0.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 02 February 2021, 11:33:16 UTC
4c1accc Bump @rollup/plugin-babel from 5.2.2 to 5.2.3 (#32958) Bumps [@rollup/plugin-babel](https://github.com/rollup/plugins) from 5.2.2 to 5.2.3. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/babel-v5.2.2...babel-v5.2.3) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 02 February 2021, 11:21:52 UTC
ed0fc83 _carousel.scss: Fix typo in comment (#32950) 01 February 2021, 13:22:24 UTC
e79c8f3 Just find the active indicator 28 January 2021, 21:32:24 UTC
a882614 Make carousel indicators actual buttons 28 January 2021, 21:32:24 UTC
1fd34a1 CI: switch to the coverallsapp/github-action tag (#32919) Unfortunately, they don't offer a `v1` tag 28 January 2021, 21:31:33 UTC
a838571 change-version: remove vendor, add resources (#32917) 28 January 2021, 21:30:10 UTC
e036e60 Update docs for `offset` option 28 January 2021, 10:23:33 UTC
b1bd549 Restore `offset` option for tooltip/popover components 28 January 2021, 10:23:33 UTC
881f43a Restore offset option for dropdown component 28 January 2021, 10:23:33 UTC
51ca9a9 Update checks and radios in input groups (#32912) - Adds .mt-0 to the examples - Zero-ing out universally for all of them like in #32896 would cause issues for those who include the input with visible label text, where the text and input would be misaligned 28 January 2021, 09:39:36 UTC
a56bf1d Minor ESLint rules cleanup (#32904) 28 January 2021, 09:34:20 UTC
e06ffa2 migration: mention `.form-text` changes (#32911) see #30598 and #30565 28 January 2021, 06:05:05 UTC
0fa16a5 Re-add flex-grow to .navbar-collapse (#32899) Update .navbar-collapse to drop width 100 and use flex-grow, restoring it to v4's behavior Co-authored-by: XhmikosR <xhmikosr@gmail.com> 27 January 2021, 19:27:02 UTC
5d7b51e Tooltip refactoring (#32523) * tooltip: move common code to a reusable function * tooltip: return early in `show()` Co-authored-by: Rohit Sharma <rohit2sharma95@gmail.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 27 January 2021, 17:01:24 UTC
3aa3fda Carousel: use buttons, not links, for prev/next controls (#32627) * Carousel: use buttons, not links, for prev/next - expand the styles to neutralise border/background - change docs page - add extra unit test to check that links or buttons work as controls - modify visual test to use buttons as well - use buttons instead of links for prev/next - remove `role="button"` from links that are actually links * Clarify that controls can be button or link * Update site/content/docs/5.0/components/carousel.md Co-authored-by: Mark Otto <markd.otto@gmail.com> * Explicitly set padding to 0 to prevent dipping/moving on active in Firefox Co-authored-by: XhmikosR <xhmikosr@gmail.com> 27 January 2021, 15:31:16 UTC
61391c4 Bump bundlewatch from 0.3.1 to 0.3.2 (#32906) Bumps [bundlewatch](https://github.com/bundlewatch/bundlewatch) from 0.3.1 to 0.3.2. - [Release notes](https://github.com/bundlewatch/bundlewatch/releases) - [Commits](https://github.com/bundlewatch/bundlewatch/compare/v0.3.1...v0.3.2) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 26 January 2021, 20:24:46 UTC
1a2688e Bump eslint-plugin-unicorn from 26.0.1 to 27.0.0 (#32902) * Bump eslint-plugin-unicorn from 26.0.1 to 27.0.0 Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 26.0.1 to 27.0.0. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v26.0.1...v27.0.0) Signed-off-by: dependabot[bot] <support@github.com> * Update ESLint ignores Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 26 January 2021, 13:53:26 UTC
2ccf9b8 Bump rollup from 2.37.0 to 2.38.0 (#32901) Bumps [rollup](https://github.com/rollup/rollup) from 2.37.0 to 2.38.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v2.37.0...v2.38.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 26 January 2021, 13:28:05 UTC
7be62ad Bump karma from 6.0.0 to 6.0.2 (#32903) Bumps [karma](https://github.com/karma-runner/karma) from 6.0.0 to 6.0.2. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v6.0.0...v6.0.2) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 26 January 2021, 13:22:37 UTC
5bd5c03 Pin linkinator and regenerate package-lock.json 25 January 2021, 22:42:05 UTC
f8183f6 Add a link to v4.x from the v5 homepage (#32745) * Add a link to v4.x from the v5 homepage * Update masthead.html * Update masthead.html * Change label Co-authored-by: XhmikosR <xhmikosr@gmail.com> 25 January 2021, 22:38:27 UTC
ba30df1 Replace .bg-white with .bg-body in docs Response to issue #32810 Use of the .bg-white class to define visual aspects of the examples would be unintuitive for theme builders to test themes on. This replaces instances of .bg-white with .bg-body in the examples. - Edited examples to replace use .bg-white class with .bg-body class - product - offcanvas - pricing - cheatsheet - cheatsheet-rtl - Edited utilities colors.md & shadows.md to include .bg-body class 25 January 2021, 22:34:01 UTC
c6d6160 docs: Fix `navbar-nav-scroll` description (#32846) 20 January 2021, 10:12:35 UTC
4121850 Bump autoprefixer from 10.2.1 to 10.2.3 (#32850) Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.2.1 to 10.2.3. - [Release notes](https://github.com/postcss/autoprefixer/releases) - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/autoprefixer/compare/10.2.1...10.2.3) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 20 January 2021, 08:23:06 UTC
a3229ba Bump sass from 1.32.4 to 1.32.5 (#32849) Bumps [sass](https://github.com/sass/dart-sass) from 1.32.4 to 1.32.5. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.32.4...1.32.5) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 20 January 2021, 08:19:45 UTC
558ac10 Bump stylelint from 13.8.0 to 13.9.0 (#32848) Bumps [stylelint](https://github.com/stylelint/stylelint) from 13.8.0 to 13.9.0. - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/master/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/13.8.0...13.9.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 20 January 2021, 08:15:04 UTC
56fdcf9 Docs: add v4.6.0 (#32842) 19 January 2021, 16:39:49 UTC
ec36bfe Bump rollup from 2.36.1 to 2.37.0 (#32838) Bumps [rollup](https://github.com/rollup/rollup) from 2.36.1 to 2.37.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v2.36.1...v2.37.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 19 January 2021, 10:18:39 UTC
478bbd0 Bump @rollup/plugin-node-resolve from 11.0.1 to 11.1.0 (#32837) Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 11.0.1 to 11.1.0. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/commonjs-v11.0.1...commonjs-v11.1.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 19 January 2021, 10:14:38 UTC
b9377f4 Bump eslint from 7.17.0 to 7.18.0 (#32836) Bumps [eslint](https://github.com/eslint/eslint) from 7.17.0 to 7.18.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.17.0...v7.18.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 19 January 2021, 10:07:26 UTC
40b15de Add `.navbar-nav-scroll` for vertical scrolling of navbar content (#32037) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 19 January 2021, 05:32:18 UTC
4167c10 Add a live toast example to the docs (#32760) 18 January 2021, 13:10:01 UTC
bb19b08 Remove popover-arrow margin to fix alignment of the arrow (#32787) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 15 January 2021, 07:12:45 UTC
987715f Drop transition on .form-check, keep on .form-switch To avoid breaking changes, turns -check-transition to null, then adds a new -switch-transition variable 15 January 2021, 03:46:50 UTC
a8aede0 Lighten disabled dropdown text to $gray-500 Fixes #32474 15 January 2021, 03:41:34 UTC
803e49d Clarifies Sass variable defaults, adds bootstrap-npm-starter callout (#32795) * Clarify Sass import and customize docs for how to modify variable defaulst * Add an npm starter project callout to a few pages * Update callout-info-npm-starter.md Co-authored-by: XhmikosR <xhmikosr@gmail.com> 15 January 2021, 00:21:21 UTC
9bec37a docs: work around Toast CSS conflict with utils (#32620) * Toast CSS conflict resolved * Update toasts.md Co-authored-by: XhmikosR <xhmikosr@gmail.com> 15 January 2021, 00:07:36 UTC
b5bf313 modal: move common code to reusable functions (#32511) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 14 January 2021, 19:22:09 UTC
1d8bc95 Update zip-examples.js (#32799) Remove previously created zip files before creating a new one 14 January 2021, 11:28:39 UTC
63880e0 Bump karma from 5.2.3 to 6.0.0 (#32797) Bumps [karma](https://github.com/karma-runner/karma) from 5.2.3 to 6.0.0. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v5.2.3...v6.0.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 14 January 2021, 11:00:17 UTC
8c1444f CI: change Node.js to `14` (#32796) This is so that it's consistent with the JS workflow thus the cache should match. 14 January 2021, 10:51:14 UTC
949fa30 Remove role="button" from CTA links in carousel examples (#32788) They're links, acting as links. Just because they're styled as buttons visually doesn't mean they need/get `role="button"` 13 January 2021, 23:54:25 UTC
f7d3870 Docs v5: Fix Sass rounding precision and state Sass implementation (#32512) * Add Sass section to Getting Started > Build Tools, mention Sass implementation used, mention current precision of 10 due to Dart Sass, and mention recommended minimum precision (value of 6 used in BS v4). Remove outdated Sass precision from Customize > Sass docs page. * Remove more mentions of deprecated Sass implementations. Add links to Sass compiler mentions so we can keep all pertinent Sass compiler information in just one location instead of spread through the docs, which makes it hard to find the details and/or keep them up-to-date. Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 22:41:42 UTC
157a27d build-plugins: build Base component too (#32313) 13 January 2021, 22:35:57 UTC
1b46601 Bump eslint-plugin-unicorn from 25.0.1 to 26.0.1 (#32784) * Bump eslint-plugin-unicorn from 25.0.1 to 26.0.1 Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 25.0.1 to 26.0.1. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v25.0.1...v26.0.1) Signed-off-by: dependabot[bot] <support@github.com> * Updates for `eslint-plugin-unicorn@26.0.1` Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 22:29:26 UTC
80c0d4d Add mention of CSPs and SVGs (#32759) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 22:15:18 UTC
f95004f Revert "docs: Fix popover example showing above navbar (#32445)" (#32533) This reverts commit 517446069a60daddaf5e53651661851f9b44e9a0. 13 January 2021, 20:51:39 UTC
c9cd741 Throw a `TypeError` instead of the generic `Error` (#32585) * Change from Error to TypeError * Convert the `NAME` to upper case to make the consistency in the error message * Update the remaining tests to be stricter Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 20:13:30 UTC
e34481b Fix toggling modal when clicking on `data-bs-toggle="modal"` (#32691) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 19:59:47 UTC
d21fb9b Document some basic code conventions for us (#32778) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 19:06:07 UTC
20a9d49 Improve docs regarding RTL migration (#32771) * docs(migrations): add a note regarding migration from v4 used for RTL layouts * docs(RTL): LTR & RTL at the same time * docs(utilities): how-to use the API to rename utilities * docs(RTL): mention issue when nesting styles with .ltr / .rtl 13 January 2021, 19:01:36 UTC
041de9d Add word-break to .toast-body (#32670) * Update _toasts.scss * Update scss/_toasts.scss Co-authored-by: Mark Otto <otto@github.com> 13 January 2021, 17:21:57 UTC
1cdbf53 Improve zip-examples.js (#32469) Only include the needed dist files: ~1.27 MB -> ~410 KB 13 January 2021, 17:21:31 UTC
82e5fe2 Migration: mention the removal of `.rounded-sm/lg` utilities (#32758) * Changes made in migration.md file of documentation Added information about the removal of `.rounded-sm` and `.rounded-lg`. And addition of `.rounded-0` to `.rounded-3` * Moved the edited line Added `rounded-0` to `rounded-3` under v5.0.0-alpha3 * Moved correctly * Added link Added link to issue #31687 * docs(migration): last typo thinggies * Update migration.md Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com> 13 January 2021, 17:18:56 UTC
cad88ab JS: update karma config (#32769) * rename constants * enforce the constants to be Boolean * fix karma `logLevel` 13 January 2021, 17:16:51 UTC
05249c8 Document size and multiple aren't supported on floating label selects (#32744) * Document size and multiple aren't supported on floating label selects Closes #32660 * Update floating-labels.md 13 January 2021, 17:15:05 UTC
408b255 Update toasts.md (#32782) * dropped mention of `backdrop-filter` * changed mention of `.text-white` to `.btn-close-white` on close button 13 January 2021, 17:05:25 UTC
f43133a .gitignore: remove Ruby/Jekyll entries (#32770) Our currently supported branches, v4-dev and main, use Hugo. 13 January 2021, 11:20:49 UTC
ed5ddca Stylelint: disallow some property values (#32756) * `border: none` * `outline: none` 13 January 2021, 08:52:41 UTC
69afafe Mention stretched-link constraints with table elements (#32761) Co-authored-by: XhmikosR <xhmikosr@gmail.com> 12 January 2021, 13:33:58 UTC
bf1e913 Bump sass from 1.32.2 to 1.32.4 (#32766) Bumps [sass](https://github.com/sass/dart-sass) from 1.32.2 to 1.32.4. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.32.2...1.32.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 12 January 2021, 12:53:12 UTC
0bcaa06 GitHub Actions cleanup (#32755) * lowercase `runner.os` * remove `CI` environment variable since it's already set by the runner 11 January 2021, 11:05:05 UTC
78c5b50 Darken dropdown item hover style (#32754) Closes https://github.com/twbs/bootstrap/issues/23329 11 January 2021, 01:24:03 UTC
d62d18f Consistently use outline:0 rather than outline:none (#32751) just for code consistency, no actual effect on styling per se 10 January 2021, 16:13:08 UTC
back to top