aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-03-10Bump @babel/preset-env from 7.13.9 to 7.13.10 (#33315)dependabot[bot]2-14/+14
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.13.9 to 7.13.10. - [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.10/packages/babel-preset-env) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-10Bump @babel/cli from 7.13.0 to 7.13.10 (#33314)dependabot[bot]2-4/+4
Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.13.0 to 7.13.10. - [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.10/packages/babel-cli) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-10Bump rollup from 2.40.0 to 2.41.0 (#33312)dependabot[bot]2-4/+4
Bumps [rollup](https://github.com/rollup/rollup) from 2.40.0 to 2.41.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.40.0...v2.41.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-10Bump @babel/core from 7.13.8 to 7.13.10 (#33311)dependabot[bot]2-11/+29
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.13.8 to 7.13.10. - [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.10/packages/babel-core) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-09Bump karma from 6.1.1 to 6.1.2 (#33313)dependabot[bot]2-4/+4
Bumps [karma](https://github.com/karma-runner/karma) from 6.1.1 to 6.1.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.1.1...v6.1.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-08Update devDependencies (#33307)XhmikosR5-440/+194
* @popperjs/core ^2.9.0 → ^2.9.1 * autoprefixer ^10.2.4 → ^10.2.5 * clean-css-cli ^5.2.0 → ^5.2.1 * postcss ^8.2.6 → ^8.2.7 * stylelint ^13.11.0 → ^13.12.0
2021-03-08Bump jquery from 3.5.1 to 3.6.0 (#33242)dependabot[bot]2-4/+4
Bumps [jquery](https://github.com/jquery/jquery) from 3.5.1 to 3.6.0. - [Release notes](https://github.com/jquery/jquery/releases) - [Commits](https://github.com/jquery/jquery/compare/3.5.1...3.6.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-08modal: move common code to a new `isAnimated` method (#33056)GeoSot1-16/+17
2021-03-02Offcanvas as component (#29017)GeoSot20-20/+1201
* Add a new offcanvas component * offcanvas.js: switch to string constants and `event.key` * Remove unneeded code * Sass optimizations * Fixes Make sure the element is hidden and not offscreen when inactive fix close icon negative margins Add content in right & bottom examples Re-fix bottom offcanvas height not to cover all viewport * Wording tweaks * update tests and offcanvas class * separate scrollbar functionality and use it in offcanvas * Update .bundlewatch.config.json * fix focus * update btn-close / fix focus on close * add aria-modal and role return focus on trigger when offcanvas is closed change body scrolling timings * move common code to reusable functions * add aria-labelledby * Replace lorem ipsum text * fix focus when offcanvas is closed * updates * revert modal, add tests for scrollbar * show backdrop by default * Update offcanvas.md * Update offcanvas CSS to better match modals - Add background-clip for borders - Move from outline to border (less clever, more consistent) - Add scss-docs in vars * Revamp offcanvas docs - Add static example to show and explain the components - Split live examples and rename them - Simplify example content - Expand docs notes elsewhere - Add sass docs * Add .offcanvas-title instead of .modal-title * Rename offcanvas example to offcanvas-navbar to reflect it's purpose * labelledby references title and not header * Add default shadow to offcanvas * enable offcanvas-body to fill all the remaining wrapper area * Be more descriptive, on Accessibility area * remove redundant classes * ensure in case of an already open offcanvas, not to open another one * bring back backdrop|scroll combinations * bring back toggling class * refactor scrollbar method, plus tests * add check if element is not full-width, according to #30621 * revert all in modal * use documentElement innerWidth * Rename classes to -start and -end Also copyedit some docs wording * omit some things on scrollbar * PASS BrowserStack tests -- IOS devices, Android devices and Browsers on Mac, hide scrollbar by default and appear it, only while scrolling. * Rename '_handleClosing' to '_addEventListeners' * change pipe usage to comma * change Data.getData to Data.get Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Martijn Cuppens <[email protected]> Co-authored-by: Mark Otto <[email protected]>
2021-03-02Dropdown — Drop `flip` option (#33198)Rohit Sharma3-9/+2
2021-03-02Rename _gh_pages to _site. (#33129)XhmikosR9-10/+10
2021-03-02refactor: use a Map instead of an Object in dom/data (#32180)alpadev15-161/+126
Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Rohit Sharma <[email protected]>
2021-03-02Reset select:disabled opacity and null-ify color to fix rendering ↵Mark Otto2-6/+8
differences in Chrome
2021-03-02CodeQL: skip dependabot PRs too (#33130)XhmikosR1-0/+1
2021-03-02Add an example of v4's media component in the flex utils docs (#33207)Mark Otto2-1/+29
* Add an example of v4's media component in the flex utils docs * Link to new example from Migration guide Co-authored-by: XhmikosR <[email protected]>
2021-03-02Bump @popperjs/core from 2.8.3 to 2.9.0 (#33240)dependabot[bot]3-8/+8
* Bump @popperjs/core from 2.8.3 to 2.9.0 Bumps [@popperjs/core](https://github.com/popperjs/popper-core) from 2.8.3 to 2.9.0. - [Release notes](https://github.com/popperjs/popper-core/releases) - [Commits](https://github.com/popperjs/popper-core/compare/v2.8.3...v2.9.0) Signed-off-by: dependabot[bot] <[email protected]> * Update config.yml Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-02Bump lockfile-lint from 4.6.1 to 4.6.2 (#33238)dependabot[bot]2-8/+8
Bumps [lockfile-lint](https://github.com/lirantal/lockfile-lint) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/lirantal/lockfile-lint/releases) - [Commits](https://github.com/lirantal/lockfile-lint/compare/[email protected]@4.6.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-02Bump rollup from 2.39.1 to 2.40.0 (#33236)dependabot[bot]2-4/+4
Bumps [rollup](https://github.com/rollup/rollup) from 2.39.1 to 2.40.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.39.1...v2.40.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-02Bump karma-rollup-preprocessor from 7.0.5 to 7.0.6 (#33235)dependabot[bot]2-4/+4
Bumps [karma-rollup-preprocessor](https://github.com/jlmakes/karma-rollup-preprocessor) from 7.0.5 to 7.0.6. - [Release notes](https://github.com/jlmakes/karma-rollup-preprocessor/releases) - [Changelog](https://github.com/jlmakes/karma-rollup-preprocessor/blob/master/CHANGELOG.md) - [Commits](https://github.com/jlmakes/karma-rollup-preprocessor/compare/7.0.5...7.0.6) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-02Bump @babel/preset-env from 7.12.17 to 7.13.9 (#33234)dependabot[bot]2-218/+454
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.12.17 to 7.13.9. - [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.9/packages/babel-preset-env) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-02Bump @babel/cli from 7.12.17 to 7.13.0 (#33186)dependabot[bot]2-4/+4
Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.12.17 to 7.13.0. - [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.0/packages/babel-cli) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-02Bump eslint from 7.20.0 to 7.21.0 (#33233)dependabot[bot]2-10/+9
Bumps [eslint](https://github.com/eslint/eslint) from 7.20.0 to 7.21.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.20.0...v7.21.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-03-02Bump @babel/core from 7.12.17 to 7.13.8 (#33232)dependabot[bot]2-17/+187
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.12.17 to 7.13.8. - [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.8/packages/babel-core) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-01fix(navs): ensure button will grow in fill/justified navGaël Poupard1-0/+7
2021-03-01fix(list-group): properly set a color on list-group-itemsGaël Poupard1-1/+1
2021-03-01fix(forms): validated controls in input-groupGaël Poupard1-0/+7
2021-02-24Bundlewatch: stop ignoring dependabot branches (#33192)XhmikosR1-2/+0
2021-02-23modal: don't add margin & padding when sticky is not full width (#30621)Muhammadamin2-0/+28
* modal: don't add margin & padding when sticky is not full width * Check if element is shorter than window Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Rohit Sharma <[email protected]>
2021-02-23Bump @rollup/plugin-replace from 2.4.0 to 2.4.1 (#33190)dependabot[bot]2-4/+4
Bumps [@rollup/plugin-replace](https://github.com/rollup/plugins) from 2.4.0 to 2.4.1. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/replace-v2.4.0...replace-v2.4.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-23Bump rollup from 2.39.0 to 2.39.1 (#33189)dependabot[bot]2-4/+4
Bumps [rollup](https://github.com/rollup/rollup) from 2.39.0 to 2.39.1. - [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.39.0...v2.39.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-23Bump @popperjs/core from 2.8.2 to 2.8.3 (#33188)dependabot[bot]3-8/+8
* Bump @popperjs/core from 2.8.2 to 2.8.3 Bumps [@popperjs/core](https://github.com/popperjs/popper-core) from 2.8.2 to 2.8.3. - [Release notes](https://github.com/popperjs/popper-core/releases) - [Commits](https://github.com/popperjs/popper-core/compare/v2.8.2...v2.8.3) Signed-off-by: dependabot[bot] <[email protected]> * Update config.yml Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-22docs(migration): duplicated 5.0.0-beta2 heading (#33178)Gaël Poupard1-2/+0
2021-02-22Update devDependencies (#33150)XhmikosR3-319/+226
* @babel/cli ^7.12.16 → ^7.12.17 * @babel/core ^7.12.16 → ^7.12.17 * @babel/preset-env ^7.12.16 → ^7.12.17 * @popperjs/core ^2.6.0 → ^2.8.2 * @rollup/plugin-replace ^2.3.4 → ^2.4.0 * eslint-config-xo ^0.34.0 → ^0.35.0 * eslint-plugin-unicorn ^28.0.1 → ^28.0.2 * hugo-bin ^0.68.0 → ^0.69.0 * linkinator ^2.13.4 → ^2.13.6 * lockfile-lint ^4.3.7 → ^4.6.1 * sass ^1.32.7 → ^1.32.8 * stylelint ^13.10.0 → ^13.11.0
2021-02-22Allow constructors to accept a CSS selector (#32245)Rohit Sharma16-6/+151
Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]>
2021-02-22Remove the default positioning from `.dropup` (#33120)Rohit Sharma1-6/+3
2021-02-22fix(card): siblings card links in RTL (#33154)Gaël Poupard1-1/+1
Fixes a bug mentionned in [#32330](https://github.com/twbs/bootstrap/issues/32330#issuecomment-782001326). Co-authored-by: XhmikosR <[email protected]>
2021-02-22visual tests: add missing base-component dist file (#33167)XhmikosR11-0/+11
Regression of #32313
2021-02-21Fix small typos / follow-up to #32630 (#33164)Patrick H. Lauke2-2/+2
2021-02-19Adjust regex `SAFE_URL_PATTERN` for use with test method of regexes. (#33136)Nikon the Third2-1/+11
The test method on regexes behaves different than the match method on strings in the presence of the global modifier. Add a unit test for sanitizing the same template twice. Co-authored-by: XhmikosR <[email protected]>
2021-02-19linkinator: replace `--silent` with `--verbosity` (#33100)XhmikosR1-1/+1
2021-02-18Update clean-css-cli to v5.2.0. (#33099)XhmikosR2-15/+15
* Update clean-css-cli to v5.2.0 * Enable clean-css's batch flag
2021-02-18add some spacenlipka1-0/+1
2021-02-17Clarify docs around .navbar-brand (#33123)Mark Otto1-4/+12
- Add new headings and text for each example - Fixes #33072 by changing align-* class
2021-02-16Bump eslint-plugin-unicorn from 27.0.0 to 28.0.1 (#33116)dependabot[bot]2-4/+5
Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 27.0.0 to 28.0.1. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v27.0.0...v28.0.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-16Bump stylelint from 13.9.0 to 13.10.0 (#33115)dependabot[bot]2-8/+8
Bumps [stylelint](https://github.com/stylelint/stylelint) from 13.9.0 to 13.10.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.9.0...13.10.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-16Bump karma from 6.0.4 to 6.1.1 (#33112)dependabot[bot]2-10/+10
Bumps [karma](https://github.com/karma-runner/karma) from 6.0.4 to 6.1.1. - [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.4...v6.1.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-16Bump sass from 1.32.6 to 1.32.7 (#33114)dependabot[bot]2-4/+4
Bumps [sass](https://github.com/sass/dart-sass) from 1.32.6 to 1.32.7. - [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.6...1.32.7) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-02-16Bump @rollup/plugin-babel from 5.2.3 to 5.3.0 (#33113)dependabot[bot]2-4/+4
Bumps [@rollup/plugin-babel](https://github.com/rollup/plugins) from 5.2.3 to 5.3.0. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/babel-v5.2.3...babel-v5.3.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-16Bump rollup from 2.38.5 to 2.39.0 (#33107)dependabot[bot]2-4/+4
Bumps [rollup](https://github.com/rollup/rollup) from 2.38.5 to 2.39.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.38.5...v2.39.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-02-16Bump @babel/preset-env from 7.12.13 to 7.12.16 (#33111)dependabot[bot]2-29/+40