@reltio/dashboard 1.4.2278 → 1.4.2280
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/bundle.js +1 -1
- package/package.json +4 -4
- package/types/components/src/EntityUriLink/EntityUriLink.d.ts +1 -0
- package/types/components/src/ProfileCard/ProfileCard.d.ts +2 -1
- package/types/components/src/ProfileCard/components/ProfileCardContent/ProfileCardContent.d.ts +2 -1
- package/types/components/src/contexts/MdmModuleContext/context.d.ts +2 -0
- package/types/components/src/contexts/MdmModuleContext/hooks.d.ts +1 -0
- package/types/components/src/contexts/MdmModuleContext/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2280",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "bundle.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@reltio/components": "^1.4.
|
|
9
|
-
"@reltio/mdm-module": "^1.4.
|
|
10
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
8
|
+
"@reltio/components": "^1.4.2239",
|
|
9
|
+
"@reltio/mdm-module": "^1.4.2069",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.2028",
|
|
11
11
|
"object-hash": "^2.1.1"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -8,6 +8,7 @@ type Props = {
|
|
|
8
8
|
container?: string;
|
|
9
9
|
};
|
|
10
10
|
variant?: 'loading' | 'normal';
|
|
11
|
+
disableEntityLink?: boolean;
|
|
11
12
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
12
|
-
declare const _default: React.MemoExoticComponent<({ entity, classes, variant, ...otherProps }: Props) => React.JSX.Element>;
|
|
13
|
+
declare const _default: React.MemoExoticComponent<({ entity, classes, variant, disableEntityLink, ...otherProps }: Props) => React.JSX.Element>;
|
|
13
14
|
export default _default;
|
package/types/components/src/ProfileCard/components/ProfileCardContent/ProfileCardContent.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ type Props = {
|
|
|
6
6
|
label?: string;
|
|
7
7
|
secondaryLabel?: string;
|
|
8
8
|
};
|
|
9
|
+
disableEntityLink?: boolean;
|
|
9
10
|
};
|
|
10
|
-
export declare const ProfileCardContent: ({ entity, classes }: Props) => React.JSX.Element;
|
|
11
|
+
export declare const ProfileCardContent: ({ entity, classes, disableEntityLink }: Props) => React.JSX.Element;
|
|
11
12
|
export {};
|
|
@@ -47,6 +47,7 @@ export type MdmModuleValuesContextProps = Partial<{
|
|
|
47
47
|
tenant: DataTenant;
|
|
48
48
|
environment: string;
|
|
49
49
|
dataTenants: DataTenant[];
|
|
50
|
+
dataTenantsWithIdBuilder: DataTenant[];
|
|
50
51
|
searchOptions: SearchOptions;
|
|
51
52
|
activityFilter: ActivityFilter;
|
|
52
53
|
globalFilter: GlobalFilter;
|
|
@@ -263,6 +264,7 @@ export declare const MdmModuleValuesContext: import("@fluentui/react-context-sel
|
|
|
263
264
|
tenant: DataTenant;
|
|
264
265
|
environment: string;
|
|
265
266
|
dataTenants: DataTenant[];
|
|
267
|
+
dataTenantsWithIdBuilder: DataTenant[];
|
|
266
268
|
searchOptions: SearchOptions;
|
|
267
269
|
activityFilter: ActivityFilter;
|
|
268
270
|
globalFilter: GlobalFilter;
|
|
@@ -47,6 +47,7 @@ export declare const useMdmTenant: () => string;
|
|
|
47
47
|
export declare const useMdmTenantName: () => string;
|
|
48
48
|
export declare const useMdmEnvironment: () => string;
|
|
49
49
|
export declare const useMdmDataTenants: () => import("@reltio/mdm-sdk").DataTenant[];
|
|
50
|
+
export declare const useMdmDataTenantsWithIdBuilder: () => import("@reltio/mdm-sdk").DataTenant[];
|
|
50
51
|
export declare const useMdmSearchNavigationData: () => import("@reltio/mdm-sdk").SearchNavigationData;
|
|
51
52
|
export declare const useMdmSearchProviderData: () => import("@reltio/mdm-sdk").SearchProviderData;
|
|
52
53
|
export declare const useMdmIsCollaborationEnabled: () => boolean;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { MdmModuleProvider } from './provider';
|
|
2
|
-
export { useMdmAutoCloseInterval, useMdmUiError, useMdmWorkflowEnvironmentUrl, useMdmExportPath, useMdmAbsoluteImagePath, useMdmUiPath, useMdmDtssPath, useMdmServicesPath, useMdmWorkflowPath, useMdmImageServicePath, useMdmReltioPath, useMdmApiPath, useMdmCollaborationPath, useMdmImageAttributesFieldsOrder, useMdmShowEntityId, useMdmPivotingAttributes, useMdmDateMask, useMdmDateTimeMask, useMdmAttributesPresentation, useMdmMaxValuesInResponse, useMdmAttributesSortingStrategy, useMdmLookupAutocomplete, useMdmModifiedEntities, useMdmEntity, useMdmEntityUri, useMdmEntityWithDiff, useMdmEntityUriWithDataTenant, useMdmMode, useMdmIsViewMode, useMdmIsEditableMode, useMdmHistoryDiff, useMdmHistoryMode, useMdmHistorySlice, useMdmHistoryEvent, useMdmProfileLastLoadedTime, useMdmLookups, useMdmDependentLookups, useMdmMetadata, useMdmUser, useMdmUsername, useMdmUserRoles, useMdmTenantObject, useMdmTenant, useMdmTenantName, useMdmEnvironment, useMdmDataTenants, useMdmSearchNavigationData, useMdmSearchProviderData, useMdmIsCollaborationEnabled, useMdmIsWorkflowEnabled, useMdmProfileErrors, useMdmRelationsDrafts, useMdmModifiedEntityDefaultProfilePic, useMdmModifiedEntity, useMdmInitialConnectionTempEntity, useMdmInitialConnection, useMdmDependentLookupEditorState, useMdmActiveErrorsForAttributesPager, useMdmDependentLookupsStructureNode, useMdmAllRelationsToAddAndEdit, useMdmDependentLookupEditorContext, useMdmGlobalSearchRequestOptions, useMdmAuthoringItemsByEntityType, useMdmAction, useMdmListener, useMdmIsSourcesScreenEnabled, useMdmHiddenAttributes, useMdmControlAttributes, useMdmShowMasking, useMdmReviewDCREnabled, useMdmDcrReviewValidation, useMdmImagePath } from './hooks';
|
|
2
|
+
export { useMdmAutoCloseInterval, useMdmUiError, useMdmWorkflowEnvironmentUrl, useMdmExportPath, useMdmAbsoluteImagePath, useMdmUiPath, useMdmDtssPath, useMdmServicesPath, useMdmWorkflowPath, useMdmImageServicePath, useMdmReltioPath, useMdmApiPath, useMdmCollaborationPath, useMdmImageAttributesFieldsOrder, useMdmShowEntityId, useMdmPivotingAttributes, useMdmDateMask, useMdmDateTimeMask, useMdmAttributesPresentation, useMdmMaxValuesInResponse, useMdmAttributesSortingStrategy, useMdmLookupAutocomplete, useMdmModifiedEntities, useMdmEntity, useMdmEntityUri, useMdmEntityWithDiff, useMdmEntityUriWithDataTenant, useMdmMode, useMdmIsViewMode, useMdmIsEditableMode, useMdmHistoryDiff, useMdmHistoryMode, useMdmHistorySlice, useMdmHistoryEvent, useMdmProfileLastLoadedTime, useMdmLookups, useMdmDependentLookups, useMdmMetadata, useMdmUser, useMdmUsername, useMdmUserRoles, useMdmTenantObject, useMdmTenant, useMdmTenantName, useMdmEnvironment, useMdmDataTenants, useMdmDataTenantsWithIdBuilder, useMdmSearchNavigationData, useMdmSearchProviderData, useMdmIsCollaborationEnabled, useMdmIsWorkflowEnabled, useMdmProfileErrors, useMdmRelationsDrafts, useMdmModifiedEntityDefaultProfilePic, useMdmModifiedEntity, useMdmInitialConnectionTempEntity, useMdmInitialConnection, useMdmDependentLookupEditorState, useMdmActiveErrorsForAttributesPager, useMdmDependentLookupsStructureNode, useMdmAllRelationsToAddAndEdit, useMdmDependentLookupEditorContext, useMdmGlobalSearchRequestOptions, useMdmAuthoringItemsByEntityType, useMdmAction, useMdmListener, useMdmIsSourcesScreenEnabled, useMdmHiddenAttributes, useMdmControlAttributes, useMdmShowMasking, useMdmReviewDCREnabled, useMdmDcrReviewValidation, useMdmImagePath } from './hooks';
|
|
3
3
|
export type { MdmModuleActionsContextProps, MdmModuleValuesContextProps, MdmModuleListenersContextProps } from './context';
|