@redacto.io/consent-sdk-react 1.0.0 → 1.2.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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/README.md +705 -20
- package/dist/index.d.mts +10 -8
- package/dist/index.d.ts +10 -8
- package/dist/index.js +1004 -534
- package/dist/index.mjs +995 -532
- package/package.json +1 -1
- package/src/RedactoNoticeConsent/RedactoNoticeConsent.test.tsx +141 -54
- package/src/RedactoNoticeConsent/RedactoNoticeConsent.tsx +323 -78
- package/src/RedactoNoticeConsent/api/index.ts +7 -7
- package/src/RedactoNoticeConsent/api/types.ts +1 -1
- package/src/RedactoNoticeConsent/injectStyles.ts +16 -0
- package/src/RedactoNoticeConsent/types.ts +24 -1
- package/src/RedactoNoticeConsent/useTextToSpeech.ts +378 -0
- package/src/RedactoNoticeConsentInline/RedactoNoticeConsentInline.tsx +489 -477
- package/src/RedactoNoticeConsentInline/api/index.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @redacto.io/consent-sdk-react@
|
|
3
|
+
> @redacto.io/consent-sdk-react@1.1.0 build /Users/abhishekashyap/Documents/redacto/consent-sdk/packages/consent-sdk-react
|
|
4
4
|
> tsup
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: {"index":"src/index.ts"}
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
[34mCLI[39m Cleaning output folder
|
|
12
12
|
[34mESM[39m Build start
|
|
13
13
|
[34mCJS[39m Build start
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m148.63 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 36ms
|
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m154.44 KB[39m
|
|
17
|
+
[32mCJS[39m ⚡️ Build success in 37ms
|
|
18
18
|
DTS Build start
|
|
19
|
-
DTS ⚡️ Build success in
|
|
20
|
-
DTS dist/index.d.mts 2.
|
|
21
|
-
DTS dist/index.d.ts 2.
|
|
19
|
+
DTS ⚡️ Build success in 791ms
|
|
20
|
+
DTS dist/index.d.mts 2.69 KB
|
|
21
|
+
DTS dist/index.d.ts 2.69 KB
|
package/CHANGELOG.md
CHANGED