Skip to content

Commit 55a0091

Browse files
author
unknown
committed
5.1.0
1 parent 236cd8b commit 55a0091

File tree

21 files changed

+46
-40
lines changed

21 files changed

+46
-40
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Material Design for Bootstrap
22

3-
Version: MDB React Pro 5.0.2
3+
Version: MDB React Pro 5.1.0
44

55
Documentation:
66
https://mdbootstrap.com/docs/react/

dist/css/mdb.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.

dist/mdbreact.esm.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.

dist/mdbreact.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.

dist/types/index.d.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ declare class MDBCollapse extends Component<
473473
className?: string;
474474
children?: ReactNode;
475475
delay?: { show: number, hide: number };
476+
tag?: string;
476477
isOpen?: boolean | string;
477478
id?: string;
478479
navbar?: boolean;
@@ -536,7 +537,7 @@ declare class MDBDataTable extends Component<
536537
responsiveLg?: boolean;
537538
responsiveXl?: boolean;
538539
searching?: boolean;
539-
searchingLabel?: string;
540+
searchLabel?: string;
540541
scrollX?: boolean;
541542
scrollY?: boolean;
542543
sortable?: boolean;
@@ -862,15 +863,15 @@ declare class MDBModal extends Component<
862863
hiddenModal?: () => void;
863864
hideModal?: () => void;
864865
id?: string;
865-
inline: boolean;
866+
inline?: boolean;
866867
isOpen?: boolean;
867868
keyboard?: boolean;
868869
modalClassName?: string;
869870
modalStyle?: 'success' | 'info' | 'danger' | 'warning';
870871
modalStylesWithoutBackdrop?: ReactNode;
871872
modalTransitionTimeout?: number;
872-
noClickableBodyWithoutBackdrop: boolean;
873-
overflowScroll: boolean;
873+
noClickableBodyWithoutBackdrop?: boolean;
874+
overflowScroll?: boolean;
874875
position?: string;
875876
role?: string;
876877
showModal?: () => void;

docs/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
color: #283593;
4343
}
4444

45-
.nav-link:focus {
45+
.nav-link:focus{
4646
outline: none;
4747
}

docs/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import 'bootstrap-css-only/css/bootstrap.min.css';
55
import '../dist/css/mdb.css';
66
import './index.css';
77
import App from './App';
8-
// import AppClear from './App-clear';
98

109
import registerServiceWorker from './registerServiceWorker';
1110

docs/pages/DatatablePage.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@ const DatatablePage = () => {
558558
data={data()}
559559
materialSearch={true}
560560
proSelect
561+
onSort={(s) => console.log(s)}
561562
/>
562563
</MDBCardBody>
563564
</MDBCard>

docs/pages/ModalPage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ModalPage extends Component {
526526
</MDBModal>
527527
</SectionContainer>
528528

529-
<SectionContainer header='Modal Events' flexCenter>
529+
{/* <SectionContainer header='Modal Events' flexCenter>
530530
<MDBBtn color='warning' onClick={this.toggle(18)}>
531531
Modal events
532532
</MDBBtn>
@@ -550,7 +550,7 @@ class ModalPage extends Component {
550550
<MDBBtn color='primary'>Save changes</MDBBtn>
551551
</MDBModalFooter>
552552
</MDBModal>
553-
</SectionContainer>
553+
</SectionContainer> */}
554554
</MDBContainer>
555555
);
556556
}

package-lock.json

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

0 commit comments

Comments
 (0)