Skip to content

Commit 908ed01

Browse files
author
unknown
committed
1.0.0-alpha1
1 parent d8b0667 commit 908ed01

File tree

980 files changed

+17406
-76596
lines changed

Some content is hidden

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

980 files changed

+17406
-76596
lines changed

.babelrc

-4
This file was deleted.

.eslintignore

-3
This file was deleted.

.eslintrc

-13
This file was deleted.

.eslintrc.json

-78
This file was deleted.

.gitignore

+14-23
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,25 @@
1-
# See https://help.github.com/ignore-files/ for more about ignoring files.
1+
node_modules
2+
mdb-react-ui-kit-*
3+
.eslintcache
24

3-
# dependencies
4-
/node_modules
5+
package-lock.json
6+
yarn.lock
57

6-
# testing
7-
/coverage
8+
demo/node_modules
9+
demo/yarn.lock
10+
demo/package-lock.json
11+
demo/.eslintcache
812

9-
# production
10-
/build
13+
npm-debug.log*
14+
yarn-debug.log*
15+
yarn-error.log*
1116

12-
# misc
1317
.DS_Store
1418
.env.local
1519
.env.development.local
1620
.env.test.local
1721
.env.production.local
18-
.editorconfig
19-
.idea
20-
.vscode
21-
22-
npm-debug.log*
23-
yarn-debug.log*
24-
yarn-error.log*
25-
26-
yarn.lock
27-
package-lock.json
28-
29-
*.tgz
30-
31-
.history
3222

23+
/coverage
3324

34-
//lint-staged
25+
/build

.huskyrc.json

-5
This file was deleted.

.lintstagedrc.json

-8
This file was deleted.

.npmignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
docs
2-
public
3-
src
1+
node_modules
2+
mdb-react-ui-kit-*
3+
demo*
4+
app*
5+
build*

.prettierrc

-8
This file was deleted.

README.md

+158-167
Large diffs are not rendered by default.

README.txt

+8-23
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
1-
Material Design for Bootstrap
1+
MDB 5 React
22

3-
Version: MDB React Pro 5.1.0
3+
Version: FREE 1.0.0 Alpha 1
44

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

8-
Getting started:
9-
https://mdbootstrap.com/docs/react/getting-started/quick-start/
8+
Installation:
9+
https://mdbootstrap.com/docs/b5/react/getting-started/installation/
1010

11-
FAQ
12-
https://mdbootstrap.com/docs/react/getting-started/faq/
11+
CLI & hosting:
12+
https://mdbootstrap.com/docs/standard/cli/
1313

1414
Support:
15-
https://mdbootstrap.com/support/
16-
17-
ChangeLog
18-
https://mdbootstrap.com/docs/react/changelog/
19-
20-
License:
21-
https://mdbootstrap.com/license/
22-
23-
Facebook: https://facebook.com/mdbootstrap
24-
Twitter: https://twitter.com/MDBootstrap
25-
Google+: https://plus.google.com/u/0/+Mdbootstrap/posts
26-
Dribbble: https://dribbble.com/mdbootstrap
27-
28-
29-
Contact:
30-
15+
https://mdbootstrap.com/support/cat/react/

app/.npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
publish*
2+
src*
3+
node_modules*
4+
docs*
5+
public*

