Skip to content

Commit 89ee40e

Browse files
Release 3.2.0
1 parent 2f40a93 commit 89ee40e

File tree

169 files changed

+5781
-3814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+5781
-3814
lines changed

License.pdf

252 KB
Binary file not shown.

README.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
MDB 5 Vue
22

3-
Version: FREE 3.1.1
3+
Version: FREE 3.2.0
44

55
Documentation:
6-
https://mdbootstrap.com/docs/vue/
6+
https://mdbootstrap.com/docs/b5/vue/
77

88
Installation:
9-
https://mdbootstrap.com/docs/vue/getting-started/installation/
9+
https://mdbootstrap.com/docs/b5/vue/getting-started/installation/
1010

1111
CLI & hosting:
12-
https://mdbgo.com/
12+
https://mdbootstrap.com/docs/standard/cli/
1313

1414
Support:
15-
https://mdbootstrap.com/support/cat/vue/
15+
https://mdbootstrap.com/support/cat/vue/

css/mdb.dark.min.css

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.rtl.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.rtl.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/mdb.es.min.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1483,12 +1483,14 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
14831483
}
14841484
});
14851485
let isCollapsing = false;
1486+
const emitInterval = ref(0);
14861487
watch(
14871488
() => props.modelValue,
1488-
(cur, prev) => {
1489+
(cur) => {
14891490
if (isCollapsing) {
1490-
setTimeout(() => {
1491-
emit("update:modelValue", prev);
1491+
clearInterval(emitInterval.value);
1492+
emitInterval.value = setTimeout(() => {
1493+
emit("update:modelValue", isActive.value);
14921494
}, props.duration);
14931495
return;
14941496
}
@@ -1544,6 +1546,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
15441546
} else {
15451547
el.style.height = "0";
15461548
}
1549+
el.style.transitionDuration = props.duration + "ms";
15471550
isCollapsing = true;
15481551
};
15491552
const enter = (el) => {
@@ -1618,8 +1621,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
16181621
onLeave: leave,
16191622
onAfterLeave: afterLeave,
16201623
"enter-active-class": "collapsing",
1621-
"leave-active-class": "collapsing show",
1622-
duration: __props.duration
1624+
"leave-active-class": "collapsing show"
16231625
}, {
16241626
default: withCtx(() => [
16251627
withDirectives((openBlock(), createBlock(resolveDynamicComponent(__props.tag), {
@@ -1637,7 +1639,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
16371639
])
16381640
]),
16391641
_: 3
1640-
}, 8, ["duration"]);
1642+
});
16411643
};
16421644
}
16431645
});
@@ -3952,7 +3954,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
39523954
return;
39533955
}
39543956
setTimeout(() => {
3955-
popperEl.value.classList.remove("show");
3957+
popperEl.value && popperEl.value.classList.remove("show");
39563958
}, 10);
39573959
isThrottled.value = true;
39583960
setTimeout(() => {

js/mdb.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)