react-luminus-components 2.0.13 → 2.0.15

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 (44) hide show
  1. package/README.md +349 -349
  2. package/dist/.vite/manifest.json +44 -44
  3. package/dist/FormDisabledProvider-D-ONCDP4.cjs +1 -0
  4. package/dist/{FormDisabledProvider-BEWNUfwU.js → FormDisabledProvider-DULB742B.js} +1 -1
  5. package/dist/components/common/GdprOverview/GdprOverview.d.ts +8 -0
  6. package/dist/components/common/GdprOverview/comps/TaskSearchModal/TaskSearchModal.d.ts +12 -0
  7. package/dist/components/common/GdprOverview/comps/index.d.ts +1 -0
  8. package/dist/components/common/GdprOverview/hooks/useFetchGdprData.d.ts +8 -0
  9. package/dist/components/common/GdprOverview/hooks/useGdprColumns.d.ts +29 -0
  10. package/dist/components/common/GdprOverview/hooks/useGdprSearchColumns.d.ts +7 -0
  11. package/dist/components/common/GdprOverview/hooks/useTableTasks.d.ts +5 -0
  12. package/dist/components/common/index.d.ts +1 -0
  13. package/dist/contexts.cjs.js +1 -1
  14. package/dist/contexts.es.js +38 -38
  15. package/dist/hooks.cjs.js +1 -1
  16. package/dist/hooks.es.js +15 -15
  17. package/dist/layout.cjs.js +1 -1
  18. package/dist/layout.es.js +84 -84
  19. package/dist/{localStorageUtils-CZ4HDRzi.js → localStorageUtils-D2opn367.js} +2 -2
  20. package/dist/main.cjs.js +15 -15
  21. package/dist/main.d.ts +1 -0
  22. package/dist/main.es.js +11954 -11545
  23. package/dist/models/api/gdpr/GdprDetailModel.d.ts +12 -0
  24. package/dist/models/api/gdpr/GdprDetailTaskModel.d.ts +19 -0
  25. package/dist/models/api/gdpr/GdprIndexModel.d.ts +9 -0
  26. package/dist/models/api/gdpr/GdprSearchResultDto.d.ts +6 -0
  27. package/dist/models/bnfTable/BnfTableWrappedProps.d.ts +1 -1
  28. package/dist/models/texts/ComponentsContextTexts.d.ts +2 -0
  29. package/dist/models/texts/GdprTexts.d.ts +29 -0
  30. package/dist/nivo-bar-BIIySZxC.cjs +285 -0
  31. package/dist/{ShortcutLinksContext-uD20RgYr.js → nivo-bar-zr2I3nTw.js} +20595 -20595
  32. package/dist/style.css +1 -1
  33. package/dist/useIsFormDirty-Bi8OFCrS.cjs +1 -0
  34. package/dist/{useIsFormDirty-CHV-JRlA.js → useIsFormDirty-Bj1bSMzm.js} +5 -5
  35. package/dist/useLocalStorageState-DKlcenZY.cjs +1 -0
  36. package/dist/{useLocalStorageState-C9lOp75w.js → useLocalStorageState-DkfHepwT.js} +30 -30
  37. package/dist/utils.cjs.js +1 -1
  38. package/dist/utils.es.js +22 -22
  39. package/dist/variables.scss +165 -165
  40. package/package.json +127 -127
  41. package/dist/FormDisabledProvider-CfffF5hp.cjs +0 -1
  42. package/dist/ShortcutLinksContext-C9ApadFv.cjs +0 -285
  43. package/dist/useIsFormDirty-DL0Prrkw.cjs +0 -1
  44. package/dist/useLocalStorageState-C3FCErU9.cjs +0 -1
