@reltio/dashboard 1.4.1551 → 1.4.1553

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.
Files changed (58) hide show
  1. package/package.json +3 -3
  2. package/types/HOCs/withPagination.d.ts +2 -2
  3. package/types/components/DashboardConfigItem/DashboardConfigItem.d.ts +1 -1
  4. package/types/components/DashboardError/DashboardError.d.ts +1 -1
  5. package/types/components/DashboardError/styles.d.ts +1 -1
  6. package/types/components/DashboardLayout/DashboardLayout.d.ts +1 -1
  7. package/types/components/DashboardLayoutItem/DashboardLayoutItem.d.ts +1 -1
  8. package/types/components/DashboardLayoutPanel/DashboardLayoutPanel.d.ts +1 -1
  9. package/types/components/DashboardNoData/DashboardNoData.d.ts +1 -1
  10. package/types/components/DashboardNoData/styles.d.ts +1 -1
  11. package/types/components/DashboardPerspectiveHeader/DashboardPerspectiveHeader.d.ts +1 -1
  12. package/types/components/DashboardPopupMenu/DashboardPopupMenu.d.ts +1 -1
  13. package/types/components/EntityTable/EntityTable.d.ts +1 -1
  14. package/types/components/EntityTable/cell-renderers/EntityLabelRenderer.d.ts +1 -1
  15. package/types/components/EntityTable/cell-renderers/HeadCellRenderer.d.ts +1 -1
  16. package/types/components/EntityTable/styles.d.ts +1 -1
  17. package/types/components/LayoutItemContent/LayoutItemContent.d.ts +2 -2
  18. package/types/components/LayoutItemHeader/LayoutItemHeader.d.ts +1 -1
  19. package/types/components/LayoutItemView/LayoutItemView.d.ts +1 -1
  20. package/types/components/StatsChart/StatsChart.d.ts +1 -1
  21. package/types/components/StatsChart/customized/CustomAxisTick.d.ts +1 -1
  22. package/types/components/StatsChart/customized/CustomLegend.d.ts +1 -1
  23. package/types/components/StatsChart/customized/CustomTooltip.d.ts +1 -1
  24. package/types/components/StatsChart/getStatsChartSettings.d.ts +1 -1
  25. package/types/components/WorkflowTaskItem/WorkflowTaskItem.d.ts +1 -1
  26. package/types/components/WorkflowTaskItem/WorkflowTaskObject.d.ts +1 -1
  27. package/types/components/WorkflowTasksList/WorkflowTasksList.d.ts +1 -1
  28. package/types/hooks/useActivitiesRequest.d.ts +1 -1
  29. package/types/hooks/useEntityByTypeRequest.d.ts +1 -1
  30. package/types/hooks/useFacetRequest.d.ts +1 -1
  31. package/types/hooks/useFilteredEntitiesRequest.d.ts +1 -1
  32. package/types/hooks/useSavedSearchesRequest.d.ts +1 -1
  33. package/types/hooks/useWorkflowTasksRequest.d.ts +1 -1
  34. package/types/perspective/DashboardPerspectiveView.d.ts +1 -1
  35. package/types/perspective/index.d.ts +1 -1
  36. package/types/services/facets.d.ts +1 -1
  37. package/types/services/period.d.ts +1 -1
  38. package/types/types/ActivitiesViewFacetConfig.d.ts +1 -1
  39. package/types/types/CustomActionViewFacetConfig.d.ts +1 -1
  40. package/types/types/DashboardPerspectiveConfig.d.ts +2 -2
  41. package/types/types/DashboardSavedState.d.ts +1 -1
  42. package/types/types/EntityByTypeViewFacetConfig.d.ts +1 -1
  43. package/types/types/EntityData.d.ts +1 -1
  44. package/types/types/FilteredEntitiesFacetConfig.d.ts +1 -1
  45. package/types/types/FilteredSavedSearchesFacetConfig.d.ts +1 -1
  46. package/types/types/SavedSearchData.d.ts +1 -1
  47. package/types/types/SearchOptions.d.ts +2 -2
  48. package/types/types/StatsData.d.ts +3 -3
  49. package/types/types/WorkflowTasks.d.ts +4 -4
  50. package/types/views/ViewsFactory.d.ts +1 -1
  51. package/types/views/chartBased/DashboardFacet.d.ts +1 -1
  52. package/types/views/chartBased/EntitiesByTypeViewFacet.d.ts +1 -1
  53. package/types/views/chartBased/ProfileStatsFacet.d.ts +1 -1
  54. package/types/views/custom/CustomActionViewFacet.d.ts +1 -1
  55. package/types/views/custom/NotificationInboxFacet.d.ts +1 -1
  56. package/types/views/tableBased/ActivitiesViewFacet.d.ts +1 -1
  57. package/types/views/tableBased/FilteredEntitiesViewFacet.d.ts +1 -1
  58. package/types/views/tableBased/FilteredSavedSearchesFacet.d.ts +1 -1
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reltio/dashboard",
3
- "version": "1.4.1551",
3
+ "version": "1.4.1553",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "bundle.js",
6
6
  "types": "./types/index.d.ts",
