release 3.8.0

This commit is contained in:
m.smolenski 2021-06-14 08:48:42 +02:00
parent e4ec89db5c
commit d80a54c79a
15 changed files with 31 additions and 17 deletions

View File

@ -1,5 +1,5 @@
MDB5
Version: FREE 3.7.1
Version: FREE 3.8.0
Documentation:
https://mdbootstrap.com/docs/standard/

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
css/mdb.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
css/mdb.rtl.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
js/mdb.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "mdb-ui-kit",
"version": "3.7.1",
"version": "3.8.0",
"main": "js/mdb.min.js",
"homepage": "https://mdbootstrap.com/docs/standard/",
"repository": "https://github.com/mdbootstrap/mdb-ui-kit.git",

View File

@ -345,7 +345,14 @@ EventHandler.on(window, 'shown.bs.dropdown', (e) => {
});
EventHandler.on(window, 'shown.bs.tab', (e) => {
const targetId = e.target.href.split('#')[1];
let targetId;
if (e.target.href) {
targetId = e.target.href.split('#')[1];
} else {
targetId = Manipulator.getDataAttribute(e.target, 'target').split('#')[1];
}
const target = SelectorEngine.findOne(`#${targetId}`);
SelectorEngine.find(SELECTOR_OUTLINE_INPUT, target).forEach((element) => {
const instance = Input.getInstance(element.parentNode);

View File

@ -99,6 +99,9 @@ class Ripple {
this._element = SelectorEngine.closest(event.target, selector);
}
});
this._element.style.minWidth = `${this._element.offsetWidth}px`;
Manipulator.addClass(this._element, CLASSNAME_RIPPLE);
this._options = this._getConfig();
this._createRipple(event);

View File

@ -72,12 +72,16 @@
}
}
.form-outline:not(:first-child),
.form-outline:not(:first-child) .form-notch-leading {
.select-wrapper:not(:first-child),
.form-outline:not(:first-child) .form-notch-leading,
.select-wrapper:not(:first-child) .form-notch-leading {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
.form-outline:not(:last-child),
.form-outline:not(:last-child) .form-notch-trailing {
.select-wrapper:not(:last-child),
.form-outline:not(:last-child) .form-notch-trailing,
.select-wrapper:not(:last-child) .form-notch-trailing {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}