@reltio/dashboard 1.4.1374 → 1.4.1376

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 (89) hide show
  1. package/bundle.js +1 -1
  2. package/package.json +4 -3
  3. package/types/HOCs/withPagination.d.ts +18 -0
  4. package/types/components/DashboardConfigItem/DashboardConfigItem.d.ts +11 -0
  5. package/types/components/DashboardConfigItem/styles.d.ts +1 -0
  6. package/types/components/DashboardError/DashboardError.d.ts +8 -0
  7. package/types/components/DashboardError/styles.d.ts +5 -0
  8. package/types/components/DashboardLayout/DashboardLayout.d.ts +14 -0
  9. package/types/components/DashboardLayout/styles.d.ts +1 -0
  10. package/types/components/DashboardLayoutItem/DashboardLayoutItem.d.ts +15 -0
  11. package/types/components/DashboardLayoutPanel/DashboardLayoutPanel.d.ts +12 -0
  12. package/types/components/DashboardLayoutPanel/styles.d.ts +1 -0
  13. package/types/components/DashboardLinearLoader/DashboardLinearLoader.d.ts +3 -0
  14. package/types/components/DashboardLinearLoader/styles.d.ts +1 -0
  15. package/types/components/DashboardNoData/DashboardNoData.d.ts +6 -0
  16. package/types/components/DashboardNoData/styles.d.ts +5 -0
  17. package/types/components/DashboardPerspectiveHeader/DashboardPerspectiveHeader.d.ts +7 -0
  18. package/types/components/DashboardPerspectiveHeader/styles.d.ts +2 -0
  19. package/types/components/DashboardPopupMenu/DashboardPopupMenu.d.ts +14 -0
  20. package/types/components/DashboardPopupMenu/styles.d.ts +1 -0
  21. package/types/components/EntityTable/EntityTable.d.ts +10 -0
  22. package/types/components/EntityTable/cell-renderers/EntityLabelRenderer.d.ts +8 -0
  23. package/types/components/EntityTable/cell-renderers/HeadCellRenderer.d.ts +9 -0
  24. package/types/components/EntityTable/cell-renderers/styles.d.ts +1 -0
  25. package/types/components/EntityTable/styles.d.ts +6 -0
  26. package/types/components/LayoutItemContent/LayoutItemContent.d.ts +17 -0
  27. package/types/components/LayoutItemContent/styles.d.ts +1 -0
  28. package/types/components/LayoutItemHeader/LayoutItemHeader.d.ts +12 -0
  29. package/types/components/LayoutItemHeader/styles.d.ts +1 -0
  30. package/types/components/LayoutItemView/LayoutItemView.d.ts +7 -0
  31. package/types/components/LayoutItemView/styles.d.ts +1 -0
  32. package/types/components/StatsChart/StatsChart.d.ts +11 -0
  33. package/types/components/StatsChart/customized/CustomAxisTick.d.ts +10 -0
  34. package/types/components/StatsChart/customized/CustomLegend.d.ts +7 -0
  35. package/types/components/StatsChart/customized/CustomTooltip.d.ts +9 -0
  36. package/types/components/StatsChart/customized/styles.d.ts +1 -0
  37. package/types/components/StatsChart/getStatsChartSettings.d.ts +11 -0
  38. package/types/components/WorkflowTaskItem/WorkflowTaskItem.d.ts +8 -0
  39. package/types/components/WorkflowTaskItem/WorkflowTaskObject.d.ts +10 -0
  40. package/types/components/WorkflowTaskItem/styles.d.ts +1 -0
  41. package/types/components/WorkflowTasksList/WorkflowTasksList.d.ts +10 -0
  42. package/types/components/index.d.ts +7 -0
  43. package/types/contexts/DashboardViewIdContext/index.d.ts +2 -0
  44. package/types/hooks/useActivitiesRequest.d.ts +13 -0
  45. package/types/hooks/useEntityByTypeRequest.d.ts +12 -0
  46. package/types/hooks/useFacetRequest.d.ts +17 -0
  47. package/types/hooks/useFilteredEntitiesRequest.d.ts +15 -0
  48. package/types/hooks/useSavedSearchesRequest.d.ts +15 -0
  49. package/types/hooks/useStatsRequest.d.ts +8 -0
  50. package/types/hooks/useWorkflowTasksRequest.d.ts +14 -0
  51. package/types/index.d.ts +5 -0
  52. package/types/perspective/DashboardPerspectiveView.d.ts +11 -0
  53. package/types/perspective/helpers.d.ts +14 -0
  54. package/types/perspective/index.d.ts +14 -0
  55. package/types/perspective/styles.d.ts +1 -0
  56. package/types/services/entityTypes.d.ts +4 -0
  57. package/types/services/facets.d.ts +21 -0
  58. package/types/services/filters.d.ts +13 -0
  59. package/types/services/period.d.ts +6 -0
  60. package/types/services/savedSearches.d.ts +4 -0
  61. package/types/services/stats.d.ts +15 -0
  62. package/types/services/workflowTasks.d.ts +3 -0
  63. package/types/types/ActivitiesViewFacetConfig.d.ts +4 -0
  64. package/types/types/CustomActionViewFacetConfig.d.ts +4 -0
  65. package/types/types/DashboardPerspectiveConfig.d.ts +15 -0
  66. package/types/types/DashboardSavedState.d.ts +6 -0
  67. package/types/types/EntityByTypeViewFacetConfig.d.ts +6 -0
  68. package/types/types/EntityData.d.ts +4 -0
  69. package/types/types/FilteredEntitiesFacetConfig.d.ts +5 -0
  70. package/types/types/FilteredSavedSearchesFacetConfig.d.ts +5 -0
  71. package/types/types/PeriodStep.d.ts +4 -0
  72. package/types/types/SavedSearchData.d.ts +6 -0
  73. package/types/types/SearchOptions.d.ts +9 -0
  74. package/types/types/StatsData.d.ts +9 -0
  75. package/types/types/WorkflowTasks.d.ts +23 -0
  76. package/types/types/index.d.ts +14 -0
  77. package/types/views/ViewsFactory.d.ts +19 -0
  78. package/types/views/chartBased/DashboardFacet.d.ts +11 -0
  79. package/types/views/chartBased/EntitiesByTypeViewFacet.d.ts +11 -0
  80. package/types/views/chartBased/ProfileStatsFacet.d.ts +11 -0
  81. package/types/views/chartBased/styles.d.ts +1 -0
  82. package/types/views/custom/CustomActionViewFacet.d.ts +11 -0
  83. package/types/views/custom/NotificationInboxFacet.d.ts +11 -0
  84. package/types/views/custom/styles.d.ts +1 -0
  85. package/types/views/tableBased/ActivitiesViewFacet.d.ts +11 -0
  86. package/types/views/tableBased/FilteredEntitiesViewFacet.d.ts +11 -0
  87. package/types/views/tableBased/FilteredSavedSearchesFacet.d.ts +11 -0
  88. package/types/views/tableBased/helpers.d.ts +2 -0
  89. package/types/views/tableBased/styles.d.ts +1 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.