7
7
  "dependencies": {
8
8
  "@date-io/moment": "^1.3.5",
9
- "@reltio/mdm-module": "^1.4.1551",
10
- "@reltio/mdm-sdk": "^1.4.1551",
9
+ "@reltio/mdm-module": "^1.4.1553",
10
+ "@reltio/mdm-sdk": "^1.4.1553",
11
11
  "classnames": "^2.2.5",
12
12
  "memoize-one": "^5.1.0",
13
13
  "object-hash": "^2.1.1",
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- declare type RefProps = {
2
+ type RefProps = {
3
3
  basicTableRef?: React.MutableRefObject<any> | null;
4
4
  };
5
- declare type Props = {
5
+ type Props = {
6
6
  count?: number;
7
7
  height?: number;
8
8
  onChangePage?: (page: number) => void;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { DashboardView } from '@reltio/mdm-sdk';
3
- declare type Props = {
3
+ type Props = {
4
4
  view: DashboardView;
5
5
  isAdded: boolean;
6
6
  isNew: boolean;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare type DashboardErrorProps = {
2
+ type DashboardErrorProps = {
3
3
  height?: number;
4
4
  onRefresh?: () => void;
5
5
  message?: string;
@@ -1,4 +1,4 @@
1
- declare type ErrorContainerProps = {
1
+ type ErrorContainerProps = {
2
2
  height?: number;
3
3
  };
4
4
  export declare const useStyles: (props: ErrorContainerProps) => import("@material-ui/core/styles/withStyles").ClassNameMap<"errorContainer" | "errorIcon" | "refreshButton" | "refreshIcon">;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { ReltioGridLayoutItem } from '@reltio/mdm-sdk';
3
3
  import { DashboardView } from '../../types';
4
- declare type DashboardLayoutProps = {
4
+ type DashboardLayoutProps = {
5
5
  views: DashboardView[];
6
6
  layout?: ReltioGridLayoutItem[];
7
7
  onLayoutChanged: (layout: ReltioGridLayoutItem[]) => void;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { ReactGridLayoutItem } from '@reltio/components';
3
3
  import { DashboardView } from '../../types';
4
- declare type Props = {
4
+ type Props = {
5
5
  className?: string;
6
6
  isFullscreen: boolean;
7
7
  style: React.CSSProperties;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { ReltioGridLayoutItem } from '@reltio/mdm-sdk';
3
3
  import { DashboardView } from '../../types';
4
- declare type Props = {
4
+ type Props = {
5
5
  views: DashboardView[];
6
6
  layout: ReltioGridLayoutItem[];
7
7
  onRemove: (id: string) => void;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare type DashboardNoDataProps = {
2
+ type DashboardNoDataProps = {
3
3
  height?: number;
4
4
  };
5
5
  declare const DashboardNoData: ({ height }: DashboardNoDataProps) => JSX.Element;
@@ -1,4 +1,4 @@
1
- declare type NoDataContainer = {
1
+ type NoDataContainer = {
2
2
  height?: number;
3
3
  };
4
4
  export declare const useStyles: (props: NoDataContainer) => import("@material-ui/core/styles/withStyles").ClassNameMap<"icon" | "noDataContainer">;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare type Props = {
2
+ type Props = {
3
3
  title: string;
4
4
  onToggleConfig: () => void;
5
5
  };
@@ -7,7 +7,7 @@ interface MenuItem {
7
7
  active: boolean;
8
8
  action: () => void;
9
9
  }
10
- declare type DashboardPopupMenuProps = {
10
+ type DashboardPopupMenuProps = {
11
11
  items: MenuItem[];
12
12
  };
13
13
  declare const DashboardPopupMenu: ({ items }: DashboardPopupMenuProps) => JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { EntityData } from '../../types/EntityData';
3
- declare type Props = {
3
+ type Props = {
4
4
  width: number;
5
5
  height: number;
6
6
  basicTableRef?: React.MutableRefObject<any> | null;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { EntityData } from '../../../types/EntityData';
3
- declare type Props = {
3
+ type Props = {
4
4
  value: string;
5
5
  rowValue: EntityData;
6
6
  };
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare type HeadCellRendererProps = {
2
+ type HeadCellRendererProps = {
3
3
  className?: string;
4
4
  headCellData: {
5
5
  label: string;
@@ -1,4 +1,4 @@
1
- declare type Dimensions = {
1
+ type Dimensions = {
2
2
  width: number | string;
3
3
  height: number | string;
4
4
  };
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
2
  import { RequestStates } from '@reltio/components';
3
- declare type ChildrenProps<T> = {
3
+ type ChildrenProps<T> = {
4
4
  data: T[];
5
5
  width: number;
6
6
  height: number;
7
7
  };
8
- declare type Props<T> = {
8
+ type Props<T> = {
9
9
  loadingState: RequestStates;
10
10
  children: (props: ChildrenProps<T>) => React.ReactNode;
11
11
  onRefresh: () => void;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- declare type Props = {
2
+ type Props = {
3
3
  title: string;
4
4
  onToggleFullscreen: (id: string) => void;
5
5
  isFullscreen: boolean;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- declare type Props = {
2
+ type Props = {
3
3
  id: string;
4
4
  children: React.ReactNode;
5
5
  };
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { PeriodStep } from '../../types/PeriodStep';
3
3
  import { StatsData } from '../../types/StatsData';
4
- declare type Props = {
4
+ type Props = {
5
5
  data: StatsData[];
6
6
  width: number;
7
7
  height: number;
@@ -1,6 +1,6 @@
1
1
  import { SVGProps } from 'react';
2
2
  import { PeriodStep } from '../../../types/PeriodStep';
3
- declare type AxisTickProps = SVGProps<SVGElement> & {
3
+ type AxisTickProps = SVGProps<SVGElement> & {
4
4
  step: PeriodStep;
5
5
  payload?: {
6
6
  value: string;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { LegendProps } from 'recharts';
3
- declare type Props = LegendProps & {
3
+ type Props = LegendProps & {
4
4
  selectedItems: string[];
5
5
  };
6
6
  declare const CustomLegend: ({ payload, selectedItems, onClick }: Props) => JSX.Element;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { TooltipProps } from 'recharts';
3
3
  import { PeriodStep } from '../../../types/PeriodStep';
4
- declare type Props = TooltipProps & {
4
+ type Props = TooltipProps & {
5
5
  step: PeriodStep;
6
6
  events: string[];
7
7
  };
@@ -1,5 +1,5 @@
1
1
  import { CartesianGridProps, LegendProps, LineProps, TooltipProps, XAxisProps, YAxisProps } from 'recharts';
2
- declare type StatsChartSettings = {
2
+ type StatsChartSettings = {
3
3
  xAxis: XAxisProps;
4
4
  yAxis: YAxisProps;
5
5
  cartesianGrid: CartesianGridProps;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { EnrichedWorkflowTaskData } from '../../types';
3
- declare type Props = {
3
+ type Props = {
4
4
  showAssignee: boolean;
5
5
  task: EnrichedWorkflowTaskData;
6
6
  };
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { EnrichedWorkflowTaskData, WorkflowTaskObjectData } from '../../types/WorkflowTasks';
3
3
  import { Metadata } from '@reltio/mdm-sdk';
4
- declare type Props = {
4
+ type Props = {
5
5
  object: WorkflowTaskObjectData;
6
6
  metadata: Metadata;
7
7
  processType: EnrichedWorkflowTaskData['processType'];
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { WorkflowTasksCategories, EnrichedWorkflowTaskData } from '../../types/WorkflowTasks';
3
- declare type Props = {
3
+ type Props = {
4
4
  width: number;
5
5
  height: number;
6
6
  tasksCategory: WorkflowTasksCategories;
@@ -1,5 +1,5 @@
1
1
  import { ActivitiesFilter, ActivityData, RequestStates } from '@reltio/components';
2
- declare type Props = {
2
+ type Props = {
3
3
  filter: ActivitiesFilter;
4
4
  max: number;
5
5
  offset: number;
@@ -1,5 +1,5 @@
1
1
  import { ChartData, RequestStates } from '@reltio/components';
2
- declare type Props = {
2
+ type Props = {
3
3
  hideEmpty?: boolean;
4
4
  orderType?: string;
5
5
  inheritChildren?: boolean;
@@ -1,6 +1,6 @@
1
1
  import { DashboardConfigFilter } from '@reltio/mdm-sdk';
2
2
  import { ChartData, RequestStates } from '@reltio/components';
3
- declare type Props = {
3
+ type Props = {
4
4
  filters: DashboardConfigFilter[];
5
5
  attributeUri: string;
6
6
  pageSize: number;
@@ -1,7 +1,7 @@
1
1
  import { RequestStates } from '@reltio/components';
2
2
  import { DashboardConfigFilter } from '@reltio/mdm-sdk';
3
3
  import { EntityData } from '../types/EntityData';
4
- declare type Props = {
4
+ type Props = {
5
5
  filters: DashboardConfigFilter[];
6
6
  offset: number;
7
7
  max: number;
@@ -1,7 +1,7 @@
1
1
  import { RequestStates } from '@reltio/components';
2
2
  import { SavedSearchesOptions } from '@reltio/mdm-sdk';
3
3
  import { SavedSearchData } from '../types/SavedSearchData';
4
- declare type Props = {
4
+ type Props = {
5
5
  options: SavedSearchesOptions;
6
6
  offset: number;
7
7
  max: number;
@@ -1,6 +1,6 @@
1
1
  import { RequestStates } from '@reltio/components';
2
2
  import { EnrichedWorkflowTaskData, WorkflowTasksCategories } from '../types/WorkflowTasks';
3
- declare type Options = {
3
+ type Options = {
4
4
  tasksCategory: WorkflowTasksCategories;
5
5
  max?: number;
6
6
  offset?: number;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { DashboardPerspectiveConfig } from '@reltio/mdm-sdk';
3
3
  import { DashboardSavedState } from '../types/DashboardSavedState';
4
- declare type DashboardPerspectiveView = {
4
+ type DashboardPerspectiveView = {
5
5
  config: DashboardPerspectiveConfig;
6
6
  saveState: (state: DashboardSavedState) => void;
7
7
  getSavedState: () => Promise<DashboardSavedState>;
@@ -3,7 +3,7 @@ import { Store } from 'redux';
3
3
  import { DashboardPerspectiveConfig } from '@reltio/mdm-sdk';
4
4
  import { DashboardPerspectiveLegacyConfig } from '../types/DashboardPerspectiveConfig';
5
5
  import { DashboardSavedState } from '../types/DashboardSavedState';
6
- declare type Props = {
6
+ type Props = {
7
7
  config: DashboardPerspectiveConfig | DashboardPerspectiveLegacyConfig;
8
8
  store: Store<unknown>;
9
9
  onResize?: (width: number, height: number) => void;
@@ -1,6 +1,6 @@
1
1
  import { AttributeType, DashboardConfigFilter, Metadata } from '@reltio/mdm-sdk';
2
2
  import { ChartData } from '@reltio/components';
3
- declare type FacetsRequest = {
3
+ type FacetsRequest = {
4
4
  attribute: string;
5
5
  filters: DashboardConfigFilter[];
6
6
  globalFilter?: string;
@@ -1,6 +1,6 @@
1
1
  import { DatePeriod } from '@reltio/mdm-sdk';
2
2
  declare const getStepForPeriod: any;
3
- declare type GetDateRangeByValue = (value: DatePeriod | [number, number]) => [number, number];
3
+ type GetDateRangeByValue = (value: DatePeriod | [number, number]) => [number, number];
4
4
  export declare const getDashboardDateRangeByValue: GetDateRangeByValue;
5
5
  declare const getValuesDateRange: any;
6
6
  export { getStepForPeriod, getValuesDateRange };
@@ -1,4 +1,4 @@
1
1
  import { DashboardView } from '@reltio/mdm-sdk';
2
- export declare type ActivitiesViewFacetConfig = DashboardView & {
2
+ export type ActivitiesViewFacetConfig = DashboardView & {
3
3
  exportTypes?: string[];
4
4
  };
@@ -1,4 +1,4 @@
1
1
  import { DashboardView } from '@reltio/mdm-sdk';
2
- export declare type CustomActionViewFacetConfig = DashboardView & {
2
+ export type CustomActionViewFacetConfig = DashboardView & {
3
3
  url: string;
4
4
  };
@@ -4,11 +4,11 @@ export declare enum ViewStatus {
4
4
  NEW = "new",
5
5
  PERSISTED = "persisted"
6
6
  }
7
- export declare type DashboardView = {
7
+ export type DashboardView = {
8
8
  config: DashboardViewConfig;
9
9
  status: ViewStatus;
10
10
  };
11
- export declare type DashboardPerspectiveLegacyConfig = {
11
+ export type DashboardPerspectiveLegacyConfig = {
12
12
  id: string;
13
13
  layout: Layout;
14
14
  version: string;
@@ -1,5 +1,5 @@
1
1
  import { ReltioGridLayoutItem } from '@reltio/mdm-sdk';
2
- export declare type DashboardSavedState = {
2
+ export type DashboardSavedState = {
3
3
  layout?: ReltioGridLayoutItem[];
4
4
  configHash?: string;
5
5
  viewsHashMap?: Record<string, string>;
@@ -1,5 +1,5 @@
1
1
  import { DashboardView } from '@reltio/mdm-sdk';
2
- export declare type EntityByTypeViewFacetConfig = DashboardView & {
2
+ export type EntityByTypeViewFacetConfig = DashboardView & {
3
3
  orderType?: string;
4
4
  hideEmpty: boolean;
5
5
  inheritChildren: boolean;
@@ -1,4 +1,4 @@
1
- export declare type EntityData = {
1
+ export type EntityData = {
2
2
  uri: string;
3
3
  label: string;
4
4
  };
@@ -1,5 +1,5 @@
1
1
  import { DashboardConfigFilter, DashboardView } from '@reltio/mdm-sdk';
2
- export declare type FilteredEntitiesFacetConfig = DashboardView & {
2
+ export type FilteredEntitiesFacetConfig = DashboardView & {
3
3
  filters?: DashboardConfigFilter[];
4
4
  max?: number;
5
5
  };
@@ -1,5 +1,5 @@
1
1
  import { DashboardView, SavedSearchesOptions } from '@reltio/mdm-sdk';
2
- export declare type FilteredSavedSearchesFacetConfig = DashboardView & {
2
+ export type FilteredSavedSearchesFacetConfig = DashboardView & {
3
3
  options?: SavedSearchesOptions;
4
4
  max?: number;
5
5
  };
@@ -1,4 +1,4 @@
1
- export declare type SavedSearchData = {
1
+ export type SavedSearchData = {
2
2
  count: number;
3
3
  uri: string;
4
4
  name: string;
@@ -1,8 +1,8 @@
1
- export declare type SearchOptions = {
1
+ export type SearchOptions = {
2
2
  searchByOv: boolean;
3
3
  ovOnly: boolean;
4
4
  };
5
- export declare type GlobalSearchRequestOptions = {
5
+ export type GlobalSearchRequestOptions = {
6
6
  searchOptions: string;
7
7
  activityFilter: string;
8
8
  globalFilter: string;
@@ -1,11 +1,11 @@
1
- export declare type StatsEventData = {
1
+ export type StatsEventData = {
2
2
  term: string;
3
3
  count: number;
4
4
  };
5
- export declare type TimestampedStatsEventData = StatsEventData & {
5
+ export type TimestampedStatsEventData = StatsEventData & {
6
6
  term: number;
7
7
  };
8
- export declare type StatsData = {
8
+ export type StatsData = {
9
9
  event: string;
10
10
  total: number;
11
11
  data: StatsEventData[];
@@ -3,12 +3,12 @@ export declare enum WorkflowTasksCategories {
3
3
  MY = "my",
4
4
  TEAM = "team"
5
5
  }
6
- declare type WorkflowTaskEntityData = {
6
+ type WorkflowTaskEntityData = {
7
7
  uri: string;
8
8
  label: string;
9
9
  type: string;
10
10
  };
11
- declare type WorkflowTaskRelationData = {
11
+ type WorkflowTaskRelationData = {
12
12
  uri: string;
13
13
  type: string;
14
14
  startObjectUri: string;
@@ -16,8 +16,8 @@ declare type WorkflowTaskRelationData = {
16
16
  startObjectLabel: string;
17
17
  endObjectLabel: string;
18
18
  };
19
- export declare type WorkflowTaskObjectData = WorkflowTaskEntityData | WorkflowTaskRelationData;
20
- export declare type EnrichedWorkflowTaskData = WorkflowTaskData & {
19
+ export type WorkflowTaskObjectData = WorkflowTaskEntityData | WorkflowTaskRelationData;
20
+ export type EnrichedWorkflowTaskData = WorkflowTaskData & {
21
21
  objects?: WorkflowTaskObjectData[];
22
22
  };
23
23
  export {};
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { DashboardFacetConfig, DashboardView, DashboardViewTypes } from '@reltio/mdm-sdk';
3
3
  import { ActivitiesViewFacetConfig, CustomActionViewFacetConfig, EntityByTypeViewFacetConfig, FilteredSavedSearchesFacetConfig, FilteredEntitiesFacetConfig } from '../types';
4
- declare type Props = {
4
+ type Props = {
5
5
  config: ActivitiesViewFacetConfig | CustomActionViewFacetConfig | DashboardFacetConfig | EntityByTypeViewFacetConfig | FilteredEntitiesFacetConfig | FilteredSavedSearchesFacetConfig | DashboardView;
6
6
  type: string;
7
7
  onToggleFullscreen: (id: string) => void;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { DashboardFacetConfig } from '@reltio/mdm-sdk';
3
- declare type DashboardFacetProps = {
3
+ type DashboardFacetProps = {
4
4
  config: DashboardFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { EntityByTypeViewFacetConfig } from '../../types/EntityByTypeViewFacetConfig';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: EntityByTypeViewFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { DashboardView } from '@reltio/mdm-sdk';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: DashboardView;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { CustomActionViewFacetConfig } from '../../types/CustomActionViewFacetConfig';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: CustomActionViewFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { WorkflowInboxFacetConfig } from '@reltio/mdm-sdk';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: WorkflowInboxFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { ActivitiesViewFacetConfig } from '../../types/ActivitiesViewFacetConfig';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: ActivitiesViewFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { FilteredEntitiesFacetConfig } from '../../types/FilteredEntitiesFacetConfig';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: FilteredEntitiesFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { FilteredSavedSearchesFacetConfig } from '../../types/FilteredSavedSearchesFacetConfig';
3
- declare type Props = {
3
+ type Props = {
4
4
  config: FilteredSavedSearchesFacetConfig;
5
5
  onToggleFullscreen: (id: string) => void;
6
6
  isUpdated?: boolean;