@tantainnovative/ndpr-toolkit 2.4.0 → 2.4.1

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/dsr.d.mts CHANGED
@@ -1,5 +1,308 @@
1
- export { D as DSRDashboard, a as DSRDashboardClassNames, c as DSRRequestForm, d as DSRRequestFormClassNames, e as DSRTracker, f as DSRTrackerClassNames } from './dsr-BTT-Xd7H.mjs';
1
+ import React from 'react';
2
+ import { c as RequestType, D as DSRRequest, a as DSRStatus } from './dsr-Cm9lzWG7.mjs';
3
+ export { b as DSRType, R as RequestStatus } from './dsr-Cm9lzWG7.mjs';
2
4
  export { u as useDSR } from './useDSR-YYZ6FYFs.mjs';
3
5
  export { f as formatDSRRequest } from './dsr-D_eTNc4S.mjs';
4
- export { D as DSRRequest, a as DSRStatus, b as DSRType, R as RequestStatus, c as RequestType } from './dsr-Cm9lzWG7.mjs';
5
- import 'react';
6
+
7
+ /**
8
+ * Represents the data submitted by the DSR request form.
9
+ */
10
+ interface DSRFormSubmission {
11
+ /** The selected request type identifier */
12
+ requestType: string;
13
+ /** Data subject personal information */
14
+ dataSubject: {
15
+ fullName: string;
16
+ email: string;
17
+ phone?: string;
18
+ identifierType: string;
19
+ identifierValue: string;
20
+ };
21
+ /** Additional information provided for the selected request type */
22
+ additionalInfo?: Record<string, any>;
23
+ /** Timestamp (ms) when the form was submitted */
24
+ submittedAt: number;
25
+ }
26
+ interface DSRRequestFormClassNames {
27
+ root?: string;
28
+ title?: string;
29
+ description?: string;
30
+ form?: string;
31
+ fieldGroup?: string;
32
+ label?: string;
33
+ input?: string;
34
+ select?: string;
35
+ textarea?: string;
36
+ submitButton?: string;
37
+ /** Alias for submitButton */
38
+ primaryButton?: string;
39
+ successMessage?: string;
40
+ /** Custom class applied when isSubmitting is true (e.g. a loading overlay) */
41
+ loadingOverlay?: string;
42
+ }
43
+ interface DSRRequestFormProps {
44
+ /**
45
+ * Array of request types that can be submitted
46
+ */
47
+ requestTypes: RequestType[];
48
+ /**
49
+ * Callback function called when form is submitted
50
+ */
51
+ onSubmit: (data: DSRFormSubmission) => void;
52
+ /**
53
+ * Callback function called when form validation fails
54
+ */
55
+ onValidationError?: (errors: Record<string, string>) => void;
56
+ /**
57
+ * Title displayed on the form
58
+ * @default "Submit a Data Subject Request"
59
+ */
60
+ title?: string;
61
+ /**
62
+ * Description text displayed on the form
63
+ * @default "Use this form to exercise your rights under the Nigeria Data Protection Act (NDPA), Part IV, Sections 29-36."
64
+ */
65
+ description?: string;
66
+ /**
67
+ * Text for the submit button
68
+ * @default "Submit Request"
69
+ */
70
+ submitButtonText?: string;
71
+ /**
72
+ * Custom CSS class for the form
73
+ */
74
+ className?: string;
75
+ /**
76
+ * Custom CSS class for the submit button
77
+ */
78
+ buttonClassName?: string;
79
+ /**
80
+ * Whether to show a confirmation message after submission
81
+ * @default true
82
+ */
83
+ showConfirmation?: boolean;
84
+ /**
85
+ * Confirmation message to display after submission
86
+ * @default "Your request has been submitted successfully. You will receive a confirmation email shortly."
87
+ */
88
+ confirmationMessage?: string;
89
+ /**
90
+ * Whether to require identity verification
91
+ * @default true
92
+ */
93
+ requireIdentityVerification?: boolean;
94
+ /**
95
+ * Types of identifiers accepted for verification
96
+ * @default ["email", "account", "customer_id"]
97
+ */
98
+ identifierTypes?: Array<{
99
+ id: string;
100
+ label: string;
101
+ }>;
102
+ /**
103
+ * Whether to collect additional contact information
104
+ * @default true
105
+ */
106
+ collectAdditionalContact?: boolean;
107
+ /**
108
+ * Custom labels for form fields
109
+ */
110
+ labels?: {
111
+ name?: string;
112
+ email?: string;
113
+ requestType?: string;
114
+ description?: string;
115
+ submit?: string;
116
+ };
117
+ /**
118
+ * Object of CSS class overrides keyed by semantic section name.
119
+ */
120
+ classNames?: DSRRequestFormClassNames;
121
+ /**
122
+ * When true, all default Tailwind classes are removed so consumers
123
+ * can style from scratch using classNames.
124
+ */
125
+ unstyled?: boolean;
126
+ /**
127
+ * Whether the form is currently submitting.
128
+ * When true, the submit button is disabled and shows "Submitting..." text.
129
+ */
130
+ isSubmitting?: boolean;
131
+ /**
132
+ * Default values to pre-fill form fields.
133
+ * Useful for editing existing requests or pre-populating known data.
134
+ */
135
+ defaultValues?: Partial<DSRFormSubmission>;
136
+ /**
137
+ * Callback fired when the form is reset via the Reset button.
138
+ * To fully remount the component (clearing all internal state),
139
+ * change the `key` prop from the parent.
140
+ */
141
+ onReset?: () => void;
142
+ }
143
+ /**
144
+ * Data Subject Request form component. Implements NDPA Part IV, Sections 29-36
145
+ * covering data subject rights including access, rectification, erasure, and portability.
146
+ */
147
+ declare const DSRRequestForm: React.FC<DSRRequestFormProps>;
148
+
149
+ interface DSRDashboardClassNames {
150
+ root?: string;
151
+ header?: string;
152
+ title?: string;
153
+ filters?: string;
154
+ requestList?: string;
155
+ requestItem?: string;
156
+ statusBadge?: string;
157
+ detailPanel?: string;
158
+ }
159
+ interface DSRDashboardProps {
160
+ /**
161
+ * List of DSR requests to display
162
+ */
163
+ requests: DSRRequest[];
164
+ /**
165
+ * Callback function called when a request is selected
166
+ */
167
+ onSelectRequest?: (requestId: string) => void;
168
+ /**
169
+ * Callback function called when a request status is updated
170
+ */
171
+ onUpdateStatus?: (requestId: string, status: DSRStatus) => void;
172
+ /**
173
+ * Callback function called when a request is assigned
174
+ */
175
+ onAssignRequest?: (requestId: string, assignee: string) => void;
176
+ /**
177
+ * Title displayed on the dashboard
178
+ * @default "Data Subject Request Dashboard"
179
+ */
180
+ title?: string;
181
+ /**
182
+ * Description text displayed on the dashboard
183
+ * @default "Track and manage data subject requests in compliance with NDPA Part IV requirements."
184
+ */
185
+ description?: string;
186
+ /**
187
+ * Custom CSS class for the dashboard
188
+ */
189
+ className?: string;
190
+ /**
191
+ * Custom CSS class for the buttons
192
+ */
193
+ buttonClassName?: string;
194
+ /**
195
+ * Whether to show the request details
196
+ * @default true
197
+ */
198
+ showRequestDetails?: boolean;
199
+ /**
200
+ * Whether to show the request timeline
201
+ * @default true
202
+ */
203
+ showRequestTimeline?: boolean;
204
+ /**
205
+ * Whether to show the deadline alerts
206
+ * @default true
207
+ */
208
+ showDeadlineAlerts?: boolean;
209
+ /**
210
+ * List of possible assignees
211
+ */
212
+ assignees?: string[];
213
+ /**
214
+ * Object of CSS class overrides keyed by semantic section name.
215
+ */
216
+ classNames?: DSRDashboardClassNames;
217
+ /**
218
+ * When true, all default Tailwind classes are removed so consumers
219
+ * can style from scratch using classNames.
220
+ */
221
+ unstyled?: boolean;
222
+ }
223
+ /**
224
+ * Data Subject Request dashboard component. Supports compliance with NDPA Part IV,
225
+ * providing tools to track, manage, and respond to data subject requests within required timeframes.
226
+ */
227
+ declare const DSRDashboard: React.FC<DSRDashboardProps>;
228
+
229
+ interface DSRTrackerClassNames {
230
+ root?: string;
231
+ header?: string;
232
+ title?: string;
233
+ stats?: string;
234
+ statCard?: string;
235
+ table?: string;
236
+ tableHeader?: string;
237
+ tableRow?: string;
238
+ statusBadge?: string;
239
+ }
240
+ interface DSRTrackerProps {
241
+ /**
242
+ * List of DSR requests to track
243
+ */
244
+ requests: DSRRequest[];
245
+ /**
246
+ * Callback function called when a request is selected
247
+ */
248
+ onSelectRequest?: (requestId: string) => void;
249
+ /**
250
+ * Title displayed on the tracker
251
+ * @default "DSR Request Tracker"
252
+ */
253
+ title?: string;
254
+ /**
255
+ * Description text displayed on the tracker
256
+ * @default "Track the status and progress of data subject requests as required by NDPA Part IV."
257
+ */
258
+ description?: string;
259
+ /**
260
+ * Custom CSS class for the tracker
261
+ */
262
+ className?: string;
263
+ /**
264
+ * Custom CSS class for the buttons
265
+ */
266
+ buttonClassName?: string;
267
+ /**
268
+ * Whether to show the summary statistics
269
+ * @default true
270
+ */
271
+ showSummaryStats?: boolean;
272
+ /**
273
+ * Whether to show the request type breakdown
274
+ * @default true
275
+ */
276
+ showTypeBreakdown?: boolean;
277
+ /**
278
+ * Whether to show the status breakdown
279
+ * @default true
280
+ */
281
+ showStatusBreakdown?: boolean;
282
+ /**
283
+ * Whether to show the timeline chart
284
+ * @default true
285
+ */
286
+ showTimelineChart?: boolean;
287
+ /**
288
+ * Whether to show the overdue requests
289
+ * @default true
290
+ */
291
+ showOverdueRequests?: boolean;
292
+ /**
293
+ * Object of CSS class overrides keyed by semantic section name.
294
+ */
295
+ classNames?: DSRTrackerClassNames;
296
+ /**
297
+ * When true, all default Tailwind classes are removed so consumers
298
+ * can style from scratch using classNames.
299
+ */
300
+ unstyled?: boolean;
301
+ }
302
+ /**
303
+ * DSR tracking and analytics component. Supports compliance with NDPA Part IV,
304
+ * providing summary statistics, deadline tracking, and compliance metrics for data subject requests.
305
+ */
306
+ declare const DSRTracker: React.FC<DSRTrackerProps>;
307
+
308
+ export { DSRDashboard, type DSRDashboardClassNames, type DSRFormSubmission, DSRRequest, DSRRequestForm, type DSRRequestFormClassNames, DSRStatus, DSRTracker, type DSRTrackerClassNames, RequestType };
package/dist/dsr.d.ts CHANGED
@@ -1,5 +1,308 @@
1
- export { D as DSRDashboard, a as DSRDashboardClassNames, c as DSRRequestForm, d as DSRRequestFormClassNames, e as DSRTracker, f as DSRTrackerClassNames } from './dsr-190YpijW.js';
1
+ import React from 'react';
2
+ import { c as RequestType, D as DSRRequest, a as DSRStatus } from './dsr-Cm9lzWG7.js';
3
+ export { b as DSRType, R as RequestStatus } from './dsr-Cm9lzWG7.js';
2
4
  export { u as useDSR } from './useDSR-CYI7WCXr.js';
