mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-02-02 21:04:13 +03:00
release 3.8.0
This commit is contained in:
parent
e4ec89db5c
commit
d80a54c79a
|
@ -1,5 +1,5 @@
|
||||||
MDB5
|
MDB5
|
||||||
Version: FREE 3.7.1
|
Version: FREE 3.8.0
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
https://mdbootstrap.com/docs/standard/
|
https://mdbootstrap.com/docs/standard/
|
||||||
|
|
2
css/mdb.dark.min.css
vendored
2
css/mdb.dark.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.dark.rtl.min.css
vendored
2
css/mdb.dark.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
css/mdb.min.css
vendored
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
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
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
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mdb-ui-kit",
|
"name": "mdb-ui-kit",
|
||||||
"version": "3.7.1",
|
"version": "3.8.0",
|
||||||
"main": "js/mdb.min.js",
|
"main": "js/mdb.min.js",
|
||||||
"homepage": "https://mdbootstrap.com/docs/standard/",
|
"homepage": "https://mdbootstrap.com/docs/standard/",
|
||||||
"repository": "https://github.com/mdbootstrap/mdb-ui-kit.git",
|
"repository": "https://github.com/mdbootstrap/mdb-ui-kit.git",
|
||||||
|
|
|
@ -345,7 +345,14 @@ EventHandler.on(window, 'shown.bs.dropdown', (e) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
EventHandler.on(window, 'shown.bs.tab', (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}`);
|
const target = SelectorEngine.findOne(`#${targetId}`);
|
||||||
SelectorEngine.find(SELECTOR_OUTLINE_INPUT, target).forEach((element) => {
|
SelectorEngine.find(SELECTOR_OUTLINE_INPUT, target).forEach((element) => {
|
||||||
const instance = Input.getInstance(element.parentNode);
|
const instance = Input.getInstance(element.parentNode);
|
||||||
|
|
|
@ -99,6 +99,9 @@ class Ripple {
|
||||||
this._element = SelectorEngine.closest(event.target, selector);
|
this._element = SelectorEngine.closest(event.target, selector);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this._element.style.minWidth = `${this._element.offsetWidth}px`;
|
||||||
|
|
||||||
Manipulator.addClass(this._element, CLASSNAME_RIPPLE);
|
Manipulator.addClass(this._element, CLASSNAME_RIPPLE);
|
||||||
this._options = this._getConfig();
|
this._options = this._getConfig();
|
||||||
this._createRipple(event);
|
this._createRipple(event);
|
||||||
|
|
|
@ -72,12 +72,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.form-outline:not(:first-child),
|
.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-top-left-radius: 0 !important;
|
||||||
border-bottom-left-radius: 0 !important;
|
border-bottom-left-radius: 0 !important;
|
||||||
}
|
}
|
||||||
.form-outline:not(:last-child),
|
.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-top-right-radius: 0 !important;
|
||||||
border-bottom-right-radius: 0 !important;
|
border-bottom-right-radius: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user