| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2021-02-16 | util: change `isRTL` to a function (#32446) | XhmikosR | 1 | -4/+3 | |
| This allows the bundler to tree-shake the function. | |||||
| 2021-02-10 | Release v5.0.0-beta2 (#32467)v5.0.0-beta2 | XhmikosR | 1 | -1/+1 | |
| * Bump version to 5.0.0-beta2 * Dist | |||||
| 2021-02-09 | Add function type for `popperConfig` option (#32882) | Rohit Sharma | 1 | -4/+4 | |
| * Add function type for `popperConfig` option * Update .bundlewatch.config.json * copy edits Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]> | |||||
| 2021-02-04 | Fix Popper preventOverflow boundary config (#32845) | Kyle Tsang | 1 | -1/+1 | |
| 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 | |||||
| 2021-01-28 | Restore `offset` option for tooltip/popover components | Rohit Sharma | 1 | -0/+22 | |
| 2021-01-27 | Tooltip refactoring (#32523) | GeoSot | 1 | -84/+74 | |
| * tooltip: move common code to a reusable function * tooltip: return early in `show()` Co-authored-by: Rohit Sharma <[email protected]> Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-12-14 | Tooltip/popover - change the default value for `fallbackPlacements` (#32437) | Rohit Sharma | 1 | -15/+9 | |
| The default Popper `fallbackPlacements` value is `[oppositePlacement]`. - The default value was previously (in v4) `'flip'` that can be achieved by passing the single value in the array, like — `[oppositePlacement]`. Keeping `null` also sets the `fallbackPlacements` to `[oppositePlacement]` (Default value in Popper) - It's better to have **clockwise** (`['top', 'right', 'bottom', 'left']`) fallback options so that tooltip/popover can be placed to another side even if the opposite placement doesn't fit. Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-12-10 | Tooltip - check if tip and its parent node exist in dispose method (#32420) | Rohit Sharma | 1 | -1/+1 | |
| 2020-12-10 | Remove `TRANSITION_END` from utils (#32394) | XhmikosR | 1 | -3/+2 | |
| 2020-12-09 | Add fallback behaviour | Martijn Cuppens | 1 | -1/+2 | |
| 2020-12-08 | Refactor components to use a utility function to define jQuery plugins (#32285) | alpadev | 1 | -15/+2 | |
| * refactor: use an utility function to define jQuery plugins * test: add spec for defineJQueryPlugin utility function * Update .bundlewatch.config.json Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-12-07 | Prepare v5.0.0-beta1. | XhmikosR | 1 | -1/+1 | |
| 2020-12-06 | Update to popper.js v2.x | Johann-S | 1 | -59/+50 | |
| 2020-12-04 | feat(RTL): implement RTL | Gaël Poupard | 1 | -3/+16 | |
| Using RTLCSS directives, renaming things to use logical names and following best practices. | |||||
| 2020-12-02 | Unbreak lines. (#32304) | XhmikosR | 1 | -26/+9 | |
| 2020-11-30 | tooltip.js: reuse existent variable | XhmikosR | 1 | -2/+2 | |
| 2020-11-30 | Extra check for existence of any `aria-label` | Patrick H. Lauke | 1 | -2/+2 | |
| before overwriting it... | |||||
| 2020-11-30 | Accessibility update for tooltip.js | Matty Williams | 1 | -0/+4 | |
| Update to the tooltip.js to add an aria-label attribute that contains the original title of the element, but only if the element doesn't have an existing aria-label attribute. This is to address cases where screen readers are not capturing the aria-describedby attribute that is added when the tooltip is triggered. This should also avoid a race condition between the screen reader and the appearance of the tooltip. | |||||
| 2020-11-29 | Remove setData from construtors (#32264) | Rohit Sharma | 1 | -1/+0 | |
| 2020-11-29 | Move `VERSION` to BaseComponent (#32254) | Rohit Sharma | 1 | -5/+0 | |
| 2020-11-29 | add dispose in base component | Johann-S | 1 | -3/+1 | |
| 2020-11-29 | create a base component | Johann-S | 1 | -37/+35 | |
| 2020-11-25 | Ability to add custom class in tooltip/popover (#32217) | Rohit Sharma | 1 | -0/+7 | |
| Porting of #31834 to main. Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-11-21 | Be consistent with Popper's name. (#32224) | XhmikosR | 1 | -1/+1 | |
| The npm package is named "popper.js" but the project is named "Popper", so use the latter consistently. | |||||
| 2020-11-14 | Switch to `Set#has()` | XhmikosR | 1 | -2/+2 | |
| 2020-11-14 | Switch to `String.includes()` | XhmikosR | 1 | -1/+1 | |
| 2020-11-14 | tooltip.js: deduplicate `_fixTitle()` (#32124) | XhmikosR | 1 | -7/+4 | |
| 2020-11-14 | Add `bs` in data attributes | Rohit Sharma | 1 | -3/+3 | |
| - Add `bs` in data APIs everywhere - Update unit tests | |||||
| 2020-11-11 | Prepare v5.0.0-alpha3 (#32122)v5.0.0-alpha3 | XhmikosR | 1 | -2/+2 | |
| 2020-11-01 | Streamline jQuery comment. (#32016) | XhmikosR | 1 | -1/+1 | |
| 2020-11-01 | Fix TypeError when Bootstrap is included in `head` (#32024) | Sascha | 1 | -11/+14 | |
| * extend jquery after domContentLoaded event is fired * add unittest for util onDOMContentLoaded * wait for trigger jquery event after domContentLoaded * remove domcontentready from eventHandler * move istanbul ignore statements to correct line Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-09-29 | Prepare v5.0.0-alpha2. (#31748)v5.0.0-alpha2 | XhmikosR | 1 | -2/+2 | |
| 2020-09-24 | fix tooltip hide method when already hidden (#31115) | Hiws | 1 | -0/+4 | |
| Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-07-12 | Add parentheses around multiple spread conditions | XhmikosR | 1 | -2/+2 | |
| 2020-07-12 | tooltip.js: remove variable used once. | XhmikosR | 1 | -2/+1 | |
| 2020-07-12 | Unbreak lines. | XhmikosR | 1 | -6/+5 | |
| 2020-06-19 | Change whitelist to allowlist (#31066) | Patrick H. Lauke | 1 | -6/+6 | |
| Co-authored-by: XhmikosR <[email protected]> Co-authored-by: Mark Otto <[email protected]> | |||||
| 2020-06-18 | Fix tooltip when hovering a children element (delegateTarget) (#30928) | Tanguy Krotoff | 1 | -9/+9 | |
| Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-06-17 | Unbreak short lines | XhmikosR | 1 | -5/+1 | |
| 2020-06-16 | Rename "master" to "main". (#31050) | XhmikosR | 1 | -1/+1 | |
| 2020-05-13 | Bump version to 5.0.0-alpha1 (#29925) | XhmikosR | 1 | -2/+2 | |
| Also add v4.5.0 in versions and keep README.md pointing to v4.5.0 so that there are no broken stuff. | |||||
| 2020-04-28 | Drop closest from SelectorEngine (#30653) | Martijn Cuppens | 1 | -2/+2 | |
| Co-authored-by: XhmikosR <[email protected]> | |||||
| 2020-04-17 | Replace event.delegateTarget with event.target | Tanguy Krotoff | 1 | -9/+9 | |
| No need for fixEvent() anymore | |||||
| 2020-04-09 | Pass multiple classes to `classList.add` / `classList.remove` (#30537) | XhmikosR | 1 | -2/+1 | |
| This is supported by our currently supported browsers. | |||||
| 2020-03-29 | Use `textContent` instead of `innerText`. (#30462) | XhmikosR | 1 | -2/+2 | |
| It's supported by all of our supported browsers. | |||||
| 2020-03-25 | fix: remove make array util function (#30430) | Johann-S | 1 | -3/+2 | |
| 2020-03-18 | Switch to strings constants. | XhmikosR | 1 | -48/+40 | |
| This allows the minifier to mangle the constants. It also allows the linter to find unused strings properly. While at it, remove a few unused properties. File Before After Diff -------------------------------------------------------- bootstrap.bundle.min.js 23.61 kB 22.61 kB -1.00 kB (-4.23 %) bootstrap.min.js 17.04 kB 16.08 kB -0.96 kB (-5.63 %) | |||||
| 2020-03-09 | Improvement: harmonize usage of constants (#30285) | Sparks | 1 | -2/+3 | |
| 2020-01-07 | Use regex.test() when we want to check for a Boolean. (#29969) | XhmikosR | 1 | -3/+2 | |
| 2019-10-03 | return to the original file structure to avoid breaking modularity | Johann-S | 1 | -0/+827 | |