@@ -0,0 +1,12 @@
1
+ import { default as GdprDetailTaskModel } from './GdprDetailTaskModel';
2
+
3
+ export default interface GdprDetailModel {
4
+ id: string | null;
5
+ name: string | null;
6
+ description: string | null;
7
+ archived: boolean;
8
+ active: boolean;
9
+ lastFired: string | null;
10
+ historyYear: number;
11
+ tasks: GdprDetailTaskModel[];
12
+ }
@@ -0,0 +1,19 @@
1
+ export default interface GdprDetailTaskModel {
2
+ id: string | null;
3
+ name: string | null;
4
+ description: string | null;
5
+ scenarioId: string | null;
6
+ tableName: string | null;
7
+ activationCondition: string | null;
8
+ activationTaskId: string | null;
9
+ activationTaskTable: string | null;
10
+ activationTaskRelation: string | null;
11
+ deletes: boolean;
12
+ searchable: boolean;
13
+ anonymizedCountInMonths: null | {
14
+ [key: string]: number;
15
+ };
16
+ deletedCountInMonths: null | {
17
+ [key: string]: number;
18
+ };
19
+ }
@@ -0,0 +1,9 @@
1
+ export default interface GdprIndexModel {
2
+ id: string | null;
3
+ name: string | null;
4
+ description: string | null;
5
+ archived: boolean;
6
+ active: boolean;
7
+ lastFired: string | null;
8
+ taskCount: number;
9
+ }
@@ -0,0 +1,6 @@
1
+ export default interface GdprSearchResultDto {
2
+ id: string;
3
+ taskId: string | null;
4
+ date: string;
5
+ taskDeletedById: string | null;
6
+ }
@@ -21,7 +21,6 @@ type BnfTableWrappedProps<T> = {
21
21
  tableStore?: TableBoundStore;
22
22
  rowSelection?: {
23
23
  enabled: boolean;
24
- getRowId: (row: T) => string;
25
24
  selectedRows: Record<string, boolean>;
26
25
  setSelectedRows: Dispatch<SetStateAction<Record<string, boolean>>>;
27
26
  };
@@ -66,5 +65,6 @@ type BnfTableWrappedProps<T> = {
66
65
  bottomBar?: {
67
66
  hidden?: boolean;
68
67
  };
68
+ getRowId?: (row: T) => string;
69
69
  };
70
70
  export default BnfTableWrappedProps;
@@ -15,6 +15,7 @@ import { default as EmailOverviewTexts } from './EmailOverviewTexts';
15
15
  import { default as ErrorBoundaryTexts } from './ErrorBoundaryTexts';
16
16
  import { default as FormSubmitTexts } from './FormSubmitTexts';
17
17
  import { default as FormValidationTexts } from './FormValidationTexts';
18
+ import { default as GdprTexts } from './GdprTexts';
18
19
  import { default as HomeDashboardTexts } from './HomeDashboardTexts';
19
20
  import { default as ImportTexts } from './ImportTexts';
20
21
  import { default as LocalizationTexts } from './LocalizationTexts';
@@ -56,5 +57,6 @@ type ComponentsContextTexts = {
56
57
  emailOverview: EmailOverviewTexts;
57
58
  auth: AuthTexts;
58
59
  docsAIChat: DocsAIChatTexts;
60
+ gdpr: GdprTexts;
59
61
  };
60
62
  export default ComponentsContextTexts;
@@ -0,0 +1,29 @@
1
+ type GdprTexts = {
2
+ title: string;
3
+ scenario: string;
4
+ searchTask: string;
5
+ lastFired: string;
6
+ table: {
7
+ activationTaskInfo: string;
8
+ id: string;
9
+ searchable: string;
10
+ name: string;
11
+ description: string;
12
+ activationTaskId: string;
13
+ };
14
+ taskSearch: {
15
+ noSearchResults: string;
16
+ title: string;
17
+ selectedTask: string;
18
+ searchText: string;
19
+ searchButton: string;
20
+ noTasksToFilter: string;
21
+ table: {
22
+ id: string;
23
+ date: string;
24
+ taskId: string;
25
+ taskDeletedById: string;
26
+ };
27
+ };
28
+ };
29
+ export default GdprTexts;