aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-08-04Prepare v4.5.1. (#31408)v4.5.1XhmikosR69-1012/+443
2020-08-04Backport #31339 (#31414)XhmikosR2-1/+21
* Backport #31339 Add view on GitHub links for easier content editing from the docs
2020-08-03Remove overflow: hidden from toasts (#31381) (#31407)XhmikosR1-1/+1
Co-authored-by: Mark Otto <[email protected]>
2020-08-03Update devDependencies and gemsXhmikosR3-300/+297
* @babel/cli ^7.10.4 → ^7.11.0 * @babel/core ^7.10.4 → ^7.11.0 * @rollup/plugin-babel ^5.0.4 → ^5.1.0 * @rollup/plugin-commonjs ^13.0.0 → ^14.0.0 * @rollup/plugin-node-resolve ^8.1.0 → ^8.4.0 * autoprefixer ^9.8.4 → ^9.8.6 * eslint ^7.4.0 → ^7.6.0 * karma ^5.1.0 → ^5.1.1 * rollup ^2.21.0 → ^2.23.0
2020-08-03Backport #31344XhmikosR1-0/+1
Add toasts to the components requiring JavaScript
2020-08-03docs(skippy): prevent skip links from overlapping headerGaël Poupard2-13/+21
2020-08-03Add unit test for toast to check clearTimeout to have been called (#31298)Rohit Sharma1-0/+31
2020-08-03Clear timeout before showing the toast (#31155)Rohit Sharma1-2/+8
* clear timeout before showing the toast * Add unit test * Remove the check for timeout * Check for clearTimeout to have been called Co-authored-by: XhmikosR <[email protected]> # Conflicts: # js/tests/unit/toast.spec.js
2020-08-02Update to Ruby 2.7/Bundler 2.x. (#31296)XhmikosR2-7/+7
2020-07-21Turn off scroll anchoring for accordions (#31347)Patrick H. Lauke1-0/+2
New default behavior for scroll anchoring (rolled out in Chrome 84?) leads to unsightly/odd accordion interactions - see #31341 This rule suppresses this new behavior and reverts back to the old way. See https://drafts.csswg.org/css-scroll-anchoring/
2020-07-12Docs: forms accessibility cleanup (backport from v5) (#31234)Patrick H. Lauke2-13/+26
* Expand advice for anchor-based controls * Expand accessibility note in input group * Correct statement about validation, fix server example * Tweak label > accessible name Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]>
2020-07-09Update dependencies, gems and regenerate package-lock.json (#31261)XhmikosR8-51/+65
* @rollup/plugin-node-resolve 8.1.0 * popper.js 1.16.1 * qunit 2.10.1 * rollup 2.21.0
2020-07-06Update devDependencies and gemsXhmikosR4-742/+618
2020-07-06Update Babel config (#31011)XhmikosR2-6/+2
* remove plugin-proposal-object-rest-spread * add bugfixes * `exclude: ['transform-typeof-symbol']` did nothing with our config
2020-07-06Backport #30326 (Unit test)ysds1-0/+17
2020-07-06Backport #30326XhmikosR1-1/+14
Prevent overflowing static backdrop modal animation TODO: backport the test too
2020-07-06Backport #31135XhmikosR1-9/+9
* Move color utility callouts to start of page Hierarchically/structurally, in the position they are currently at, the two callouts seem like they "belong" just to the "background color" section. Moving them to the start makes it clearer that those two callouts relate to everything in the page (both "Color" and "Background color" classes. * Change heading level otherwise the assistive technology callout looks like it's hierarchically under the "Dealing with specificity" heading
2020-07-06BrowserStack: test on Edge 15XhmikosR1-1/+1
2020-07-06Remove backdrop-filter from toastsMark Otto1-1/+0
2020-06-24Floating labels improvements (#30966)Gaël Poupard1-8/+28
* docs(example): floating-labels' better Edge fallback * docs(example): refactor floating-labels' CSS
2020-06-24Update devDependencies and gemsXhmikosR3-620/+514
2020-06-24Docs: add Gaël Poupard to the core team page (#31081)Patrick H. Lauke1-0/+3
Docs: add Gaël Poupard to the core team page
2020-06-24Backport #31070XhmikosR1-1/+1
* Make example less broken-looking don't want to give impression that now it's ok to just sprinkle `role="button"` around. this at least makes the `span` keyboard-focusable, similar to at least the start of a custom control
2020-06-24README.md: update badgesXhmikosR1-12/+12
* remove .svg from shields.io badges since it's the default * switch to shields.io for the OC badges too * fix badgesize badges' labels
2020-06-24Fix typoXhmikosR1-1/+1
2020-06-24Update issue templates from main.XhmikosR2-4/+10
2020-06-24Remove unused issue templatesXhmikosR3-22/+2
2020-06-24Update links to point to v4-dev or main branchesXhmikosR33-44/+44
2020-06-24Split GitHub Actions.XhmikosR9-89/+283
2020-06-24Stylelint: remove redundant inline suppressionsXhmikosR3-15/+5
2020-06-24Update .gitattributes (#30934)XhmikosR1-12/+2
This requires git >= 2.10 but it was released almost 4 years ago.
2020-06-24Backport #30973XhmikosR4-25/+27
Remove the class `.nav-item` from `.nav-link` inside the non `ul` or `ol` based navs. This makes the consistency for `.nav-item` (This class will not be required on the `.nav-link`). `.nav-item` was only required when you use `.nav-fill` or `.nav-justified` on the `.nav`. In other cases, it was redundant. And the purpose of `.nav-item` on `.nav-link`s can be achieved via flexbox utilities as well (Mentioned in the docs also).
2020-06-24Prevent `.row` from shrinking in flex container (#30940)Gaël Poupard1-0/+1
2020-06-23Remove duplicate properties after #30922 (#31148)Martijn Cuppens1-4/+0
2020-06-15fix(custom forms): disabled checked states weren't overriding ↵Gaël Poupard1-0/+4
background-image (#30922)
2020-06-14Avoid duplication of container breakpoints (#30969)k-utsumi2-15/+1
2020-06-13Floating labels examples in IE (#30965)Gaël Poupard2-12/+13
* docs(example): drop IE workaround since it works fine in IE * Serial comma Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]>
2020-06-10Backport #30979 (#30999)Gaël Poupard1-1/+0
fix(grid)[manual backport]: zero min-width on .col has too much side-effects
2020-06-10avoid preventing input event onclick (#30992)Laussel Loïc2-3/+42
* instead of stopping event if onclick is triggered on input, call toggle method only if its not on checkbox inside a label * add unit test * add a dedicated test to ensure click event is forward to label Co-authored-by: XhmikosR <[email protected]>
2020-06-10docs(toasts): centered examples flexbugs #3 in IE11Gaël Poupard1-1/+1
2020-06-10fix(toasts): IE11 shrinks toasts when in flex container, unless we specify ↵Gaël Poupard1-0/+3
flex-basis
2020-06-04visual/modal.html: fix close buttons placementXhmikosR1-3/+3
2020-06-04Bump bundlewatch limitsXhmikosR1-2/+2
2020-06-04Backport #30936XhmikosR4-22/+41
Add role="dialog" in modals via JavaScript
2020-06-04Backport #30932XhmikosR2-2/+3
Restore word-break: break-word on .text-break to fix text breaking on flex containers
2020-06-04Update devDependencies and gemsXhmikosR4-766/+887
2020-06-04CI: update to `actions/cache@2`XhmikosR1-2/+2
2020-06-04Remove ESLint `object-curly-newline` rule.XhmikosR1-1/+0
2020-06-04Backport #30742XhmikosR6-60/+29
Update to `@rollup/plugin-babel`
2020-06-04Prevent conflicts with components with classes (#30830)Martijn Cuppens1-1/+1