plataforma-fundacao-componentes 2.23.34 → 2.24.0
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/dist/components/chip/Chip.d.ts +2 -0
- package/dist/components/chip/Chip.stories.d.ts +6 -0
- package/dist/components/searchBlocoDeNotas/SearchBlocoDeNotas.d.ts +1 -1
- package/dist/components/textEditor/components/textEditorInput/TextEditorHeaderInput.d.ts +1 -1
- package/dist/index.css +47 -237
- package/dist/index.js +19408 -15954
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +19408 -15972
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/ArrayUtils.d.ts +1 -1
- package/package.json +6 -19
|
@@ -14,4 +14,4 @@ export declare const groupByKey: <T>(arr: T[], k: keyof T) => {
|
|
|
14
14
|
* @param k chave a qual vai ser agupada
|
|
15
15
|
* @returns um objeto de chaves de vlores diferentes
|
|
16
16
|
*/
|
|
17
|
-
export declare const mapGroupByKey: <T>(arr: T[], k: keyof T) => Map<import("react").
|
|
17
|
+
export declare const mapGroupByKey: <T>(arr: T[], k: keyof T) => Map<import("react").Key, T[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plataforma-fundacao-componentes",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.24.0",
|
|
4
4
|
"description": "Made with create-react-library",
|
|
5
5
|
"author": "Guvidaletti",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,12 +27,10 @@
|
|
|
27
27
|
"test:lint": "eslint .",
|
|
28
28
|
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
29
29
|
"test:watch": "react-scripts test --env=jsdom",
|
|
30
|
-
"predeploy": "cd example && npm install && npm run build",
|
|
31
|
-
"deploy": "gh-pages -d example/build",
|
|
32
30
|
"pack-to-front": "npm version --no-git-tag-version --allow-same-version 0.0.0 && npm pack && tar --strip-components=1 -C C:/Software/Sicredi/plataforma-fundacao-front/node_modules/plataforma-fundacao-componentes/. -xvzf plataforma-fundacao-componentes-0.0.0.tgz package/package.json package/README.md package/dist && del /f plataforma-fundacao-componentes-0.0.0.tgz"
|
|
33
31
|
},
|
|
34
32
|
"peerDependencies": {
|
|
35
|
-
"react": "^
|
|
33
|
+
"react": "^18.2.0"
|
|
36
34
|
},
|
|
37
35
|
"devDependencies": {
|
|
38
36
|
"@babel/core": "^7.15.0",
|
|
@@ -52,8 +50,8 @@
|
|
|
52
50
|
"@types/loadable__component": "^5.13.4",
|
|
53
51
|
"@types/node": "^12.12.38",
|
|
54
52
|
"@types/qrcode": "^1.4.2",
|
|
55
|
-
"@types/react": "^
|
|
56
|
-
"@types/react-dom": "^
|
|
53
|
+
"@types/react": "^18.0.28",
|
|
54
|
+
"@types/react-dom": "^18.0.11",
|
|
57
55
|
"@types/react-transition-group": "^4.4.2",
|
|
58
56
|
"@types/resize-observer-browser": "^0.1.7",
|
|
59
57
|
"@types/sortablejs": "^1.10.7",
|
|
@@ -63,23 +61,12 @@
|
|
|
63
61
|
"babel-loader": "^8.2.2",
|
|
64
62
|
"cross-env": "^7.0.2",
|
|
65
63
|
"eslint": "^6.8.0",
|
|
66
|
-
"eslint-config-prettier": "^6.7.0",
|
|
67
|
-
"eslint-config-standard": "^14.1.0",
|
|
68
|
-
"eslint-config-standard-react": "^9.2.0",
|
|
69
|
-
"eslint-plugin-import": "^2.18.2",
|
|
70
|
-
"eslint-plugin-node": "^11.0.0",
|
|
71
|
-
"eslint-plugin-prettier": "^3.1.1",
|
|
72
|
-
"eslint-plugin-promise": "^4.2.1",
|
|
73
|
-
"eslint-plugin-react": "^7.17.0",
|
|
74
|
-
"eslint-plugin-react-hooks": "^4.2.0",
|
|
75
|
-
"eslint-plugin-standard": "^4.0.1",
|
|
76
|
-
"gh-pages": "^2.2.0",
|
|
77
64
|
"husky": "^7.0.0",
|
|
78
65
|
"microbundle-crl": "^0.13.10",
|
|
79
66
|
"npm-run-all": "^4.1.5",
|
|
80
67
|
"prettier": "^2.0.4",
|
|
81
|
-
"react": "^
|
|
82
|
-
"react-dom": "^
|
|
68
|
+
"react": "^18.2.0",
|
|
69
|
+
"react-dom": "^18.2.0",
|
|
83
70
|
"react-scripts": "3.4.3",
|
|
84
71
|
"typescript": "^3.9.10"
|
|
85
72
|
},
|