react-luminus-components 2.0.5-beta.r19-21 → 2.0.5-beta.r19-23
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/.vite/manifest.json +34 -34
- package/dist/{FormDisabledProvider-DvfrLH-L.js → FormDisabledProvider-BlRae2l2.js} +1 -1
- package/dist/{FormDisabledProvider-Boy3uKK2.cjs → FormDisabledProvider-CiGUtSf7.cjs} +1 -1
- package/dist/components/Flexmonster/components/ReportSharingModal/hooks/useReportSharingApi.d.ts +2 -2
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +119 -119
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +4 -4
- package/dist/layout.cjs.js +1 -1
- package/dist/layout.es.js +2 -2
- package/dist/main.cjs.js +8 -8
- package/dist/main.es.js +696 -687
- package/dist/models/api/employee/IEmployee.d.ts +9 -0
- package/dist/models/api/reports/ReportRestrictResultModel.d.ts +10 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/nivo-bar-BHzU38wt.js +37458 -0
- package/dist/nivo-bar-C1VYGnTR.cjs +285 -0
- package/dist/{useIsFormDirty-B723dG-I.cjs → useIsFormDirty-BhBtGgzZ.cjs} +1 -1
- package/dist/{useIsFormDirty-Dn2nhhtz.js → useIsFormDirty-GgEve4W-.js} +1 -1
- package/dist/{useLocalStorageState-GaJtAO3b.cjs → useLocalStorageState-AB4BFfn5.cjs} +1 -1
- package/dist/{useLocalStorageState-CCIGnkoN.js → useLocalStorageState-B2v6hClT.js} +1 -1
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +20 -16
- package/package.json +2 -2
- package/dist/nivo-bar-I92eMmVs.cjs +0 -326
- package/dist/nivo-bar-eqo8TGxR.js +0 -41894
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as IEmployee } from '../employee/IEmployee';
|
|
2
|
+
|
|
3
|
+
export default interface ReportRestrictResultModel {
|
|
4
|
+
reportVersionId: number;
|
|
5
|
+
reportName: string;
|
|
6
|
+
reportVersionName: string;
|
|
7
|
+
owner: IEmployee;
|
|
8
|
+
user: IEmployee;
|
|
9
|
+
addedOrRemoved: boolean;
|
|
10
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export type { default as DocumentListModel } from './api/documents/DocumentListM
|
|
|
94
94
|
export type { default as DocumentUploadModel } from './api/documents/DocumentUploadModel';
|
|
95
95
|
export type { default as DocumentsCreateFolderModel } from './api/documents/DocumentsCreateFolderModel';
|
|
96
96
|
export type { default as ReportModel } from './api/reports/ReportModel';
|
|
97
|
+
export type { default as ReportRestrictResultModel } from './api/reports/ReportRestrictResultModel';
|
|
97
98
|
export type { default as ReportRestrictItem } from './api/reports/ReportRestrictItem';
|
|
98
99
|
export type { default as ReportRestrictModel } from './api/reports/ReportRestrictModel';
|
|
99
100
|
export type { default as ReportVersionModel } from './api/reports/ReportVersionModel';
|
|
@@ -123,6 +124,7 @@ export type { default as ApprovalDefinitionLevelModel } from './api/approval/App
|
|
|
123
124
|
export type { default as ApprovalDefinitionLevelApproverModel } from './api/approval/ApprovalDefinitionLevelApproverModel';
|
|
124
125
|
export type { default as ApprovalDelegationModel } from './api/approval/ApprovalDelegationModel';
|
|
125
126
|
export type { default as EmployeeSmallModel } from './api/employee/EmployeeSmallModel';
|
|
127
|
+
export type { default as IEmployee } from './api/employee/IEmployee';
|
|
126
128
|
export type { default as LocalStorageSettingsModel } from './api/localStorageSettings/LocalStorageSettingsModel';
|
|
127
129
|
export type { default as ReloadDataWithReturnType } from './types/useGetApiData/ReloadDataWithReturnType';
|
|
128
130
|
export type { default as ReloadDataType } from './types/useGetApiData/ReloadDataType';
|