Skip to content

Commit

Permalink
[TASK] Update Bootstrap to 5.0.1
Browse files Browse the repository at this point in the history
Executed command:

  yarn add "bootstrap@^5.0.1"

Also, some minor coding issues were solved that popped up
with the update.

Resolves: #94138
Releases: master
Change-Id: Ie80eff09efba43cfb9ae60862cb2167b0bc3f12f
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/69146
Tested-by: core-ci <typo3@b13.com>
Tested-by: Richard Haeser <richard@richardhaeser.com>
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Richard Haeser <richard@richardhaeser.com>
Reviewed-by: Benni Mack <benni@typo3.org>
  • Loading branch information
andreaskienast authored and bmack committed May 14, 2021
1 parent 169eb06 commit b50d8a7
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 14 deletions.
Expand Up @@ -37,6 +37,7 @@ export class SelectTreeElement {
this.tree.addEventListener('typo3:svg-tree:node-selected', () => { callback(); } );

const settings = {
id: treeWrapperId,
dataUrl: this.generateRequestUrl(),
readOnlyMode: parseInt(this.recordField.dataset.readOnly, 10) === 1,
input: this.recordField,
Expand Down
Expand Up @@ -93,7 +93,7 @@ class Popover {
$element.each((i, el) => {
const popover = $(el).data('typo3.bs.popover');
if (popover) {
popover.config[key] = value;
popover._config[key] = value;
}
});
}
Expand Down
Expand Up @@ -157,7 +157,7 @@ export class SvgTree extends LitElement {
delay: 50,
trigger: 'hover',
placement: 'right',
container: '#' + this.id,
container: typeof this.settings.id !== 'undefined' ? '#' + this.settings.id : 'body',
}

this.updateScrollPosition();
Expand Down
2 changes: 1 addition & 1 deletion Build/package.json
Expand Up @@ -82,7 +82,7 @@
"@popperjs/core": "^2.9.1",
"@typo3/icons": "^2.2.2",
"autosize": "^4.0.2",
"bootstrap": "^5.0.0",
"bootstrap": "^5.0.1",
"broadcastchannel-polyfill": "^1.0.0",
"chart.js": "^2.9.3",
"chosen-js": "^1.8.7",
Expand Down
8 changes: 4 additions & 4 deletions Build/yarn.lock
Expand Up @@ -1316,10 +1316,10 @@ boolbase@^1.0.0, boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=

bootstrap@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.0.0.tgz#97635ac0e0d6cb466700ebf0fd266bfabf352ed2"
integrity sha512-tmhPET9B9qCl8dCofvHeiIhi49iBt0EehmIsziZib65k1erBW1rHhj2s/2JsuQh5Pq+xz2E9bEbzp9B7xHG+VA==
bootstrap@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.0.1.tgz#e7939d599119dc818a90478a2a299bdaff037e09"
integrity sha512-Fl79+wsLOZKoiU345KeEaWD0ik8WKRI5zm0YSPj2oF1Qr+BO7z0fco6GbUtqjoG1h4VI89PeKJnMsMMVQdKKTw==

boxen@^1.2.1:
version "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion typo3/sysext/backend/Resources/Public/Css/backend.css

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b50d8a7

Please sign in to comment.