@ssplib/react-components 0.0.28 → 0.0.29

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
@@ -1,8 +1,13 @@
1
1
  # Components front-end da SSP-DF
2
2
 
3
- - Este projeto ainda está em desenvolvimento
4
- - Focado especificamente para projetos internos
5
- - Use por conta própria e risco.
3
+ - Este projeto ainda está em desenvolvimento
4
+ - Focado especificamente para projetos internos
5
+ - Use por conta própria e risco.
6
6
 
7
7
  ## Rode o comando abaixo para documentação
8
+
8
9
  `npm run storybook`
10
+
11
+ ## Rode esse comando para fazer o setup
12
+
13
+ `npm install @ssplib/react-components @emotion/react@11.10.6 @emotion/styled@11.10.6 @mui/icons-material@5.11.16 @mui/lab@5.0.0-alpha.127 @mui/material@5.12.1 @mui/x-date-pickers@6.2.0 dayjs@1.11.7 jwt-decode@3.1.2 lodash.get@4.4.2 react-hook-form@7.43.9 react-imask@6.6.0 react-query@3.39.3`
package/index.js CHANGED
@@ -45,17 +45,3 @@ const auth_1 = require("./context/auth");
45
45
  Object.defineProperty(exports, "AuthContext", { enumerable: true, get: function () { return auth_1.AuthContext; } });
46
46
  const form_1 = __importDefault(require("./context/form"));
47
47
  exports.FormContext = form_1.default;
48
- // "@mui/icons-material": "^5.11.16",
49
- // "@mui/lab": "^5.0.0-alpha.127",
50
- // "@mui/material": "^5.12.1",
51
- // "@mui/x-date-pickers": "^6.2.0",
52
- // "@emotion/react": "^11.10.6",
53
- // "@emotion/styled": "^11.10.6",
54
- // "@types/lodash.get": "^4.4.7",
55
- // "lodash.get": "^4.4.2",
56
- // "jwt-decode": "^3.1.2",
57
- // "react-query": "^3.39.3",
58
- // "react-hook-form": "^7.43.9",
59
- // "dayjs": "^1.11.7",
60
- // "cookies-next": "^2.1.1",
61
- // "react-imask": "^6.6.0",
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@ssplib/react-components",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "SSP React Components",
5
- "bin": {
6
- "create-ssp-project": "bin/dependencies.js"
7
- },
8
5
  "main": "index.js",
9
6
  "author": "Pedro Henrique <sr.hudrick@gmail.com>",
10
7
  "license": "MIT",
11
8
  "dependencies": {
12
- "shelljs": "^0.8.5"
9
+ "cookies-next": "^2.1.1"
10
+ },
11
+ "devDependencies": {
12
+ "@types/lodash.get": "^4.4.7",
13
+ "prop-types": "15.8.1"
13
14
  },
14
15
  "repository": {
15
16
  "type": "git",
@@ -1,19 +0,0 @@
1
- #!/usr/bin/node
2
-
3
- var shell = require('shelljs')
4
-
5
- shell.echo('Comecando')
6
-
7
- if (!shell.which('npm')) {
8
- shell.echo('Você precisa ter o npm instalado.')
9
- shell.exit(1)
10
- }
11
-
12
- shell.echo('passou da verificacao')
13
-
14
- if (shell.exec('npm install lodash.get').code !== 0) {
15
- shell.echo('Erro na instalação')
16
- shell.exit(1)
17
- }
18
-
19
- shell.echo('Instalado com sucesso')