@tantainnovative/ndpr-toolkit 1.0.4 → 1.0.5

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.
Files changed (132) hide show
  1. package/eslint.config.mjs +16 -0
  2. package/next.config.js +15 -0
  3. package/next.config.ts +62 -0
  4. package/package.json +1 -1
  5. package/packages/ndpr-toolkit/README.md +467 -0
  6. package/packages/ndpr-toolkit/dist/components/breach/BreachNotificationManager.d.ts +62 -0
  7. package/packages/ndpr-toolkit/dist/components/breach/BreachReportForm.d.ts +66 -0
  8. package/packages/ndpr-toolkit/dist/components/breach/BreachRiskAssessment.d.ts +50 -0
  9. package/packages/ndpr-toolkit/dist/components/breach/RegulatoryReportGenerator.d.ts +94 -0
  10. package/packages/ndpr-toolkit/dist/components/consent/ConsentBanner.d.ts +79 -0
  11. package/packages/ndpr-toolkit/dist/components/consent/ConsentManager.d.ts +73 -0
  12. package/packages/ndpr-toolkit/dist/components/consent/ConsentStorage.d.ts +41 -0
  13. package/packages/ndpr-toolkit/dist/components/dpia/DPIAQuestionnaire.d.ts +70 -0
  14. package/packages/ndpr-toolkit/dist/components/dpia/DPIAReport.d.ts +40 -0
  15. package/packages/ndpr-toolkit/dist/components/dpia/StepIndicator.d.ts +64 -0
  16. package/packages/ndpr-toolkit/dist/components/dsr/DSRDashboard.d.ts +58 -0
  17. package/packages/ndpr-toolkit/dist/components/dsr/DSRRequestForm.d.ts +74 -0
  18. package/packages/ndpr-toolkit/dist/components/dsr/DSRTracker.d.ts +56 -0
  19. package/packages/ndpr-toolkit/dist/components/policy/PolicyExporter.d.ts +65 -0
  20. package/packages/ndpr-toolkit/dist/components/policy/PolicyGenerator.d.ts +54 -0
  21. package/packages/ndpr-toolkit/dist/components/policy/PolicyPreview.d.ts +71 -0
  22. package/packages/ndpr-toolkit/dist/hooks/useBreach.d.ts +97 -0
  23. package/packages/ndpr-toolkit/dist/hooks/useConsent.d.ts +63 -0
  24. package/packages/ndpr-toolkit/dist/hooks/useDPIA.d.ts +92 -0
  25. package/packages/ndpr-toolkit/dist/hooks/useDSR.d.ts +72 -0
  26. package/packages/ndpr-toolkit/dist/hooks/usePrivacyPolicy.d.ts +87 -0
  27. package/packages/ndpr-toolkit/dist/index.d.ts +31 -0
  28. package/packages/ndpr-toolkit/dist/index.esm.js +2 -0
  29. package/packages/ndpr-toolkit/dist/index.esm.js.map +1 -0
  30. package/packages/ndpr-toolkit/dist/index.js +2 -0
  31. package/packages/ndpr-toolkit/dist/index.js.map +1 -0
  32. package/packages/ndpr-toolkit/dist/setupTests.d.ts +2 -0
  33. package/packages/ndpr-toolkit/dist/types/breach.d.ts +239 -0
  34. package/packages/ndpr-toolkit/dist/types/consent.d.ts +95 -0
  35. package/packages/ndpr-toolkit/dist/types/dpia.d.ts +196 -0
  36. package/packages/ndpr-toolkit/dist/types/dsr.d.ts +162 -0
  37. package/packages/ndpr-toolkit/dist/types/privacy.d.ts +204 -0
  38. package/packages/ndpr-toolkit/dist/utils/breach.d.ts +14 -0
  39. package/packages/ndpr-toolkit/dist/utils/consent.d.ts +10 -0
  40. package/packages/ndpr-toolkit/dist/utils/dpia.d.ts +12 -0
  41. package/packages/ndpr-toolkit/dist/utils/dsr.d.ts +11 -0
  42. package/packages/ndpr-toolkit/dist/utils/privacy.d.ts +12 -0
  43. package/packages/ndpr-toolkit/package-lock.json +8197 -0
  44. package/packages/ndpr-toolkit/package.json +71 -0
  45. package/packages/ndpr-toolkit/rollup.config.js +34 -0
  46. package/packages/ndpr-toolkit/src/components/breach/BreachNotificationManager.tsx +701 -0
  47. package/packages/ndpr-toolkit/src/components/breach/BreachReportForm.tsx +631 -0
  48. package/packages/ndpr-toolkit/src/components/breach/BreachRiskAssessment.tsx +569 -0
  49. package/packages/ndpr-toolkit/src/components/breach/RegulatoryReportGenerator.tsx +496 -0
  50. package/packages/ndpr-toolkit/src/components/consent/ConsentBanner.tsx +270 -0
  51. package/packages/ndpr-toolkit/src/components/consent/ConsentManager.tsx +217 -0
  52. package/packages/ndpr-toolkit/src/components/consent/ConsentStorage.tsx +206 -0
  53. package/packages/ndpr-toolkit/src/components/dpia/DPIAQuestionnaire.tsx +342 -0
  54. package/packages/ndpr-toolkit/src/components/dpia/DPIAReport.tsx +373 -0
  55. package/packages/ndpr-toolkit/src/components/dpia/StepIndicator.tsx +174 -0
  56. package/packages/ndpr-toolkit/src/components/dsr/DSRDashboard.tsx +717 -0
  57. package/packages/ndpr-toolkit/src/components/dsr/DSRRequestForm.tsx +476 -0
  58. package/packages/ndpr-toolkit/src/components/dsr/DSRTracker.tsx +620 -0
  59. package/packages/ndpr-toolkit/src/components/policy/PolicyExporter.tsx +541 -0
  60. package/packages/ndpr-toolkit/src/components/policy/PolicyGenerator.tsx +454 -0
  61. package/packages/ndpr-toolkit/src/components/policy/PolicyPreview.tsx +333 -0
  62. package/packages/ndpr-toolkit/src/hooks/useBreach.ts +409 -0
  63. package/packages/ndpr-toolkit/src/hooks/useConsent.ts +263 -0
  64. package/packages/ndpr-toolkit/src/hooks/useDPIA.ts +457 -0
  65. package/packages/ndpr-toolkit/src/hooks/useDSR.ts +236 -0
  66. package/packages/ndpr-toolkit/src/hooks/usePrivacyPolicy.ts +428 -0
  67. package/packages/ndpr-toolkit/src/index.ts +44 -0
  68. package/packages/ndpr-toolkit/src/setupTests.ts +5 -0
  69. package/packages/ndpr-toolkit/src/types/breach.ts +283 -0
  70. package/packages/ndpr-toolkit/src/types/consent.ts +111 -0
  71. package/packages/ndpr-toolkit/src/types/dpia.ts +236 -0
  72. package/packages/ndpr-toolkit/src/types/dsr.ts +192 -0
  73. package/packages/ndpr-toolkit/src/types/index.ts +42 -0
  74. package/packages/ndpr-toolkit/src/types/privacy.ts +246 -0
  75. package/packages/ndpr-toolkit/src/utils/breach.ts +122 -0
  76. package/packages/ndpr-toolkit/src/utils/consent.ts +51 -0
  77. package/packages/ndpr-toolkit/src/utils/dpia.ts +104 -0
  78. package/packages/ndpr-toolkit/src/utils/dsr.ts +77 -0
  79. package/packages/ndpr-toolkit/src/utils/privacy.ts +100 -0
  80. package/packages/ndpr-toolkit/tsconfig.json +23 -0
  81. package/postcss.config.mjs +5 -0
  82. package/src/app/accessibility.css +70 -0
  83. package/src/app/favicon.ico +0 -0
  84. package/src/app/globals.css +123 -0
  85. package/src/app/layout.tsx +37 -0
  86. package/src/app/ndpr-demos/breach/page.tsx +354 -0
  87. package/src/app/ndpr-demos/consent/page.tsx +366 -0
  88. package/src/app/ndpr-demos/dpia/page.tsx +495 -0
  89. package/src/app/ndpr-demos/dsr/page.tsx +280 -0
  90. package/src/app/ndpr-demos/page.tsx +73 -0
  91. package/src/app/ndpr-demos/policy/page.tsx +771 -0
  92. package/src/app/page.tsx +452 -0
  93. package/src/components/ErrorBoundary.tsx +90 -0
  94. package/src/components/breach-notification/BreachNotificationForm.tsx +479 -0
  95. package/src/components/consent/ConsentBanner.tsx +193 -0
  96. package/src/components/data-subject-rights/DataSubjectRequestForm.tsx +530 -0
  97. package/src/components/dpia/DPIAQuestionnaire.tsx +523 -0
  98. package/src/components/privacy-policy/PolicyGenerator.tsx +1062 -0
  99. package/src/components/privacy-policy/data.ts +98 -0
  100. package/src/components/privacy-policy/shared/CheckboxField.tsx +38 -0
  101. package/src/components/privacy-policy/shared/CheckboxGroup.tsx +85 -0
  102. package/src/components/privacy-policy/shared/FormField.tsx +79 -0
  103. package/src/components/privacy-policy/shared/StepIndicator.tsx +86 -0
  104. package/src/components/privacy-policy/steps/CustomSectionsStep.tsx +361 -0
  105. package/src/components/privacy-policy/steps/DataCollectionStep.tsx +231 -0
  106. package/src/components/privacy-policy/steps/DataSharingStep.tsx +418 -0
  107. package/src/components/privacy-policy/steps/OrganizationInfoStep.tsx +202 -0
  108. package/src/components/privacy-policy/steps/PolicyPreviewStep.tsx +226 -0
  109. package/src/components/ui/Badge.tsx +46 -0
  110. package/src/components/ui/Button.tsx +59 -0
  111. package/src/components/ui/Card.tsx +92 -0
  112. package/src/components/ui/Checkbox.tsx +57 -0
  113. package/src/components/ui/FormField.tsx +50 -0
  114. package/src/components/ui/Input.tsx +38 -0
  115. package/src/components/ui/Loading.tsx +201 -0
  116. package/src/components/ui/Select.tsx +42 -0
  117. package/src/components/ui/TextArea.tsx +38 -0
  118. package/src/components/ui/label.tsx +24 -0
  119. package/src/components/ui/switch.tsx +31 -0
  120. package/src/components/ui/tabs.tsx +66 -0
  121. package/src/hooks/useConsent.ts +70 -0
  122. package/src/hooks/useLoadingState.ts +85 -0
  123. package/src/lib/consentService.ts +144 -0
  124. package/src/lib/dpiaQuestions.ts +188 -0
  125. package/src/lib/requestService.ts +79 -0
  126. package/src/lib/sanitize.ts +108 -0
  127. package/src/lib/storage.ts +222 -0
  128. package/src/lib/utils.ts +6 -0
  129. package/src/types/html-to-docx.d.ts +30 -0
  130. package/src/types/index.ts +77 -0
  131. package/tailwind.config.ts +65 -0
  132. package/tsconfig.json +41 -0
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@tantainnovative/ndpr-toolkit",
3
+ "version": "1.0.2",
4
+ "description": "A comprehensive toolkit for implementing NDPR-compliant features in web applications",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "rollup -c",
13
+ "dev": "rollup -c -w",
14
+ "test": "jest",
15
+ "lint": "eslint src --ext .ts,.tsx",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "keywords": [
19
+ "ndpr",
20
+ "data-protection",
21
+ "privacy",
22
+ "compliance",
23
+ "nigeria",
24
+ "consent",
25
+ "dpia",
26
+ "data-subject-rights",
27
+ "breach-notification"
28
+ ],
29
+ "author": "Tanta Innovative",
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/tantainnovative/ndpr-toolkit"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "peerDependencies": {
39
+ "react": "^18.0.0 || ^19.0.0",
40
+ "react-dom": "^18.0.0 || ^19.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "@rollup/plugin-commonjs": "^22.0.0",
44
+ "@rollup/plugin-node-resolve": "^13.3.0",
45
+ "@rollup/plugin-typescript": "^8.3.2",
46
+ "@testing-library/jest-dom": "^5.17.0",
47
+ "@testing-library/react": "^13.4.0",
48
+ "@testing-library/react-hooks": "^8.0.1",
49
+ "@testing-library/user-event": "^14.6.1",
50
+ "@types/jest": "^28.1.6",
51
+ "@types/react": "^18.0.0",
52
+ "@types/react-dom": "^18.0.0",
53
+ "@typescript-eslint/eslint-plugin": "^5.27.0",
54
+ "@typescript-eslint/parser": "^5.27.0",
55
+ "eslint": "^8.16.0",
56
+ "eslint-plugin-react": "^7.30.0",
57
+ "eslint-plugin-react-hooks": "^4.5.0",
58
+ "identity-obj-proxy": "^3.0.0",
59
+ "jest": "^28.1.0",
60
+ "jest-environment-jsdom": "^28.1.3",
61
+ "react-test-renderer": "^18.2.0",
62
+ "rollup": "^2.75.5",
63
+ "rollup-plugin-peer-deps-external": "^2.2.4",
64
+ "rollup-plugin-terser": "^7.0.2",
65
+ "ts-jest": "^28.0.8",
66
+ "typescript": "^4.7.2"
67
+ },
68
+ "dependencies": {
69
+ "tslib": "^2.4.0"
70
+ }
71
+ }
@@ -0,0 +1,34 @@
1
+ import resolve from '@rollup/plugin-node-resolve';
2
+ import commonjs from '@rollup/plugin-commonjs';
3
+ import typescript from '@rollup/plugin-typescript';
4
+ import { terser } from 'rollup-plugin-terser';
5
+ import peerDepsExternal from 'rollup-plugin-peer-deps-external';
6
+ import pkg from './package.json';
7
+
8
+ export default {
9
+ input: 'src/index.ts',
10
+ output: [
11
+ {
12
+ file: pkg.main,
13
+ format: 'cjs',
14
+ sourcemap: true,
15
+ },
16
+ {
17
+ file: pkg.module,
18
+ format: 'esm',
19
+ sourcemap: true,
20
+ },
21
+ ],
22
+ plugins: [
23
+ peerDepsExternal(),
24
+ resolve(),
25
+ commonjs(),
26
+ typescript({
27
+ tsconfig: './tsconfig.json',
28
+ declaration: true,
29
+ declarationDir: 'dist',
30
+ }),
31
+ terser(),
32
+ ],
33
+ external: ['react', 'react-dom'],
34
+ };