app/demo/App.tsx

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
import React from 'react';
2+
import {
3+
MDBBadge,
4+
MDBBtn,
5+
MDBCol,
6+
MDBRow,
7+
MDBContainer,
8+
MDBCard,
9+
MDBCardBody,
10+
} from 'mdb-react-ui-kit';
11+
12+
function App() {
13+
return (
14+
<MDBContainer fluid>
15+
<div
16+
className='d-flex justify-content-center align-items-center'
17+
style={{ height: '100vh' }}
18+
>
19+
<MDBCard style={{ padding: 20 }}>
20+
<MDBCardBody>
21+
<div className='text-center'>
22+
<img
23+
className='mb-4 img-fluid'
24+
src='https://mdbootstrap.com/img/logo/mdb-transparent-250px.png'
25+
/>
26+
<h5 className='mb-3'>
27+
Thank you for using our product. We're glad you're with us.
28+
</h5>
29+
<p className='mb-3'>
30+
<MDBBadge className='ms-2'>MDB TEAM</MDBBadge>
31+
</p>
32+
33+
<MDBRow className='justify-content-center'>
34+
<MDBCol md='5' style={{ padding: 5 }}>
35+
<MDBBtn
36+
tag='a'
37+
href='https://mdbootstrap.com/docs/standard/getting-started/'
38+
target='_blank'
39+
size='sm'
40+
outline
41+
>
42+
Start MDB tutorial
43+
</MDBBtn>
44+
</MDBCol>
45+
<MDBCol md='5' style={{ padding: 5 }}>
46+
<MDBBtn
47+
tag='a'
48+
href='https://mdbootstrap.com/docs/b5/react/'
49+
target='_blank'
50+
size='sm'
51+
outline
52+
color='secondary'
53+
>
54+
mdb-react-ui-kit docs
55+
</MDBBtn>
56+
</MDBCol>
57+
</MDBRow>
58+
</div>
59+
</MDBCardBody>
60+
</MDBCard>
61+
</div>
62+
</MDBContainer>
63+
);
64+
}
65+
66+
export default App;

app/demo/index.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react';
2+
import ReactDOM from 'react-dom';
3+
import '../../dist/css/mdb.min.css';
4+
import App from './App';
5+
6+
ReactDOM.render(
7+
<React.StrictMode>
8+
<App />
9+
</React.StrictMode>,
10+
document.getElementById('root')
11+
);

app/package.json

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"name": "mdb-react-ui-kit-demo",
3+
"version": "1.0.0-alpha1",
4+
"main": "index.js",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/mdbootstrap/mdb-react-ui-kit.git"
8+
},
9+
"scripts": {
10+
"start": "webpack-dev-server --watch --config webpack.config.js --hot"
11+
},
12+
"dependencies": {
13+
"@types/react": "^17.0.0",
14+
"@types/react-dom": "^17.0.0",
15+
"clsx": "1.1.1",
16+
"react": "^17.0.1",
17+
"react-dom": "^17.0.1"
18+
},
19+
"devDependencies": {
20+
"@babel/core": "^7.12.9",
21+
"@babel/plugin-proposal-class-properties": "7.12.1",
22+
"@babel/plugin-transform-runtime": "^7.12.1",
23+
"@babel/preset-env": "^7.12.7",
24+
"@babel/preset-react": "^7.12.7",
25+
"@babel/preset-typescript": "^7.12.7",
26+
"@types/node": "^14.14.10",
27+
"babel-loader": "^8.2.2",
28+
"css-loader": "5.0.1",
29+
"file-loader": "6.2.0",
30+
"html-loader": "^1.3.2",
31+
"html-webpack-plugin": "4.5.0",
32+
"node-sass": "^5.0.0",
33+
"prettier": "^2.2.1",
34+
"sass": "^1.29.0",
35+
"sass-loader": "^10.1.0",
36+
"style-loader": "2.0.0",
37+
"ts-loader": "^8.0.11",
38+
"typescript": "^4.1.3",
39+
"url-loader": "4.1.1",
40+
"webpack": "4.41.5",
41+
"webpack-cli": "3.3.10",
42+
"webpack-dev-server": "3.10.1"
43+
},
44+
"keywords": [
45+
"react",
46+
"ui-kit",
47+
"ui",
48+
"kit",
49+
"css",
50+
"design",
51+
"javascript",
52+
"mdbootstrap",
53+
"bootstrap"
54+
],
55+
"author": "MDBootstrap",
56+
"license": "MIT",
57+
"bugs": {
58+
"url": "https://github.com/mdbootstrap/mdb-react-ui-kit/issues"
59+
}
60+
}
File renamed without changes.

0 commit comments

Comments
 (0)