@mw-kit/mw-ui 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,17 +23,16 @@ const App = () => {
23
23
  return (
24
24
  <Container>
25
25
  <Segment>
26
- <Button primary content="Primary" onClick={()=>alert("hi")} />
27
- <Button negative content="Negative" onClick={()=>alert("hi")} />
28
- <Button content="Default" onClick={()=>alert("hi")} />
29
- <Button basic content="Basic" onClick={()=>alert("hi")} />
26
+ <Button primary content='Primary' onClick={() => alert('hi')} />
27
+ <Button negative content='Negative' onClick={() => alert('hi')} />
28
+ <Button content='Default' onClick={() => alert('hi')} />
29
+ <Button basic content='Basic' onClick={() => alert('hi')} />
30
30
  </Segment>
31
31
  </Container>
32
32
  )
33
33
  }
34
34
 
35
35
  export default App
36
-
37
36
  ```
38
37
 
39
38
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mw-kit/mw-ui",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "fmgusmao",
6
6
  "license": "MIT",
@@ -17,7 +17,7 @@
17
17
  "prepare": "run-s build",
18
18
  "test": "run-s test:unit test:lint test:build",
19
19
  "test:build": "run-s build",
20
- "test:lint": "eslint .",
20
+ "test:lint": "eslint src/**/*.{js,ts,jsx,tsx}",
21
21
  "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
22
22
  "test:watch": "react-scripts test --env=jsdom",
23
23
  "predeploy": "cd example && yarn install && yarn run build",
@@ -34,6 +34,7 @@
34
34
  "@types/node": "^12.12.38",
35
35
  "@types/react": "^16.9.27",
36
36
  "@types/react-dom": "^16.9.7",
37
+ "@types/react-calendar": "^3.4.5",
37
38
  "@typescript-eslint/eslint-plugin": "^2.26.0",
38
39
  "@typescript-eslint/parser": "^2.26.0",
39
40
  "babel-eslint": "^10.0.3",
@@ -61,7 +62,7 @@
61
62
  "dist"
62
63
  ],
63
64
  "dependencies": {
64
- "@types/react-calendar": "^3.4.5",
65
+ "react-calendar": "^3.4.5",
65
66
  "semantic-ui-css": "^2.4.1",
66
67
  "semantic-ui-react": "^1.2.1"
67
68
  }
@@ -1 +0,0 @@
1
- export {};