Skip to content

Commit 2abaf79

Browse files
release v1.2.1
1 parent 0397d08 commit 2abaf79

File tree

6 files changed

+2893
-1300
lines changed

6 files changed

+2893
-1300
lines changed

changelog.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
# [1.2.1]
4+
5+
### Updated
6+
- Packages updated
7+
8+
### Fixed
9+
- Sign up name type of input
10+
- Dot component size prop
11+
- Performance errors
12+
13+
# [1.2.0]
14+
15+
### Updated
16+
- Packages update
17+
- Link to Full version
18+
19+
### Fixed
20+
- User login state improvements
21+
22+
## [1.1.0]
23+
24+
### New Feactures
25+
26+
- React v16.8.6
27+
- React Router v5
28+
- new React Hooks
29+
- Material UI v4.3
30+
31+
Bug fixes
32+
33+
## [1.0.0]
34+
35+
Initial version of the project

src/components/Sidebar/Sidebar.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,19 @@ const structure = [
6666
id: 12,
6767
label: "My recent",
6868
link: "",
69-
icon: <Dot size="large" color="warning" />,
69+
icon: <Dot size="small" color="warning" />,
7070
},
7171
{
7272
id: 13,
7373
label: "Starred",
7474
link: "",
75-
icon: <Dot size="large" color="primary" />,
75+
icon: <Dot size="small" color="primary" />,
7676
},
7777
{
7878
id: 14,
7979
label: "Background",
8080
link: "",
81-
icon: <Dot size="large" color="secondary" />,
81+
icon: <Dot size="small" color="secondary" />,
8282
},
8383
];
8484

src/components/Sidebar/SidebarView.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ const structure = [
4343
{ id: 9, label: 'FAQ', link: '', icon: <FAQIcon />},
4444
{ id: 10, type: 'divider' },
4545
{ id: 11, type: 'title', label: 'PROJECTS' },
46-
{ id: 12, label: 'My recent', link: '', icon: <Dot size="large" color="secondary" /> },
47-
{ id: 13, label: 'Starred', link: '', icon: <Dot size="large" color="primary" /> },
48-
{ id: 14, label: 'Background', link: '', icon: <Dot size="large" color="secondary" /> },
46+
{ id: 12, label: 'My recent', link: '', icon: <Dot size="small" color="secondary" /> },
47+
{ id: 13, label: 'Starred', link: '', icon: <Dot size="small" color="primary" /> },
48+
{ id: 14, label: 'Background', link: '', icon: <Dot size="small" color="secondary" /> },
4949
];
5050

5151
const SidebarView = ({ classes, theme, toggleSidebar, isSidebarOpened, isPermanent, location }) => {

src/components/Sidebar/components/Dot.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@ import classnames from "classnames";
55
// styles
66
var useStyles = makeStyles(theme => ({
77
dotBase: {
8-
width: 5,
9-
height: 5,
8+
width: 8,
9+
height: 8,
1010
backgroundColor: theme.palette.text.hint,
1111
borderRadius: "50%",
1212
transition: theme.transitions.create("background-color"),
1313
},
14+
dotSmall: {
15+
width: 5,
16+
height: 5
17+
},
1418
dotLarge: {
15-
width: 8,
16-
height: 8,
19+
width: 11,
20+
height: 11,
1721
},
1822
}));
1923

src/pages/login/Login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function Login(props) {
163163
onChange={e => setNameValue(e.target.value)}
164164
margin="normal"
165165
placeholder="Full Name"
166-
type="email"
166+
type="text"
167167
fullWidth
168168
/>
169169
<TextField

0 commit comments

Comments
 (0)