react-lgpd-consent 0.5.2 → 0.5.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/API.md +576 -0
- package/CHANGELOG.md +155 -1
- package/INTEGRACOES.md +393 -0
- package/QUICKSTART.en.md +7 -0
- package/QUICKSTART.md +97 -11
- package/README.en.md +67 -396
- package/README.md +71 -788
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-lgpd-consent",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Biblioteca de consentimento LGPD, integrações nativas e sistema extensível para React.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lgpd",
|
|
@@ -59,9 +59,12 @@
|
|
|
59
59
|
"files": [
|
|
60
60
|
"dist",
|
|
61
61
|
"README.md",
|
|
62
|
+
"API.md",
|
|
63
|
+
"package.json",
|
|
62
64
|
"README.en.md",
|
|
63
65
|
"QUICKSTART.md",
|
|
64
66
|
"QUICKSTART.en.md",
|
|
67
|
+
"INTEGRACOES.md",
|
|
65
68
|
"LICENSE",
|
|
66
69
|
"CHANGELOG.md"
|
|
67
70
|
],
|
|
@@ -91,8 +94,8 @@
|
|
|
91
94
|
}
|
|
92
95
|
},
|
|
93
96
|
"dependencies": {
|
|
94
|
-
"@react-lgpd-consent/core": "^0.5.
|
|
95
|
-
"@react-lgpd-consent/mui": "^0.5.
|
|
97
|
+
"@react-lgpd-consent/core": "^0.5.1",
|
|
98
|
+
"@react-lgpd-consent/mui": "^0.5.1"
|
|
96
99
|
},
|
|
97
100
|
"size-limit": [
|
|
98
101
|
{
|
|
@@ -132,7 +135,7 @@
|
|
|
132
135
|
"size-check": "size-limit",
|
|
133
136
|
"mutation": "npx stryker run",
|
|
134
137
|
"mutation:tests": "npx stryker run ../../stryker.tests.conf.json",
|
|
135
|
-
"docs:generate": "
|
|
138
|
+
"docs:generate": "node ../../scripts/run-typedoc.mjs",
|
|
136
139
|
"storybook": "storybook dev -p 6006 --config-dir ../../.storybook",
|
|
137
140
|
"build-storybook": "storybook build --config-dir ../../.storybook --output-dir ../../storybook-static"
|
|
138
141
|
}
|