Skip to content

Commit 9031d74

Browse files
author
Magda
committed
Update to 6.5.1
1 parent 5a9a80e commit 9031d74

File tree

15 files changed

+44
-15
lines changed

15 files changed

+44
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ __________
5858

5959
# Version
6060

61-
- MDBVue 6.5.0
61+
- MDBVue 6.5.1
6262
- Vue 2.6.11
6363

6464
# Quick start

lib/components/mdbDatatable/index.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.

lib/components/mdbInput/index.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.

lib/components/mdbScrollbar/index.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.

lib/css/mdb.min.css

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

lib/index.js

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

lib/mdbvue.css

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

lib/scss/core/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $custom-mdb-file-text : (
5151
in : "Pilih",
5252
zh : "選擇",
5353
de : "Wählen",
54-
ru : "выбирать"
54+
ru : "Выбрать"
5555
) !default;
5656

5757
// Reponsive Headings

lib/scss/free/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@
9494
@include make-gradient-button($name, $val);
9595
}
9696

97+
.btn-warning:focus,
9798
.btn-warning:not(:disabled):not(.disabled).active,
9899
.btn-warning:not(:disabled):not(.disabled):active,
99100
.show > .btn-warning.dropdown-toggle {
100101
color: $white-base;
101102
}
102-

lib/scss/free/_dropdowns.scss

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,19 @@
88
}
99
}
1010
}
11+
12+
.dropdown-submenu {
13+
position: relative;
14+
15+
& >.dropdown-menu {
16+
top: 0;
17+
left: 100%;
18+
margin-top: -6px;
19+
margin-left: 1px;
20+
border-radius: 0 6px 6px 6px;
21+
}
22+
23+
&:hover>.dropdown-menu {
24+
display: block;
25+
}
26+
}

lib/scss/free/_forms.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
input[type="tel"]:not(.browser-default),
1616
input[type="number"]:not(.browser-default),
1717
input[type="search"]:not(.browser-default),
18+
input[type="phone"]:not(.browser-default),
1819
input[type="search-md"],
1920
textarea.md-textarea {
2021

lib/scss/free/_modals.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ body {
44
&.modal-open {
55
padding-right: 0 !important;
66
overflow: auto;
7+
8+
.fixed-top {
9+
padding-right: 1rem !important;
10+
}
11+
.fixed-bottom {
12+
padding-right: 0 !important;
13+
}
714
}
815
&.scrollable {
916
overflow-y: auto;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdbvue",
3-
"version": "6.5.0",
3+
"version": "6.5.1",
44
"description": "Vue Bootstrap with Material Design",
55
"author": "MDBootstrap <[email protected]>",
66
"license": "MIT",

src/components/Forms/Input.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
:aria-required="ariaRequired"
2626
:aria-haspopup="ariaHaspopup"
2727
:aria-expanded="ariaExpanded"
28+
:aria-owns="ariaOwns"
2829
:role="role"
2930
:autofocus="autofocus"
3031
:readOnly="readOnly"
@@ -65,6 +66,7 @@
6566
:aria-required="ariaRequired"
6667
:aria-haspopup="ariaHaspopup"
6768
:aria-expanded="ariaExpanded"
69+
:aria-owns="ariaOwns"
6870
:role="role"
6971
@focus="focus"
7072
:readOnly="readOnly"

src/mixins/mdbInput.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ export const mdbInput = {
133133
ariaLabelledBy: {
134134
type: String
135135
},
136+
ariaOwns: {
137+
type: String
138+
},
136139
ariaMultiselectable: Boolean,
137140
ariaDisabled: Boolean,
138141
ariaRequired: Boolean,

0 commit comments

Comments
 (0)