]>
git.ipfire.org Git - thirdparty/bootstrap.git/log
dependabot[bot] [Tue, 11 May 2021 10:11:40 +0000 (13:11 +0300)]
Bump @rollup/plugin-commonjs from 18.0.0 to 19.0.0 (#33932)
Bumps [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) from 18.0.0 to 19.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v19.0.0/packages/commonjs)
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>
dependabot[bot] [Tue, 11 May 2021 10:05:52 +0000 (13:05 +0300)]
Bump karma-jasmine-html-reporter from 1.5.4 to 1.6.0 (#33937)
Bumps [karma-jasmine-html-reporter](https://github.com/dfederm/karma-jasmine-html-reporter) from 1.5.4 to 1.6.0.
- [Release notes](https://github.com/dfederm/karma-jasmine-html-reporter/releases)
- [Commits](https://github.com/dfederm/karma-jasmine-html-reporter/compare/v1.5.4...v1.6.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>
dependabot[bot] [Tue, 11 May 2021 10:00:52 +0000 (13:00 +0300)]
Bump glob from 7.1.6 to 7.1.7 (#33936)
Bumps [glob](https://github.com/isaacs/node-glob) from 7.1.6 to 7.1.7.
- [Release notes](https://github.com/isaacs/node-glob/releases)
- [Changelog](https://github.com/isaacs/node-glob/blob/master/changelog.md)
- [Commits](https://github.com/isaacs/node-glob/compare/v7.1.6...v7.1.7)
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>
GeoSot [Tue, 11 May 2021 09:54:51 +0000 (12:54 +0300)]
Fix test warning for dropdown, without expectations (#33938)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
dependabot[bot] [Tue, 11 May 2021 09:50:35 +0000 (12:50 +0300)]
Bump eslint from 7.25.0 to 7.26.0 (#33933)
Bumps [eslint](https://github.com/eslint/eslint) from 7.25.0 to 7.26.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.25.0...v7.26.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>
dependabot[bot] [Tue, 11 May 2021 09:21:04 +0000 (12:21 +0300)]
Bump postcss from 8.2.13 to 8.2.15 (#33931)
Bumps [postcss](https://github.com/postcss/postcss) from 8.2.13 to 8.2.15.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.2.13...8.2.15)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
alpadev [Tue, 11 May 2021 08:38:48 +0000 (10:38 +0200)]
docs: make tooltip anchor properly wrap the svg (#33901)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
GeoSot [Tue, 11 May 2021 08:06:32 +0000 (11:06 +0300)]
Fix offcanvas test to expect the initial body `overflow` value (#33927)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
GeoSot [Tue, 11 May 2021 07:58:45 +0000 (10:58 +0300)]
Fix offcanvas example, using a custom trigger selector (#33926)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
GeoSot [Tue, 11 May 2021 07:49:30 +0000 (10:49 +0300)]
Extract static `DATA_KEY` & `EVENT_KEY` to base-component (#33635)
* Force each plugin that extends base-components to implement a static method `NAME()`
* Remove redundant `NAME` argument from 'Utils.defineJQueryPlugin' & fix test
alpadev [Tue, 11 May 2021 06:09:00 +0000 (08:09 +0200)]
Fix: Click on input outside of dropdown-menu prevents dropdown from closing (#33920)
* test: add test if user clicks on input not contained within dropdown-menu
* fix: click on inputs that are not contained within dropdown-menu prevent dropdown from closing
GeoSot [Tue, 11 May 2021 06:04:42 +0000 (09:04 +0300)]
Refactor: move disposing properties into the base class (#33740)
Moves more functionality to `base-component`, transferring the responsibility of disposal to parent class.
Each component, dusting disposal, sets its protected properties to `null`. So the same can be done in one place for all children components .
Ben Lertlumprasertkul [Tue, 11 May 2021 05:45:57 +0000 (06:45 +0100)]
Remove potential false positive assertions (#33288)
* Remove potential false positive assertions
querySelector() returns null but
expect(document.querySelector('...')).toBeDefined()
tests that the value is not undefined
* Migrated assertions from .toBeDefined() to .not.toBeNull() for .getInstance() calls in tests
* Migrate offcanvas assertions from .toBeDefined() to .not.toBeNull() for .getInstance() call
* convert more cases to not.toBeNull assertions
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Ryan Berliner [Tue, 11 May 2021 05:37:57 +0000 (01:37 -0400)]
Prevent toast autohiding if focusing or hovering (#33221)
XhmikosR [Tue, 11 May 2021 05:34:21 +0000 (08:34 +0300)]
CI: remove Node.js 10 (#33923)
Node.js 10 is EOL since 30/04/2021
GeoSot [Sat, 10 Apr 2021 23:27:18 +0000 (02:27 +0300)]
Merge js-components 'transitionend' listener callbacks into one method
Mark Otto [Mon, 10 May 2021 20:57:26 +0000 (13:57 -0700)]
Fix accidental directory rename from https://github.com/twbs/bootstrap/pull/33709
Mark H. Wilkinson [Fri, 7 May 2021 08:55:23 +0000 (09:55 +0100)]
Don't redefine $list-group-color in loop
Christian Oliff [Mon, 10 May 2021 11:01:09 +0000 (20:01 +0900)]
Remove unneeded 'Edge Legacy' mention in Range docs
Tim Yang [Mon, 10 May 2021 19:52:15 +0000 (14:52 -0500)]
Fix "directoinal" typo in v5 migration docs
Nagarjun Bodduna [Mon, 10 May 2021 18:17:53 +0000 (23:47 +0530)]
Fix backdrop `rootElement` not initialized in Modal (#33853)
* Initialize default value of rootElement before using
* Remove redundant test | put rootElement tests together
Co-authored-by: GeoSot <geo.sotis@gmail.com>
Mustafa Mahdi [Mon, 10 May 2021 18:16:19 +0000 (21:16 +0300)]
Add Arabic translation (#33709)
alpadev [Mon, 10 May 2021 18:13:23 +0000 (20:13 +0200)]
docs: fix rtlcss stringmap configuration (#33915)
Nikolay Nizriukhin [Sat, 8 May 2021 12:28:15 +0000 (14:28 +0200)]
Fix accordion link (#33896)
Co-authored-by: Patrick H. Lauke <redux@splintered.co.uk>
Chris Blakley [Sat, 8 May 2021 12:24:39 +0000 (08:24 -0400)]
Fix "no long require" to "no longer require" typo (#33879)
Fixed a typo in the Migration guide from "...we no long require..." to be "we no longer require..."
Jaume Sala [Sat, 8 May 2021 12:22:07 +0000 (14:22 +0200)]
Fix value (#33868)
alpadev [Sat, 8 May 2021 12:16:30 +0000 (14:16 +0200)]
Update README.md for v5 (#33891)
Patrick H. Lauke [Sat, 8 May 2021 11:53:03 +0000 (12:53 +0100)]
Add accessible names to SVG icons in alerts (#33893)
jrn2778 [Thu, 6 May 2021 23:10:23 +0000 (19:10 -0400)]
Fix unnecessary classes (#33850)
* Fix unnecessary classes
* Removed unnecessary div
Co-authored-by: Mark Otto <otto@github.com>
* Updated centered hero primary button classes
Co-authored-by: Mark Otto <otto@github.com>
Mark Otto [Thu, 6 May 2021 23:09:33 +0000 (16:09 -0700)]
Add examples section to Release Drafter (#33854)
Christian Oliff [Wed, 5 May 2021 23:54:49 +0000 (08:54 +0900)]
update About text now that Bootstrap 5 is live
..and big congrats (and thanks) to all the Bootstrap team on v5 launching :-)
kyletsang [Thu, 6 May 2021 07:20:56 +0000 (00:20 -0700)]
Fix browser support versions in migration doc
Manabu Niseki [Thu, 6 May 2021 08:43:36 +0000 (17:43 +0900)]
Fix typo in migration.md
Mark Otto [Thu, 6 May 2021 23:00:30 +0000 (16:00 -0700)]
Fix typo in scrollspy docs (#33841)
* Fix typo
* remove duplicated "heading"
Co-authored-by: alpadev <2838324+alpadev@users.noreply.github.com>
Mark Otto [Thu, 6 May 2021 18:22:57 +0000 (11:22 -0700)]
Remove extra t in Close button heading in Migration guide
XhmikosR [Wed, 5 May 2021 19:32:12 +0000 (22:32 +0300)]
Release v5.0.0 (#33647)
* Bump version to 5.0.0
* Fix npm tag
* Dist
Mark Otto [Wed, 5 May 2021 15:24:26 +0000 (08:24 -0700)]
Rewrite migration guide (#33834)
- De-duplicates bulk of the content for a migration from v4 to v5
- Adds clear breaking labels where appropriate
- Leaves room for more guidance around doing the actual migration
Ajay Patel [Wed, 5 May 2021 14:53:49 +0000 (20:23 +0530)]
refactor(docs): Added form file input variables (#33833)
File input belongs to this page in doc, added variables in last.
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Kyle Tsang [Wed, 5 May 2021 14:44:43 +0000 (07:44 -0700)]
Fix doc typo and Bootstrap Icons link (#33832)
* Fix typo in migration guide
* Fix Bootstrap Icons link in alerts page
Mark Otto [Wed, 5 May 2021 03:42:06 +0000 (20:42 -0700)]
Update migration guide for some v5 changes (#33829)
* Update migration guide for some v5 changes
* Update migration.md
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Patrick H. Lauke [Wed, 5 May 2021 02:31:37 +0000 (03:31 +0100)]
Neutralise more words from placeholder text (#33731)
* Neutralise more words from placeholder text
Follow-up to https://github.com/twbs/bootstrap/pull/33726
* Match fullscreen modal to other sizes
* Ditch the lyrics outright
* Rewrite and tweak the blog example some
* update cheatsheet
* text utils copy too
* Fix the tbody validation error
* fix typo
Co-authored-by: Mark Otto <markd.otto@gmail.com>
Co-authored-by: Mark Otto <markdotto@gmail.com>
Co-authored-by: alpadev <2838324+alpadev@users.noreply.github.com>
Co-authored-by: alpadev <alpa.muc@gmail.com>
dependabot[bot] [Tue, 4 May 2021 12:57:55 +0000 (15:57 +0300)]
Bump eslint-config-xo from 0.35.0 to 0.36.0 (#33646)
* Bump eslint-config-xo from 0.35.0 to 0.36.0
Bumps [eslint-config-xo](https://github.com/xojs/eslint-config-xo) from 0.35.0 to 0.36.0.
- [Release notes](https://github.com/xojs/eslint-config-xo/releases)
- [Commits](https://github.com/xojs/eslint-config-xo/compare/v0.35.0...v0.36.0)
Signed-off-by: dependabot[bot] <support@github.com>
* Adapt config
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Patrick H. Lauke [Tue, 4 May 2021 12:37:45 +0000 (13:37 +0100)]
Tweak toast docs (#33810)
* Tweak toast docs
- a few rewordings/tweaks
- add info about toasts with focusable/actionable controls (shouldn't autohide them)
* Update site/content/docs/5.0/components/toasts.md
Co-authored-by: Mark Otto <markd.otto@gmail.com>
* Update site/content/docs/5.0/components/toasts.md
Co-authored-by: Mark Otto <markd.otto@gmail.com>
Co-authored-by: Mark Otto <markd.otto@gmail.com>
dependabot[bot] [Tue, 4 May 2021 12:36:50 +0000 (15:36 +0300)]
Bump rollup from 2.46.0 to 2.47.0 (#33818)
Bumps [rollup](https://github.com/rollup/rollup) from 2.46.0 to 2.47.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.46.0...v2.47.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>
dependabot[bot] [Tue, 4 May 2021 12:31:43 +0000 (15:31 +0300)]
Bump @babel/preset-env from 7.14.0 to 7.14.1 (#33819)
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.0 to 7.14.1.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.1/packages/babel-preset-env)
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>
dependabot[bot] [Tue, 4 May 2021 12:27:03 +0000 (15:27 +0300)]
Bump eslint-plugin-unicorn from 30.0.0 to 31.0.0 (#33769)
* Bump eslint-plugin-unicorn from 30.0.0 to 31.0.0
Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 30.0.0 to 31.0.0.
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v30.0.0...v31.0.0)
Signed-off-by: dependabot[bot] <support@github.com>
* Disable the `unicorn/prefer-module` rule
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
dependabot[bot] [Tue, 4 May 2021 12:22:24 +0000 (15:22 +0300)]
Bump hugo-bin from 0.71.0 to 0.71.1 (#33820)
Bumps [hugo-bin](https://github.com/fenneclab/hugo-bin) from 0.71.0 to 0.71.1.
- [Release notes](https://github.com/fenneclab/hugo-bin/releases)
- [Commits](https://github.com/fenneclab/hugo-bin/compare/v0.71.0...v0.71.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] [Sat, 1 May 2021 13:27:27 +0000 (16:27 +0300)]
Bump hugo-bin from 0.70.2 to 0.71.0 (#33806)
Bumps [hugo-bin](https://github.com/fenneclab/hugo-bin) from 0.70.2 to 0.71.0.
- [Release notes](https://github.com/fenneclab/hugo-bin/releases)
- [Commits](https://github.com/fenneclab/hugo-bin/compare/v0.70.2...v0.71.0)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
XhmikosR [Sat, 1 May 2021 11:57:41 +0000 (14:57 +0300)]
Update devDependencies (#33805)
* @babel/core ^7.13.16 → ^7.14.0
* @babel/preset-env ^7.13.15 → ^7.14.0
* stylelint-config-twbs-bootstrap ^2.1.0 → ^2.2.0
dependabot[bot] [Sat, 1 May 2021 11:53:17 +0000 (14:53 +0300)]
Bump rollup from 2.45.2 to 2.46.0 (#33799)
Bumps [rollup](https://github.com/rollup/rollup) from 2.45.2 to 2.46.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.45.2...v2.46.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>
dependabot[bot] [Sat, 1 May 2021 11:47:54 +0000 (14:47 +0300)]
Bump clean-css-cli from 5.2.2 to 5.3.0 (#33800)
Bumps [clean-css-cli](https://github.com/jakubpawlowicz/clean-css-cli) from 5.2.2 to 5.3.0.
- [Release notes](https://github.com/jakubpawlowicz/clean-css-cli/releases)
- [Changelog](https://github.com/jakubpawlowicz/clean-css-cli/blob/master/History.md)
- [Commits](https://github.com/jakubpawlowicz/clean-css-cli/compare/v5.2.2...v5.3.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>
Luiz Orso [Sat, 1 May 2021 11:46:20 +0000 (08:46 -0300)]
Docs: adding intro about web accessibility (#33786)
dependabot[bot] [Sat, 1 May 2021 11:44:46 +0000 (14:44 +0300)]
Bump stylelint from 13.13.0 to 13.13.1 (#33802)
Bumps [stylelint](https://github.com/stylelint/stylelint) from 13.13.0 to 13.13.1.
- [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.13.0...13.13.1)
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>
Patrick H. Lauke [Sat, 1 May 2021 11:39:41 +0000 (12:39 +0100)]
Update links to CCA, MQ5 prefers-reduced-motion, evergreen WCAG urls (#33797)
dependabot[bot] [Sat, 1 May 2021 11:37:14 +0000 (14:37 +0300)]
Bump sass from 1.32.11 to 1.32.12 (#33798)
Bumps [sass](https://github.com/sass/dart-sass) from 1.32.11 to 1.32.12.
- [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.11...1.32.12)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Mark Otto [Fri, 30 Apr 2021 21:38:58 +0000 (14:38 -0700)]
Add new team members to the Teams page (#33782)
* Add new team members to the Teams page
* Update core-team.yml
alpadev [Fri, 30 Apr 2021 07:59:54 +0000 (09:59 +0200)]
accordion: fix `border-top` on Firefox (#33736)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Gaël Poupard [Thu, 29 Apr 2021 22:19:07 +0000 (00:19 +0200)]
Improve overall new examples' accessibility (#33772)
Abdullah Alaqeel [Tue, 27 Apr 2021 12:38:44 +0000 (15:38 +0300)]
Improve RTL examples (#33097)
Rohit Sharma [Tue, 27 Apr 2021 12:29:07 +0000 (17:59 +0530)]
Add migration note for the `autoClose` option (#33770)
dependabot[bot] [Tue, 27 Apr 2021 12:08:30 +0000 (12:08 +0000)]
Bump stylelint from 13.12.0 to 13.13.0 (#33765)
dependabot[bot] [Tue, 27 Apr 2021 11:59:08 +0000 (14:59 +0300)]
Bump eslint from 7.24.0 to 7.25.0 (#33768)
Bumps [eslint](https://github.com/eslint/eslint) from 7.24.0 to 7.25.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.24.0...v7.25.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>
Rohit Sharma [Tue, 27 Apr 2021 11:56:06 +0000 (17:26 +0530)]
Tooltip — doc updates (#33771)
dependabot[bot] [Tue, 27 Apr 2021 11:55:02 +0000 (14:55 +0300)]
Bump postcss from 8.2.10 to 8.2.13 (#33767)
Bumps [postcss](https://github.com/postcss/postcss) from 8.2.10 to 8.2.13.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.2.10...8.2.13)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Pierre Grimaud [Tue, 27 Apr 2021 04:10:43 +0000 (06:10 +0200)]
docs: fix typo in list-group.md (#33756)
alpadev [Tue, 27 Apr 2021 03:52:59 +0000 (05:52 +0200)]
fix: change margin breakpoints for bootstrap logo on double header (#33759)
Mark Otto [Sun, 25 Apr 2021 03:59:13 +0000 (20:59 -0700)]
Add Bootstrap Icons to alerts docs (#33690)
* Add Bootstrap Icons to alerts docs
* Update site/content/docs/5.0/components/alerts.md
Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com>
* Update alerts.md
Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com>
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Rohit Sharma [Sun, 25 Apr 2021 03:58:08 +0000 (09:28 +0530)]
Clarify `boundary` option description (#33735)
Mention that `boundary` option is specific to the preventOverflow modifier only
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Rohit Sharma [Sun, 25 Apr 2021 03:56:30 +0000 (09:26 +0530)]
Tooltip/Popover — Minor doc updates (#33733)
GeoSot [Sun, 25 Apr 2021 03:50:16 +0000 (06:50 +0300)]
Scrollbar: respect the initial body overflow value (#33706)
* add method to handle overflow on body element & tests
* replace duplicated code on modal/offcanvas tests
alpadev [Sun, 25 Apr 2021 03:45:08 +0000 (05:45 +0200)]
Add missing test for clicking select option in a dropdown (#33734)
Mark Otto [Fri, 23 Apr 2021 11:58:32 +0000 (04:58 -0700)]
Replace modal and scrollspy placeholder content (#33726)
XhmikosR [Thu, 22 Apr 2021 10:51:03 +0000 (13:51 +0300)]
JS tests: add Node.js 16 (#33720)
XhmikosR [Thu, 22 Apr 2021 10:49:36 +0000 (13:49 +0300)]
Regenerate package-lock.json to flatten deps (#33719)
dependabot[bot] [Thu, 22 Apr 2021 04:32:15 +0000 (07:32 +0300)]
Bump hugo-bin from 0.70.0 to 0.70.2 (#33718)
Bumps [hugo-bin](https://github.com/fenneclab/hugo-bin) from 0.70.0 to 0.70.2.
- [Release notes](https://github.com/fenneclab/hugo-bin/releases)
- [Commits](https://github.com/fenneclab/hugo-bin/compare/v0.70.0...v0.70.2)
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>
dependabot[bot] [Thu, 22 Apr 2021 04:28:17 +0000 (07:28 +0300)]
Bump @babel/core from 7.13.15 to 7.13.16 (#33717)
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.13.15 to 7.13.16.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.13.16/packages/babel-core)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] [Thu, 22 Apr 2021 04:21:55 +0000 (07:21 +0300)]
Bump @babel/cli from 7.13.14 to 7.13.16 (#33716)
Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.13.14 to 7.13.16.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.13.16/packages/babel-cli)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Carson Sievert [Wed, 21 Apr 2021 05:30:19 +0000 (00:30 -0500)]
Dropdown: support `.dropdown-item` wrapped in `<li>` tags (#33634)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
dependabot[bot] [Wed, 21 Apr 2021 05:26:53 +0000 (08:26 +0300)]
Bump eslint-plugin-unicorn from 29.0.0 to 30.0.0 (#33700)
Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 29.0.0 to 30.0.0.
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v29.0.0...v30.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>
dependabot[bot] [Wed, 21 Apr 2021 05:22:16 +0000 (08:22 +0300)]
Bump sass from 1.32.8 to 1.32.11 (#33699)
Bumps [sass](https://github.com/sass/dart-sass) from 1.32.8 to 1.32.11.
- [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.8...1.32.11)
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>
Rohit Sharma [Wed, 21 Apr 2021 05:15:22 +0000 (10:45 +0530)]
docs: fix the default value of Popper's `boundary` option (#33685)
`'scrollParent'` is no longer the default `boundary` value
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
GeoSot [Tue, 20 Apr 2021 05:32:52 +0000 (08:32 +0300)]
Offcanvas.js: If scroll is allowed, should allow focus on other elements (#33677)
GeoSot [Tue, 20 Apr 2021 05:26:58 +0000 (08:26 +0300)]
Tab.js: Fixes on click handling (#33586)
* use prevent default only if triggered by anchor
* disable auto-initialization if trigger is disabled
Rohit Sharma [Tue, 20 Apr 2021 05:19:57 +0000 (10:49 +0530)]
Dropdown — Add option to make the dropdown menu clickable (#33389)
Rohit Sharma [Mon, 19 Apr 2021 16:58:45 +0000 (22:28 +0530)]
Don't change the value for `altBoundary` option (#33684)
- Since bootstrap is not changing the default value of `elementContext`
option, changing the value of `altBoundary` option is not needed for
any modifier in real
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
iatek [Mon, 19 Apr 2021 12:07:58 +0000 (08:07 -0400)]
Fixes #33686 typo in RTL docs
alpadev [Mon, 19 Apr 2021 05:30:33 +0000 (07:30 +0200)]
Fix regression for handling `mouseenter`/`mouseleave` events introduced by #33310 (#33679)
* test: update spec for sibling adjacent mouseenter/mouseleave events
there is a regression introduced by #33310 - this would have catched that
* fix: fixup regression for mouseenter/mouseleave events introduced by #33310
the old logic only worked for parent-child movement since it checked for the relatedTarget to contain the delegateTarget - this should be fixed with this
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
GeoSot [Mon, 19 Apr 2021 05:20:25 +0000 (08:20 +0300)]
Use the backdrop util in offcanvas, enforcing consistency (#33545)
* respect /share modal's backdrop functionality, keeping consistency
* listen click events over backdrop (only) and trigger `hide()` without add/remove event tricks
* achieve to hide foreign open offcanvas instances without glitches `if (allReadyOpen && allReadyOpen !== target)`, in case another is going to be open, when user clicks on trigger button
XhmikosR [Mon, 19 Apr 2021 04:52:09 +0000 (07:52 +0300)]
Update anchor.js to v4.3.1. (#33668)
Rohit Sharma [Sun, 18 Apr 2021 10:33:50 +0000 (16:03 +0530)]
Change from preventOverflow to detectOverflow
- Since the link is for detectOverflow docs
Raaj Trambadia [Sun, 18 Apr 2021 17:23:55 +0000 (13:23 -0400)]
Fix typo
Mark Otto [Mon, 19 Apr 2021 03:48:13 +0000 (20:48 -0700)]
Fixes signup form in Heroes example
Fixes #33660
GeoSot [Mon, 19 Apr 2021 03:55:22 +0000 (06:55 +0300)]
modal.js: fix test for scrollbar (#33666)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Kohhee Peace [Mon, 19 Apr 2021 03:53:39 +0000 (12:53 +0900)]
Fix Grid System docs (#33676)
* Fix Grid System docs
* Apply suggestions from code review
Co-authored-by: Mark Otto <otto@github.com>
alpadev [Sun, 18 Apr 2021 06:01:23 +0000 (08:01 +0200)]
fix: clicking an item in navbar dropdown collapses the dropdown in firefox (#33643)
Rohit Sharma [Wed, 14 Apr 2021 09:57:33 +0000 (15:27 +0530)]
Change `toggle` method to `remove`
Since the class `.show` must be removed
Rohit Sharma [Wed, 14 Apr 2021 09:24:39 +0000 (14:54 +0530)]
Use context properties
Rohit Sharma [Wed, 24 Mar 2021 18:25:00 +0000 (23:55 +0530)]
Refactor dropdown's hide functionality
Rohit Sharma [Wed, 24 Mar 2021 19:29:45 +0000 (00:59 +0530)]
Apply positioning only when Popper is not used
Mark Otto [Thu, 15 Apr 2021 06:21:36 +0000 (23:21 -0700)]
Fix toggle between modals example