aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-04-14Have $form-check-input-border's default derive from ($black instead of ↵Carson1-1/+1
hard-coded black)
2021-04-14refactor(color-scheme): reduce complexityGaël Poupard1-12/+2
2021-04-14Bump rollup from 2.45.1 to 2.45.2 (#33615)dependabot[bot]2-4/+4
Bumps [rollup](https://github.com/rollup/rollup) from 2.45.1 to 2.45.2. - [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.1...v2.45.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-04-13Hide validation icons from multiple selectsGeremia Taglialatela1-11/+6
Implementation provided in #33411 does not take into account that some Operating Systems may display a vertical scrollbar in the multiple select field This implementation will hide the validation icons from multiple select fields, just like Bootstrap 4 does. Fix: #33591
2021-04-13fix: make EventHandler better handle mouseenter/mouseleave events (#33310)alpadev2-11/+105
* fix: make EventHandler better handle mouseenter/mouseleave events * refactor: simplify custom events regex and move it to a variable
2021-04-13Update devDependencies (#33590)XhmikosR2-191/+190
* @babel/core ^7.13.14 → ^7.13.15 * @babel/preset-env ^7.13.12 → ^7.13.15 * eslint ^7.23.0 → ^7.24.0 * postcss ^8.2.9 → ^8.2.10 * rollup ^2.44.0 → ^2.45.1 * vnu-jar 21.2.5 → 21.4.9
2021-04-11refactor: make static `selectMenuItem` method private (#33589)alpadev1-26/+26
2021-04-11Remove element event listeners through base component (#33429)GeoSot6-7/+3
After some research, I found out that EventHandler saves all the custom events per element using namespace, and is capable of removing handlers using only the element and its namespace (`DATA_KEY`). So, probably is better to utilize the base-component to do the same job.
2021-04-11Update tests to check for `noop` to be removedRohit Sharma2-4/+5
2021-04-11Dropdown — Don't use event delegationRohit Sharma1-3/+3
2021-04-11Use cached `noop` function everywhereRohit Sharma4-7/+7
2021-04-11Decouple Modal's scrollbar functionality (#33245)GeoSot4-121/+27
2021-04-10Add color-scheme mixinMark Otto3-0/+40
2021-04-09docs: update clipboard.js to v2.0.8 (#33583)XhmikosR1-3/+3
2021-04-09footer: fix `rel=noopener` attribute (#33571)XhmikosR1-12/+12
There's no need to use `rel=noopener` without `target=_blank`, but otherwise, it should be used since it's a potential security issue.
2021-04-08Remove unnecessary `data-bs-backdrop="static"` (#33578)Rohit Sharma1-3/+3
Since the value for the `backdrop` option is available in the configuration object.
2021-04-07Fix wrong carousel transformation, direction to order (#33499)GeoSot2-26/+26
2021-04-06Improve responsiveness of Features examplesMark Otto1-14/+14
2021-04-06Fixed wrong method name _getInstanceDanny Trunk1-1/+1
There is no _getInstance method, but there is a getInstance method
2021-04-06Revert "Update look and feel of examples and copy buttons"Mark Otto2-41/+13
This reverts commit cdf56e0eefd797d4b0f26021d24958fc315a5f2c.
2021-04-06Remove noopener from target _blank linksMark Otto1-1/+1
2021-04-06Add equal column mixin (#32155)CFX2-3/+11
2021-04-06Omit getting data-attributes from toggle elementGeoSot1-1/+1
2021-04-06Simplify Modal configGeoSot2-27/+29
2021-04-06Simplify ScrollSpy config (#33250)GeoSot2-12/+26
2021-04-06Bump @popperjs/core from 2.9.1 to 2.9.2 (#33558)dependabot[bot]3-8/+8
* Bump @popperjs/core from 2.9.1 to 2.9.2 Bumps [@popperjs/core](https://github.com/popperjs/popper-core) from 2.9.1 to 2.9.2. - [Release notes](https://github.com/popperjs/popper-core/releases) - [Commits](https://github.com/popperjs/popper-core/compare/v2.9.1...v2.9.2) Signed-off-by: dependabot[bot] <[email protected]> * Update SRI Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <[email protected]>
2021-04-06Bump postcss from 8.2.8 to 8.2.9 (#33557)dependabot[bot]2-5/+5
Bumps [postcss](https://github.com/postcss/postcss) from 8.2.8 to 8.2.9. - [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.8...8.2.9) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-04Update look and feel of examples and copy buttonsMark Otto2-13/+41
2021-04-04Spinner alignment changesMark Otto2-2/+3
2021-04-04Add offcanvas-top modifier (#33549)Mark Otto2-1/+26
2021-04-04Vertically align offcanvas header componentsMark Otto1-0/+1
Fixes #33460
2021-04-04Update parcel.mdYuriy Gorbunov1-1/+1
2021-04-02Fix validation feedback icon in select multipleGeremia Taglialatela1-0/+8
Validation feedback for `<select multiple>` should look like `<textarea>`. The previous implementation was placing the validation icon in the middle of the select field together with the single select arrow, that is not supposed to be part of this kind of inputs
2021-04-01Add missing things in `hide` method of dropdown (#33451)Rohit Sharma2-3/+44
* Update `aria-expanded` attribute in `hide` method * Remove empty mouseover listeners added for iOS
2021-04-01Fix dropdown escape propagation (#33479)alpadev2-28/+68
2021-03-30Add new docs footer (#33453)Mark Otto2-14/+57
* Replace site footer with mega footer to link to various projects and community resources * Fix broken HTML
2021-03-30Make .nav-link color consistent when using buttons (#33478)Kyle Tsang1-2/+2
* Make .nav-link color consistent when using buttons * Set $nav-link-hover-color to $link-hover-color as default
2021-03-31Clarify docs accordion example (#33522)Mark Otto1-1/+1
2021-03-30The spacing margin side identifiers 's' and 'e' may be intuitive for many ↵John1-2/+2
but explicitly helping users associate the abbreviations to 'start' and 'end' should help people migrate from version 4 with less friction
2021-03-30Regenerate package-lock.json (#33518)XhmikosR1-259/+156
2021-03-30Bump eslint from 7.22.0 to 7.23.0 (#33517)dependabot[bot]2-10/+10
Bumps [eslint](https://github.com/eslint/eslint) from 7.22.0 to 7.23.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.22.0...v7.23.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-30Bump rollup from 2.42.3 to 2.44.0 (#33514)dependabot[bot]2-4/+4
Bumps [rollup](https://github.com/rollup/rollup) from 2.42.3 to 2.44.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.42.3...v2.44.0) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-30Bump karma from 6.2.0 to 6.3.2 (#33516)dependabot[bot]2-7/+7
Bumps [karma](https://github.com/karma-runner/karma) from 6.2.0 to 6.3.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.2.0...v6.3.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-30Bump @rollup/plugin-node-resolve from 11.2.0 to 11.2.1 (#33515)dependabot[bot]2-4/+4
Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins) from 11.2.0 to 11.2.1. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/node-resolve-v11.2.0...node-resolve-v11.2.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-30Bump @rollup/plugin-commonjs from 17.1.0 to 18.0.0 (#33513)dependabot[bot]2-4/+4
Bumps [@rollup/plugin-commonjs](https://github.com/rollup/plugins) from 17.1.0 to 18.0.0. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/commonjs-v17.1.0...commonjs-v18.0.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-30Bump @rollup/plugin-replace from 2.4.1 to 2.4.2 (#33512)dependabot[bot]2-4/+4
Bumps [@rollup/plugin-replace](https://github.com/rollup/plugins) from 2.4.1 to 2.4.2. - [Release notes](https://github.com/rollup/plugins/releases) - [Commits](https://github.com/rollup/plugins/compare/replace-v2.4.1...replace-v2.4.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-30Bump @babel/cli from 7.13.10 to 7.13.14 (#33511)dependabot[bot]2-4/+4
2021-03-30Bump @babel/core from 7.13.10 to 7.13.14 (#33510)dependabot[bot]2-17/+104
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.13.10 to 7.13.14. - [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.14/packages/babel-core) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-30Use template literals instead of concatenation (#33497)Rohit Sharma3-6/+4
2021-03-30Use our `isDisabled` util on dropdown (#33456)GeoSot1-5/+5