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.
- package/README.md +349 -349
- package/dist/.vite/manifest.json +44 -44
- package/dist/FormDisabledProvider-D-ONCDP4.cjs +1 -0
- package/dist/{FormDisabledProvider-BEWNUfwU.js → FormDisabledProvider-DULB742B.js} +1 -1
- package/dist/components/common/GdprOverview/GdprOverview.d.ts +8 -0
- package/dist/components/common/GdprOverview/comps/TaskSearchModal/TaskSearchModal.d.ts +12 -0
- package/dist/components/common/GdprOverview/comps/index.d.ts +1 -0
- package/dist/components/common/GdprOverview/hooks/useFetchGdprData.d.ts +8 -0
- package/dist/components/common/GdprOverview/hooks/useGdprColumns.d.ts +29 -0
- package/dist/components/common/GdprOverview/hooks/useGdprSearchColumns.d.ts +7 -0
- package/dist/components/common/GdprOverview/hooks/useTableTasks.d.ts +5 -0
- package/dist/components/common/index.d.ts +1 -0
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +38 -38
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +15 -15
- package/dist/layout.cjs.js +1 -1
- package/dist/layout.es.js +84 -84
- package/dist/{localStorageUtils-CZ4HDRzi.js → localStorageUtils-D2opn367.js} +2 -2
- package/dist/main.cjs.js +15 -15
- package/dist/main.d.ts +1 -0
- package/dist/main.es.js +11954 -11545
- package/dist/models/api/gdpr/GdprDetailModel.d.ts +12 -0
- package/dist/models/api/gdpr/GdprDetailTaskModel.d.ts +19 -0
- package/dist/models/api/gdpr/GdprIndexModel.d.ts +9 -0
- package/dist/models/api/gdpr/GdprSearchResultDto.d.ts +6 -0
- package/dist/models/bnfTable/BnfTableWrappedProps.d.ts +1 -1
- package/dist/models/texts/ComponentsContextTexts.d.ts +2 -0
- package/dist/models/texts/GdprTexts.d.ts +29 -0
- package/dist/nivo-bar-BIIySZxC.cjs +285 -0
- package/dist/{ShortcutLinksContext-uD20RgYr.js → nivo-bar-zr2I3nTw.js} +20595 -20595
- package/dist/style.css +1 -1
- package/dist/useIsFormDirty-Bi8OFCrS.cjs +1 -0
- package/dist/{useIsFormDirty-CHV-JRlA.js → useIsFormDirty-Bj1bSMzm.js} +5 -5
- package/dist/useLocalStorageState-DKlcenZY.cjs +1 -0
- package/dist/{useLocalStorageState-C9lOp75w.js → useLocalStorageState-DkfHepwT.js} +30 -30
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +22 -22
- package/dist/variables.scss +165 -165
- package/package.json +127 -127
- package/dist/FormDisabledProvider-CfffF5hp.cjs +0 -1
- package/dist/ShortcutLinksContext-C9ApadFv.cjs +0 -285
- package/dist/useIsFormDirty-DL0Prrkw.cjs +0 -1
- 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
|
+
}
|
|
@@ -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;
|