3
5
  export { f as formatDSRRequest } from './dsr-pNtVb1BK.js';
4
- export { D as DSRRequest, a as DSRStatus, b as DSRType, R as RequestStatus, c as RequestType } from './dsr-Cm9lzWG7.js';
5
- import 'react';
6
+
7
+ /**
8
+ * Represents the data submitted by the DSR request form.
9
+ */
10
+ interface DSRFormSubmission {
11
+ /** The selected request type identifier */
12
+ requestType: string;
13
+ /** Data subject personal information */
14
+ dataSubject: {
15
+ fullName: string;
16
+ email: string;
17
+ phone?: string;
18
+ identifierType: string;
19
+ identifierValue: string;
20
+ };
21
+ /** Additional information provided for the selected request type */
22
+ additionalInfo?: Record<string, any>;
23
+ /** Timestamp (ms) when the form was submitted */
24
+ submittedAt: number;
25
+ }
26
+ interface DSRRequestFormClassNames {
27
+ root?: string;
28
+ title?: string;
29
+ description?: string;
30
+ form?: string;
31
+ fieldGroup?: string;
32
+ label?: string;
33
+ input?: string;
34
+ select?: string;
35
+ textarea?: string;
36
+ submitButton?: string;
37
+ /** Alias for submitButton */
38
+ primaryButton?: string;
39
+ successMessage?: string;
40
+ /** Custom class applied when isSubmitting is true (e.g. a loading overlay) */
41
+ loadingOverlay?: string;
42
+ }
43
+ interface DSRRequestFormProps {
44
+ /**
45
+ * Array of request types that can be submitted
46
+ */
47
+ requestTypes: RequestType[];
48
+ /**
49
+ * Callback function called when form is submitted
50
+ */
51
+ onSubmit: (data: DSRFormSubmission) => void;
52
+ /**
53
+ * Callback function called when form validation fails
54
+ */
55
+ onValidationError?: (errors: Record<string, string>) => void;
56
+ /**
57
+ * Title displayed on the form
58
+ * @default "Submit a Data Subject Request"
59
+ */
60
+ title?: string;
61
+ /**
62
+ * Description text displayed on the form
63
+ * @default "Use this form to exercise your rights under the Nigeria Data Protection Act (NDPA), Part IV, Sections 29-36."
64
+ */
65
+ description?: string;
66
+ /**
67
+ * Text for the submit button
68
+ * @default "Submit Request"
69
+ */
70
+ submitButtonText?: string;
71
+ /**
72
+ * Custom CSS class for the form
73
+ */
74
+ className?: string;
75
+ /**
76
+ * Custom CSS class for the submit button
77
+ */
78
+ buttonClassName?: string;
79
+ /**
80
+ * Whether to show a confirmation message after submission
81
+ * @default true
82
+ */
83
+ showConfirmation?: boolean;
84
+ /**
85
+ * Confirmation message to display after submission
86
+ * @default "Your request has been submitted successfully. You will receive a confirmation email shortly."
87
+ */
88
+ confirmationMessage?: string;
89
+ /**
90
+ * Whether to require identity verification
91
+ * @default true
92
+ */
93
+ requireIdentityVerification?: boolean;
94
+ /**
95
+ * Types of identifiers accepted for verification
96
+ * @default ["email", "account", "customer_id"]
97
+ */
98
+ identifierTypes?: Array<{
99
+ id: string;
100
+ label: string;
101
+ }>;
102
+ /**
103
+ * Whether to collect additional contact information
104
+ * @default true
105
+ */
106
+ collectAdditionalContact?: boolean;
107
+ /**
108
+ * Custom labels for form fields
109
+ */
110
+ labels?: {
111
+ name?: string;
112
+ email?: string;
113
+ requestType?: string;
114
+ description?: string;
115
+ submit?: string;
116
+ };
117
+ /**
118
+ * Object of CSS class overrides keyed by semantic section name.
119
+ */
120
+ classNames?: DSRRequestFormClassNames;
121
+ /**
122
+ * When true, all default Tailwind classes are removed so consumers
123
+ * can style from scratch using classNames.
124
+ */
125
+ unstyled?: boolean;
126
+ /**
127
+ * Whether the form is currently submitting.
128
+ * When true, the submit button is disabled and shows "Submitting..." text.
129
+ */
130
+ isSubmitting?: boolean;
131
+ /**
132
+ * Default values to pre-fill form fields.
133
+ * Useful for editing existing requests or pre-populating known data.
134
+ */
135
+ defaultValues?: Partial<DSRFormSubmission>;
136
+ /**
137
+ * Callback fired when the form is reset via the Reset button.
138
+ * To fully remount the component (clearing all internal state),
139
+ * change the `key` prop from the parent.
140
+ */
141
+ onReset?: () => void;
142
+ }
143
+ /**
144
+ * Data Subject Request form component. Implements NDPA Part IV, Sections 29-36
145
+ * covering data subject rights including access, rectification, erasure, and portability.
146
+ */
147
+ declare const DSRRequestForm: React.FC<DSRRequestFormProps>;
148
+
149
+ interface DSRDashboardClassNames {
150
+ root?: string;
151
+ header?: string;
152
+ title?: string;
153
+ filters?: string;
154
+ requestList?: string;
155
+ requestItem?: string;
156
+ statusBadge?: string;
157
+ detailPanel?: string;
158
+ }
159
+ interface DSRDashboardProps {
160
+ /**
161
+ * List of DSR requests to display
162
+ */
163
+ requests: DSRRequest[];
164
+ /**
165
+ * Callback function called when a request is selected
166
+ */
167
+ onSelectRequest?: (requestId: string) => void;
168
+ /**
169
+ * Callback function called when a request status is updated
170
+ */
171
+ onUpdateStatus?: (requestId: string, status: DSRStatus) => void;
172
+ /**
173
+ * Callback function called when a request is assigned
174
+ */
175
+ onAssignRequest?: (requestId: string, assignee: string) => void;
176
+ /**
177
+ * Title displayed on the dashboard
178
+ * @default "Data Subject Request Dashboard"
179
+ */
180
+ title?: string;
181
+ /**
182
+ * Description text displayed on the dashboard
183
+ * @default "Track and manage data subject requests in compliance with NDPA Part IV requirements."
184
+ */
185
+ description?: string;
186
+ /**
187
+ * Custom CSS class for the dashboard
188
+ */
189
+ className?: string;
190
+ /**
191
+ * Custom CSS class for the buttons
192
+ */
193
+ buttonClassName?: string;
194
+ /**
195
+ * Whether to show the request details
196
+ * @default true
197
+ */
198
+ showRequestDetails?: boolean;
199
+ /**
200
+ * Whether to show the request timeline
201
+ * @default true
202
+ */
203
+ showRequestTimeline?: boolean;
204
+ /**
205
+ * Whether to show the deadline alerts
206
+ * @default true
207
+ */
208
+ showDeadlineAlerts?: boolean;
209
+ /**
210
+ * List of possible assignees
211
+ */
212
+ assignees?: string[];
213
+ /**
214
+ * Object of CSS class overrides keyed by semantic section name.
215
+ */
216
+ classNames?: DSRDashboardClassNames;
217
+ /**
218
+ * When true, all default Tailwind classes are removed so consumers
219
+ * can style from scratch using classNames.
220
+ */
221
+ unstyled?: boolean;
222
+ }
223
+ /**
224
+ * Data Subject Request dashboard component. Supports compliance with NDPA Part IV,
225
+ * providing tools to track, manage, and respond to data subject requests within required timeframes.
226
+ */
227
+ declare const DSRDashboard: React.FC<DSRDashboardProps>;
228
+
229
+ interface DSRTrackerClassNames {
230
+ root?: string;
231
+ header?: string;
232
+ title?: string;
233
+ stats?: string;
234
+ statCard?: string;
235
+ table?: string;
236
+ tableHeader?: string;
237
+ tableRow?: string;
238
+ statusBadge?: string;
239
+ }
240
+ interface DSRTrackerProps {
241
+ /**
242
+ * List of DSR requests to track
243
+ */
244
+ requests: DSRRequest[];
245
+ /**
246
+ * Callback function called when a request is selected
247
+ */
248
+ onSelectRequest?: (requestId: string) => void;
249
+ /**
250
+ * Title displayed on the tracker
251
+ * @default "DSR Request Tracker"
252
+ */
253
+ title?: string;
254
+ /**
255
+ * Description text displayed on the tracker
256
+ * @default "Track the status and progress of data subject requests as required by NDPA Part IV."
257
+ */
258
+ description?: string;
259
+ /**
260
+ * Custom CSS class for the tracker
261
+ */
262
+ className?: string;
263
+ /**
264
+ * Custom CSS class for the buttons
265
+ */
266
+ buttonClassName?: string;
267
+ /**
268
+ * Whether to show the summary statistics
269
+ * @default true
270
+ */
271
+ showSummaryStats?: boolean;
272
+ /**
273
+ * Whether to show the request type breakdown
274
+ * @default true
275
+ */
276
+ showTypeBreakdown?: boolean;
277
+ /**
278
+ * Whether to show the status breakdown
279
+ * @default true
280
+ */
281
+ showStatusBreakdown?: boolean;
282
+ /**
283
+ * Whether to show the timeline chart
284
+ * @default true
285
+ */
286
+ showTimelineChart?: boolean;
287
+ /**
288
+ * Whether to show the overdue requests
289
+ * @default true
290
+ */
291
+ showOverdueRequests?: boolean;
292
+ /**
293
+ * Object of CSS class overrides keyed by semantic section name.
294
+ */
295
+ classNames?: DSRTrackerClassNames;
296
+ /**
297
+ * When true, all default Tailwind classes are removed so consumers
298
+ * can style from scratch using classNames.
299
+ */
300
+ unstyled?: boolean;
301
+ }
302
+ /**
303
+ * DSR tracking and analytics component. Supports compliance with NDPA Part IV,
304
+ * providing summary statistics, deadline tracking, and compliance metrics for data subject requests.
305
+ */
306
+ declare const DSRTracker: React.FC<DSRTrackerProps>;
307
+
308
+ export { DSRDashboard, type DSRDashboardClassNames, type DSRFormSubmission, DSRRequest, DSRRequestForm, type DSRRequestFormClassNames, DSRStatus, DSRTracker, type DSRTrackerClassNames, RequestType };
package/dist/index.d.mts CHANGED
@@ -1,10 +1,10 @@
1
1
  export { ConsentAnalyticsEvent, ConsentBanner, ConsentBannerClassNames, ConsentManager, ConsentManagerClassNames, ConsentStorage, ConsentStorageClassNames, resolveClass } from './consent.mjs';
