@reltio/dashboard 1.4.2229 → 1.4.2231

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reltio/dashboard",
3
- "version": "1.4.2229",
3
+ "version": "1.4.2231",
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.2191",
9
- "@reltio/mdm-module": "^1.4.2034",
10
- "@reltio/mdm-sdk": "^1.4.1996",
8
+ "@reltio/components": "^1.4.2193",
9
+ "@reltio/mdm-module": "^1.4.2036",
10
+ "@reltio/mdm-sdk": "^1.4.1998",
11
11
  "object-hash": "^2.1.1"
12
12
  },
13
13
  "peerDependencies": {
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { HeadColorVariant, TableVariant } from '../types/basicTable';
2
3
  export type DefaultHeadCellRendererWithTooltipProps = {
3
4
  headIndex?: number;
4
5
  className?: string;
@@ -10,7 +11,9 @@ export type DefaultHeadCellRendererWithTooltipProps = {
10
11
  headCell?: string;
11
12
  headLabel?: string;
12
13
  };
13
- dataReltioId?: string;
14
+ headColorVariant?: HeadColorVariant;
15
+ variant?: TableVariant;
16
+ dataReltioIdPrefix?: string;
14
17
  openConfigColumnPopup?: (index: number, event: React.MouseEvent<HTMLElement>) => void;
15
18
  };
16
19
  declare const _default: React.ComponentType<{
@@ -1,2 +1,2 @@
1
1
  import React from 'react';
2
- export declare const BasicTableContext: React.Context<any>;
2
+ export declare const BasicTableContext: React.Context<Record<string, unknown>>;
@@ -13,6 +13,7 @@ export type MdmModuleValuesContextProps = Partial<{
13
13
  imageServicePath: string;
14
14
  reltioPath: string;
15
15
  apiPath: string;
16
+ imagePath: string;
16
17
  collaborationPath: string;
17
18
  imageAttributesFieldsOrder: ImageAttributeFieldsOrder;
18
19
  showEntityId: boolean;
@@ -218,6 +219,7 @@ export declare const MdmModuleValuesContext: import("@fluentui/react-context-sel
218
219
  imageServicePath: string;
219
220
  reltioPath: string;
220
221
  apiPath: string;
222
+ imagePath: string;
221
223
  collaborationPath: string;
222
224
  imageAttributesFieldsOrder: ImageAttributeFieldsOrder;
223
225
  showEntityId: boolean;
@@ -12,6 +12,7 @@ export declare const useMdmWorkflowPath: () => string;
12
12
  export declare const useMdmImageServicePath: () => string;
13
13
  export declare const useMdmReltioPath: () => string;
14
14
  export declare const useMdmApiPath: () => string;
15
+ export declare const useMdmImagePath: () => string;
15
16
  export declare const useMdmCollaborationPath: () => string;
16
17
  export declare const useMdmImageAttributesFieldsOrder: () => import("@reltio/mdm-sdk").ImageAttributeFieldsOrder;
17
18
  export declare const useMdmShowEntityId: () => 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 } 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, useMdmSearchNavigationData, useMdmSearchProviderData, useMdmIsCollaborationEnabled, useMdmIsWorkflowEnabled, useMdmProfileErrors, useMdmRelationsDrafts, useMdmModifiedEntityDefaultProfilePic, useMdmModifiedEntity, useMdmInitialConnectionTempEntity, useMdmInitialConnection, useMdmDependentLookupEditorState, useMdmActiveErrorsForAttributesPager, useMdmDependentLookupsStructureNode, useMdmAllRelationsToAddAndEdit, useMdmDependentLookupEditorContext, useMdmGlobalSearchRequestOptions, useMdmAuthoringItemsByEntityType, useMdmAction, useMdmListener, useMdmIsSourcesScreenEnabled, useMdmHiddenAttributes, useMdmControlAttributes, useMdmShowMasking, useMdmReviewDCREnabled, useMdmImagePath } from './hooks';
3
3
  export type { MdmModuleActionsContextProps, MdmModuleValuesContextProps, MdmModuleListenersContextProps } from './context';
@@ -89,4 +89,16 @@ export type OnFilter = (event: {
89
89
  export type DraggableProps = DraggableAttributes & {
90
90
  ref: (element: HTMLElement | null) => void;
91
91
  };
92
+ export type CellValue = {
93
+ uri: string;
94
+ value: unknown;
95
+ };
96
+ export declare enum TableVariant {
97
+ Narrow = "narrow",
98
+ Wide = "wide"
99
+ }
100
+ export declare enum HeadColorVariant {
101
+ Grey = "grey",
102
+ White = "white"
103
+ }
92
104
  export {};