eehitus-my-task-list-ui 1.1.4 → 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/dist/index.cjs.js +1 -74
- package/dist/index.cjs.js.LICENSE.txt +0 -87
- package/dist/index.esm.js +1 -74
- package/dist/index.esm.js.LICENSE.txt +0 -87
- package/dist/index.umd.js +1 -74
- package/dist/index.umd.js.LICENSE.txt +0 -87
- package/dist/l10n/eehitus-my-task-list-ui-combined_translations_et.json +1 -1
- package/dist/types/App.d.ts +1 -1
- package/dist/types/components/common/classificators/DocumentStates.d.ts +1 -5
- package/dist/types/components/common/constants/Constants.d.ts +6 -93
- package/dist/types/components/common/stateServices/DocumentStateService.d.ts +3 -5
- package/dist/types/components/common/stateServices/ProceedingStateService.d.ts +4 -8
- package/dist/types/components/services/buildings_actual_data_api_client/common.d.ts +1 -1
- package/dist/types/components/services/classifier_api_client/common.d.ts +1 -1
- package/dist/types/components/services/my_views_api_client/api.d.ts +65 -65
- package/dist/types/components/services/my_views_api_client/base.d.ts +14 -2
- package/dist/types/components/services/my_views_api_client/configuration.d.ts +8 -0
- package/dist/types/components/util/link-utils.d.ts +0 -2
- package/dist/types/components/util/redirect-utils.d.ts +0 -2
- package/dist/types/indexExport.d.ts +0 -1
- package/dist/types/redux/reducers/documentsSlice.d.ts +0 -10
- package/dist/types/redux/reducers/proceedingsSlice.d.ts +0 -16
- package/dist/types/redux/reducers/rootReducer.d.ts +0 -1
- package/package.json +4 -4
- package/dist/types/components/DemoPlannings.d.ts +0 -3
- package/dist/types/components/common/components/accordionSelect/AccordionSelect.d.ts +0 -15
- package/dist/types/components/common/components/icons/EhrIcon.d.ts +0 -3
- package/dist/types/components/common/components/modalWrapper/ModalWrapper.d.ts +0 -27
- package/dist/types/components/common/components/pageTitle/PageTitle.d.ts +0 -6
- package/dist/types/components/common/components/tediTable/TediTable.d.ts +0 -4
- package/dist/types/components/common/components/tediTable/tediTableHelpers.d.ts +0 -3
- package/dist/types/components/common/constants/planningDotyConsts.d.ts +0 -3
- package/dist/types/components/page/myPlannings/MyPlanningsPage.d.ts +0 -9
- package/dist/types/components/page/myPlannings/components/AddNewPlanningButton.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsCompletedSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsInstitutionSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsOngoingSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsProceedingsSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/documentsTable/PlanningsDocumentsTable.d.ts +0 -10
- package/dist/types/components/page/myPlannings/components/documentsTable/planningsDocTableHelpers.d.ts +0 -6
- package/dist/types/components/page/myPlannings/components/proceedingsTable/PlanningsProceedingsTable.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/proceedingsTable/planningsProcTableHelpers.d.ts +0 -6
- package/dist/types/contexts/NavigationContext.d.ts +0 -21
- package/dist/types/redux/reducers/myPlannings/myPlanningsSlice.d.ts +0 -23
- package/dist/types/redux/reducers/myPlannings/planningThunks/getAllPlanningsData.d.ts +0 -14
- package/dist/types/redux/reducers/myPlannings/planningThunks/getFinishedDocuments.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/planningThunks/getIncomingDocuments.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/planningThunks/getProceedings.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/planningThunks/getWorkingDocuments.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/types.d.ts +0 -31
|
@@ -1,21 +1,5 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
1
|
import { BaseMyDocument, MyOperationDto, MyProceedingsDto } from '../../components/services/my_views_api_client';
|
|
3
2
|
import { ProceedingState } from './proceedingsState';
|
|
4
|
-
export declare const myProceedingsSelector: ((state: any) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any, {
|
|
5
|
-
clearCache: () => void;
|
|
6
|
-
}> & {
|
|
7
|
-
clearCache: () => void;
|
|
8
|
-
};
|
|
9
|
-
export declare const incomingDocumentsSelector: ((state: any) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any, {
|
|
10
|
-
clearCache: () => void;
|
|
11
|
-
}> & {
|
|
12
|
-
clearCache: () => void;
|
|
13
|
-
};
|
|
14
3
|
export declare const myProceedingsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyProceedingsDto[], "proceedings/myProceedingsLoaded">, proceedingsToCommentLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyOperationDto[], "proceedings/proceedingsToCommentLoaded">, incomingDocumentsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<BaseMyDocument[], "proceedings/incomingDocumentsLoaded">;
|
|
15
|
-
export declare const actions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
16
|
-
myProceedingsLoaded: (state: import("immer/dist/internal").WritableDraft<ProceedingState>, action: PayloadAction<MyProceedingsDto[]>) => void;
|
|
17
|
-
proceedingsToCommentLoaded: (state: import("immer/dist/internal").WritableDraft<ProceedingState>, action: PayloadAction<MyOperationDto[]>) => void;
|
|
18
|
-
incomingDocumentsLoaded: (state: import("immer/dist/internal").WritableDraft<ProceedingState>, action: PayloadAction<BaseMyDocument[]>) => void;
|
|
19
|
-
}, "proceedings">;
|
|
20
4
|
declare const _default: import("@reduxjs/toolkit").Reducer<ProceedingState>;
|
|
21
5
|
export default _default;
|
|
@@ -7,6 +7,5 @@ declare const rootReducer: import("@reduxjs/toolkit").Reducer<import("@reduxjs/t
|
|
|
7
7
|
notifications: {
|
|
8
8
|
notices: import("../../components/common/components/notifications/NotifificationMessagesWithValues").NotificationMessageWithValues[];
|
|
9
9
|
};
|
|
10
|
-
myPlannings: import("./myPlannings/types").MyPlanningSliceState;
|
|
11
10
|
}>, import("@reduxjs/toolkit").AnyAction>;
|
|
12
11
|
export default rootReducer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eehitus-my-task-list-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@reduxjs/toolkit": "^1.4.0",
|
|
37
|
-
"@tehik-ee/tedi-
|
|
37
|
+
"@tehik-ee/tedi-react": "13.0.0",
|
|
38
38
|
"axios": "1.7.8",
|
|
39
39
|
"bfj": "^7.0.2",
|
|
40
40
|
"browserfs": "^1.4.3",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"timers-browserify": "^2.0.12"
|
|
86
86
|
},
|
|
87
87
|
"resolutions": {
|
|
88
|
-
"@tehik-ee/tedi-
|
|
88
|
+
"@tehik-ee/tedi-react": "13.0.0",
|
|
89
89
|
"keycloak-js": "23.0.2",
|
|
90
90
|
"react": "18.2.0",
|
|
91
91
|
"react-dom": "18.2.0",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
|
|
104
104
|
"@reduxjs/toolkit": "^1.4.0",
|
|
105
105
|
"@svgr/webpack": "^5.5.0",
|
|
106
|
-
"@tehik-ee/tedi-
|
|
106
|
+
"@tehik-ee/tedi-react": "13.0.0",
|
|
107
107
|
"@testing-library/dom": "^10.4.0",
|
|
108
108
|
"@testing-library/jest-dom": "^6.6.3",
|
|
109
109
|
"@testing-library/react": "^16.0.1",
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface AccordionSelectItem {
|
|
3
|
-
id: string;
|
|
4
|
-
key: string;
|
|
5
|
-
title: string;
|
|
6
|
-
description: string | React.ReactNode;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
interface AccordionSelectProps {
|
|
10
|
-
value: string;
|
|
11
|
-
selectItems: AccordionSelectItem[];
|
|
12
|
-
onChange: (_newSelected: string) => void;
|
|
13
|
-
}
|
|
14
|
-
declare const AccordionSelect: ({ value, selectItems, onChange, }: AccordionSelectProps) => JSX.Element;
|
|
15
|
-
export default AccordionSelect;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { CardProps, CardNotificationProps, ButtonColor, ButtonType } from '@tehik-ee/tedi-design-system/community';
|
|
3
|
-
interface ModalWrapperProps {
|
|
4
|
-
visible: boolean;
|
|
5
|
-
toggleVisible: (isVisible: boolean) => void;
|
|
6
|
-
primaryText?: string;
|
|
7
|
-
secondaryText?: string;
|
|
8
|
-
tertiaryText?: string;
|
|
9
|
-
onPrimary?: () => void;
|
|
10
|
-
onSecondary?: () => void;
|
|
11
|
-
onTertiary?: () => void;
|
|
12
|
-
tertiaryIconLeft?: string;
|
|
13
|
-
children: string | JSX.Element | JSX.Element[] | (() => JSX.Element);
|
|
14
|
-
title?: string;
|
|
15
|
-
size?: 12 | 10 | 8 | 6;
|
|
16
|
-
primaryDisabled?: boolean;
|
|
17
|
-
tertiaryDisabled?: boolean;
|
|
18
|
-
primaryColor?: ButtonColor;
|
|
19
|
-
cardProps?: CardProps;
|
|
20
|
-
withoutCardHeader?: boolean;
|
|
21
|
-
tertiaryColor?: ButtonColor;
|
|
22
|
-
tertiaryVisualType?: ButtonType;
|
|
23
|
-
notification?: CardNotificationProps;
|
|
24
|
-
isLoading?: boolean;
|
|
25
|
-
}
|
|
26
|
-
declare const ModalWrapper: ({ visible, toggleVisible, title, size, primaryText, secondaryText, tertiaryText, onPrimary, onSecondary, onTertiary, children, primaryDisabled, tertiaryDisabled, tertiaryIconLeft, primaryColor, cardProps, withoutCardHeader, tertiaryColor, tertiaryVisualType, notification, isLoading, }: ModalWrapperProps) => JSX.Element;
|
|
27
|
-
export default ModalWrapper;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { GlobalUserInfo } from 'ehr-auth-react';
|
|
3
|
-
import { LinkGen } from '../../../contexts/NavigationContext';
|
|
4
|
-
interface MyPlanningsProps {
|
|
5
|
-
userInfo: GlobalUserInfo;
|
|
6
|
-
linkGen: LinkGen;
|
|
7
|
-
}
|
|
8
|
-
declare const MyPlanningsPage: ({ userInfo, linkGen }: MyPlanningsProps) => JSX.Element;
|
|
9
|
-
export default MyPlanningsPage;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { BaseMyDocument } from '../../../../services/my_views_api_client';
|
|
3
|
-
interface PlanningsDocumentsTableProps {
|
|
4
|
-
documents: BaseMyDocument[];
|
|
5
|
-
documentType: string;
|
|
6
|
-
isLoading?: boolean;
|
|
7
|
-
isError?: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const PlanningDocumentsTable: ({ documents, documentType, isLoading, isError, }: PlanningsDocumentsTableProps) => JSX.Element;
|
|
10
|
-
export default PlanningDocumentsTable;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ColumnDef } from '@tanstack/react-table';
|
|
2
|
-
import { IntlShape } from 'react-intl';
|
|
3
|
-
import { BaseMyDocument } from '../../../../services/my_views_api_client';
|
|
4
|
-
import { LinkGen } from '../../../../../contexts/NavigationContext';
|
|
5
|
-
export type PlanningsDocumentsTableColumn = ColumnDef<BaseMyDocument, any>;
|
|
6
|
-
export declare const getPlanningsDocumentsTableColumns: (intl: IntlShape, linkGen: LinkGen) => PlanningsDocumentsTableColumn[];
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ColumnDef } from '@tanstack/react-table';
|
|
2
|
-
import { IntlShape } from 'react-intl';
|
|
3
|
-
import { MyProceedingsDto } from '../../../../services/my_views_api_client';
|
|
4
|
-
import { LinkGen } from '../../../../../contexts/NavigationContext';
|
|
5
|
-
export type PlanningsProcTableColumn = ColumnDef<MyProceedingsDto, any>;
|
|
6
|
-
export declare const getPlanningsProcTableColumns: (intl: IntlShape, linkGen: LinkGen) => PlanningsProcTableColumn[];
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export type LinkGen = (event?: any, type?: any, path?: any, state?: any, isNewWindow?: boolean) => void;
|
|
3
|
-
export declare enum ExternalNotificationType {
|
|
4
|
-
Success = "success",
|
|
5
|
-
Warinng = "warning",
|
|
6
|
-
Error = "error"
|
|
7
|
-
}
|
|
8
|
-
export interface ExternalNotification {
|
|
9
|
-
id?: number;
|
|
10
|
-
header: string;
|
|
11
|
-
body?: string;
|
|
12
|
-
bodyComponent?: JSX.Element;
|
|
13
|
-
messageCode?: string;
|
|
14
|
-
theme: ExternalNotificationType;
|
|
15
|
-
timer?: number;
|
|
16
|
-
}
|
|
17
|
-
export declare const NavigationContext: import("react").Context<{
|
|
18
|
-
linkGen: LinkGen;
|
|
19
|
-
returnData?: any;
|
|
20
|
-
pushExternalNotification?: ((message: ExternalNotification) => void) | undefined;
|
|
21
|
-
}>;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { DocumentsData, MyPlanningSliceState, PlanningProceedingsData } from './types';
|
|
2
|
-
export declare const planningProceedingsDataSelector: ((state: any) => PlanningProceedingsData) & import("reselect").OutputSelectorFields<(args_0: PlanningProceedingsData) => PlanningProceedingsData, {
|
|
3
|
-
clearCache: () => void;
|
|
4
|
-
}> & {
|
|
5
|
-
clearCache: () => void;
|
|
6
|
-
};
|
|
7
|
-
export declare const incomingDocumentsDataSelector: ((state: any) => DocumentsData) & import("reselect").OutputSelectorFields<(args_0: DocumentsData) => DocumentsData, {
|
|
8
|
-
clearCache: () => void;
|
|
9
|
-
}> & {
|
|
10
|
-
clearCache: () => void;
|
|
11
|
-
};
|
|
12
|
-
export declare const ongoingDocumentsDataSelector: ((state: any) => DocumentsData) & import("reselect").OutputSelectorFields<(args_0: DocumentsData) => DocumentsData, {
|
|
13
|
-
clearCache: () => void;
|
|
14
|
-
}> & {
|
|
15
|
-
clearCache: () => void;
|
|
16
|
-
};
|
|
17
|
-
export declare const finishedDocumentsDataSelector: ((state: any) => DocumentsData) & import("reselect").OutputSelectorFields<(args_0: DocumentsData) => DocumentsData, {
|
|
18
|
-
clearCache: () => void;
|
|
19
|
-
}> & {
|
|
20
|
-
clearCache: () => void;
|
|
21
|
-
};
|
|
22
|
-
declare const _default: import("@reduxjs/toolkit").Reducer<MyPlanningSliceState>;
|
|
23
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { UserInfo } from '../../../../components/services/user_api_client';
|
|
2
|
-
declare const getAllPlanningsData: import("@reduxjs/toolkit").AsyncThunk<void, {
|
|
3
|
-
userInfo: UserInfo;
|
|
4
|
-
}, {
|
|
5
|
-
state?: unknown;
|
|
6
|
-
dispatch?: import("@reduxjs/toolkit").Dispatch<import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
7
|
-
extra?: unknown;
|
|
8
|
-
rejectValue?: unknown;
|
|
9
|
-
serializedErrorType?: unknown;
|
|
10
|
-
pendingMeta?: unknown;
|
|
11
|
-
fulfilledMeta?: unknown;
|
|
12
|
-
rejectedMeta?: unknown;
|
|
13
|
-
}>;
|
|
14
|
-
export default getAllPlanningsData;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UserInfo } from '../../../../components/services/user_api_client';
|
|
2
|
-
import { BaseMyDocument } from '../../../../components/services/my_views_api_client';
|
|
3
|
-
declare const getCompletedDocuments: import("@reduxjs/toolkit").AsyncThunk<void | BaseMyDocument[], {
|
|
4
|
-
userInfo: UserInfo;
|
|
5
|
-
}, {
|
|
6
|
-
state?: unknown;
|
|
7
|
-
dispatch?: import("@reduxjs/toolkit").Dispatch<import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
8
|
-
extra?: unknown;
|
|
9
|
-
rejectValue?: unknown;
|
|
10
|
-
serializedErrorType?: unknown;
|
|
11
|
-
pendingMeta?: unknown;
|
|
12
|
-
fulfilledMeta?: unknown;
|
|
13
|
-
rejectedMeta?: unknown;
|
|
14
|
-
}>;
|
|
15
|
-
export default getCompletedDocuments;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UserInfo } from '../../../../components/services/user_api_client';
|
|
2
|
-
import { BaseMyDocument } from '../../../../components/services/my_views_api_client';
|
|
3
|
-
declare const getIncomingDocuments: import("@reduxjs/toolkit").AsyncThunk<BaseMyDocument[], {
|
|
4
|
-
userInfo: UserInfo;
|
|
5
|
-
}, {
|
|
6
|
-
state?: unknown;
|
|
7
|
-
dispatch?: import("@reduxjs/toolkit").Dispatch<import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
8
|
-
extra?: unknown;
|
|
9
|
-
rejectValue?: unknown;
|
|
10
|
-
serializedErrorType?: unknown;
|
|
11
|
-
pendingMeta?: unknown;
|
|
12
|
-
fulfilledMeta?: unknown;
|
|
13
|
-
rejectedMeta?: unknown;
|
|
14
|
-
}>;
|
|
15
|
-
export default getIncomingDocuments;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UserInfo } from '../../../../components/services/user_api_client/api';
|
|
2
|
-
import { MyProceedingsDto } from '../../../../components/services/my_views_api_client';
|
|
3
|
-
declare const getPlanningsProceedings: import("@reduxjs/toolkit").AsyncThunk<void | MyProceedingsDto[], {
|
|
4
|
-
userInfo: UserInfo;
|
|
5
|
-
}, {
|
|
6
|
-
state?: unknown;
|
|
7
|
-
dispatch?: import("@reduxjs/toolkit").Dispatch<import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
8
|
-
extra?: unknown;
|
|
9
|
-
rejectValue?: unknown;
|
|
10
|
-
serializedErrorType?: unknown;
|
|
11
|
-
pendingMeta?: unknown;
|
|
12
|
-
fulfilledMeta?: unknown;
|
|
13
|
-
rejectedMeta?: unknown;
|
|
14
|
-
}>;
|
|
15
|
-
export default getPlanningsProceedings;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UserInfo } from '../../../../components/services/user_api_client';
|
|
2
|
-
import { BaseMyDocument } from '../../../../components/services/my_views_api_client';
|
|
3
|
-
declare const getOngoingDocuments: import("@reduxjs/toolkit").AsyncThunk<BaseMyDocument[], {
|
|
4
|
-
userInfo: UserInfo;
|
|
5
|
-
}, {
|
|
6
|
-
state?: unknown;
|
|
7
|
-
dispatch?: import("@reduxjs/toolkit").Dispatch<import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
8
|
-
extra?: unknown;
|
|
9
|
-
rejectValue?: unknown;
|
|
10
|
-
serializedErrorType?: unknown;
|
|
11
|
-
pendingMeta?: unknown;
|
|
12
|
-
fulfilledMeta?: unknown;
|
|
13
|
-
rejectedMeta?: unknown;
|
|
14
|
-
}>;
|
|
15
|
-
export default getOngoingDocuments;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { BaseMyDocument, MyOperationDto, MyProceedingsDto } from '../../../components/services/my_views_api_client';
|
|
2
|
-
export interface MyPlanningSliceState {
|
|
3
|
-
planningProceedings: MyProceedingsDto[];
|
|
4
|
-
planningProceedingsLoading: boolean;
|
|
5
|
-
planningProceedingsError: boolean;
|
|
6
|
-
signingDocuments: BaseMyDocument[];
|
|
7
|
-
signingDocumentsLoading: boolean;
|
|
8
|
-
signingDocumentsError: boolean;
|
|
9
|
-
proceedingCommentOperations: MyOperationDto[];
|
|
10
|
-
proceedingCommentOperationsLoading: boolean;
|
|
11
|
-
proceedingCommentOperationsrror: boolean;
|
|
12
|
-
incomingDocuments: BaseMyDocument[];
|
|
13
|
-
incomingDocumentsLoading: boolean;
|
|
14
|
-
incomingDocumentsError: boolean;
|
|
15
|
-
ongoingDocuments: BaseMyDocument[];
|
|
16
|
-
ongoingDocumentsLoading: boolean;
|
|
17
|
-
ongoingDocumentsError: boolean;
|
|
18
|
-
finishedDocuments: BaseMyDocument[];
|
|
19
|
-
finishedDocumentsLoading: boolean;
|
|
20
|
-
finishedDocumentsError: boolean;
|
|
21
|
-
}
|
|
22
|
-
export interface PlanningProceedingsData {
|
|
23
|
-
proceedings: MyProceedingsDto[];
|
|
24
|
-
isLoading: boolean;
|
|
25
|
-
isError: boolean;
|
|
26
|
-
}
|
|
27
|
-
export interface DocumentsData {
|
|
28
|
-
documents: BaseMyDocument[];
|
|
29
|
-
isLoading: boolean;
|
|
30
|
-
isError: boolean;
|
|
31
|
-
}
|