2
2
  export { C as ConsentOption, a as ConsentSettings, b as ConsentStorageOptions, L as LawfulBasisType } from './consent-CmVzqZUk.mjs';
3
- export { D as DSRDashboard, a as DSRDashboardClassNames, b as DSRFormSubmission, c as DSRRequestForm, d as DSRRequestFormClassNames, e as DSRTracker, f as DSRTrackerClassNames } from './dsr-BTT-Xd7H.mjs';
3
+ export { DSRDashboard, DSRDashboardClassNames, DSRFormSubmission, DSRRequestForm, DSRRequestFormClassNames, DSRTracker, DSRTrackerClassNames } from './dsr.mjs';
4
4
  export { D as DSRRequest, a as DSRStatus, b as DSRType, R as RequestStatus, c as RequestType } from './dsr-Cm9lzWG7.mjs';
5
5
  export { DPIAQuestionnaire, DPIAQuestionnaireClassNames, DPIAReport, DPIAReportClassNames, StepIndicator, StepIndicatorClassNames } from './dpia.mjs';
6
6
  export { D as DPIAQuestion, a as DPIAResult, b as DPIARisk, c as DPIASection } from './dpia-5OQVA1R_.mjs';
7
- export { B as BreachFormSubmission, a as BreachNotificationManager, b as BreachNotificationManagerClassNames, c as BreachReportForm, d as BreachReportFormClassNames, e as BreachRiskAssessment, f as BreachRiskAssessmentClassNames, R as RegulatoryReportGenerator, g as RegulatoryReportGeneratorClassNames } from './breach-yRiyyc4n.mjs';
7
+ export { BreachFormSubmission, BreachNotificationManager, BreachNotificationManagerClassNames, BreachReportForm, BreachReportFormClassNames, BreachRiskAssessment, BreachRiskAssessmentClassNames, RegulatoryReportGenerator, RegulatoryReportGeneratorClassNames } from './breach.mjs';
8
8
  export { B as BreachCategory, a as BreachReport, N as NotificationRequirement, R as RegulatoryNotification, b as RiskAssessment } from './breach-Eu9byel8.mjs';
9
9
  export { P as PolicyExporter, a as PolicyExporterClassNames, b as PolicyGenerator, c as PolicyGeneratorClassNames, d as PolicyPreview, e as PolicyPreviewClassNames } from './policy-E0fXZkda.mjs';
10
10
  export { O as OrganizationInfo, P as PolicySection, a as PolicyTemplate, b as PolicyVariable, c as PrivacyPolicy } from './privacy-Ca6te9Ir.mjs';
package/dist/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  export { ConsentAnalyticsEvent, ConsentBanner, ConsentBannerClassNames, ConsentManager, ConsentManagerClassNames, ConsentStorage, ConsentStorageClassNames, resolveClass } from './consent.js';
2
2
  export { C as ConsentOption, a as ConsentSettings, b as ConsentStorageOptions, L as LawfulBasisType } from './consent-CmVzqZUk.js';
3
- export { D as DSRDashboard, a as DSRDashboardClassNames, b as DSRFormSubmission, c as DSRRequestForm, d as DSRRequestFormClassNames, e as DSRTracker, f as DSRTrackerClassNames } from './dsr-190YpijW.js';
3
+ export { DSRDashboard, DSRDashboardClassNames, DSRFormSubmission, DSRRequestForm, DSRRequestFormClassNames, DSRTracker, DSRTrackerClassNames } from './dsr.js';
4
4
  export { D as DSRRequest, a as DSRStatus, b as DSRType, R as RequestStatus, c as RequestType } from './dsr-Cm9lzWG7.js';
5
5
  export { DPIAQuestionnaire, DPIAQuestionnaireClassNames, DPIAReport, DPIAReportClassNames, StepIndicator, StepIndicatorClassNames } from './dpia.js';
6
6
  export { D as DPIAQuestion, a as DPIAResult, b as DPIARisk, c as DPIASection } from './dpia-5OQVA1R_.js';
7
- export { B as BreachFormSubmission, a as BreachNotificationManager, b as BreachNotificationManagerClassNames, c as BreachReportForm, d as BreachReportFormClassNames, e as BreachRiskAssessment, f as BreachRiskAssessmentClassNames, R as RegulatoryReportGenerator, g as RegulatoryReportGeneratorClassNames } from './breach-ouXoVTWs.js';
7
+ export { BreachFormSubmission, BreachNotificationManager, BreachNotificationManagerClassNames, BreachReportForm, BreachReportFormClassNames, BreachRiskAssessment, BreachRiskAssessmentClassNames, RegulatoryReportGenerator, RegulatoryReportGeneratorClassNames } from './breach.js';
8
8
  export { B as BreachCategory, a as BreachReport, N as NotificationRequirement, R as RegulatoryNotification, b as RiskAssessment } from './breach-Eu9byel8.js';
9
9
  export { P as PolicyExporter, a as PolicyExporterClassNames, b as PolicyGenerator, c as PolicyGeneratorClassNames, d as PolicyPreview, e as PolicyPreviewClassNames } from './policy-D2_jh5-T.js';
10
10
  export { O as OrganizationInfo, P as PolicySection, a as PolicyTemplate, b as PolicyVariable, c as PrivacyPolicy } from './privacy-Ca6te9Ir.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tantainnovative/ndpr-toolkit",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "private": false,
5
5
  "description": "Nigeria Data Protection Toolkit — enterprise-grade compliance components for the Nigeria Data Protection Act (NDPA) 2023",
6
6
  "keywords": [