@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.
- package/bundle.js +1 -1
- package/package.json +4 -3
- package/types/HOCs/withPagination.d.ts +18 -0
- package/types/components/DashboardConfigItem/DashboardConfigItem.d.ts +11 -0
- package/types/components/DashboardConfigItem/styles.d.ts +1 -0
- package/types/components/DashboardError/DashboardError.d.ts +8 -0
- package/types/components/DashboardError/styles.d.ts +5 -0
- package/types/components/DashboardLayout/DashboardLayout.d.ts +14 -0
- package/types/components/DashboardLayout/styles.d.ts +1 -0
- package/types/components/DashboardLayoutItem/DashboardLayoutItem.d.ts +15 -0
- package/types/components/DashboardLayoutPanel/DashboardLayoutPanel.d.ts +12 -0
- package/types/components/DashboardLayoutPanel/styles.d.ts +1 -0
- package/types/components/DashboardLinearLoader/DashboardLinearLoader.d.ts +3 -0
- package/types/components/DashboardLinearLoader/styles.d.ts +1 -0
- package/types/components/DashboardNoData/DashboardNoData.d.ts +6 -0
- package/types/components/DashboardNoData/styles.d.ts +5 -0
- package/types/components/DashboardPerspectiveHeader/DashboardPerspectiveHeader.d.ts +7 -0
- package/types/components/DashboardPerspectiveHeader/styles.d.ts +2 -0
- package/types/components/DashboardPopupMenu/DashboardPopupMenu.d.ts +14 -0
- package/types/components/DashboardPopupMenu/styles.d.ts +1 -0
- package/types/components/EntityTable/EntityTable.d.ts +10 -0
- package/types/components/EntityTable/cell-renderers/EntityLabelRenderer.d.ts +8 -0
- package/types/components/EntityTable/cell-renderers/HeadCellRenderer.d.ts +9 -0
- package/types/components/EntityTable/cell-renderers/styles.d.ts +1 -0
- package/types/components/EntityTable/styles.d.ts +6 -0
- package/types/components/LayoutItemContent/LayoutItemContent.d.ts +17 -0
- package/types/components/LayoutItemContent/styles.d.ts +1 -0
- package/types/components/LayoutItemHeader/LayoutItemHeader.d.ts +12 -0
- package/types/components/LayoutItemHeader/styles.d.ts +1 -0
- package/types/components/LayoutItemView/LayoutItemView.d.ts +7 -0
- package/types/components/LayoutItemView/styles.d.ts +1 -0
- package/types/components/StatsChart/StatsChart.d.ts +11 -0
- package/types/components/StatsChart/customized/CustomAxisTick.d.ts +10 -0
- package/types/components/StatsChart/customized/CustomLegend.d.ts +7 -0
- package/types/components/StatsChart/customized/CustomTooltip.d.ts +9 -0
- package/types/components/StatsChart/customized/styles.d.ts +1 -0
- package/types/components/StatsChart/getStatsChartSettings.d.ts +11 -0
- package/types/components/WorkflowTaskItem/WorkflowTaskItem.d.ts +8 -0
- package/types/components/WorkflowTaskItem/WorkflowTaskObject.d.ts +10 -0
- package/types/components/WorkflowTaskItem/styles.d.ts +1 -0
- package/types/components/WorkflowTasksList/WorkflowTasksList.d.ts +10 -0
- package/types/components/index.d.ts +7 -0
- package/types/contexts/DashboardViewIdContext/index.d.ts +2 -0
- package/types/hooks/useActivitiesRequest.d.ts +13 -0
- package/types/hooks/useEntityByTypeRequest.d.ts +12 -0
- package/types/hooks/useFacetRequest.d.ts +17 -0
- package/types/hooks/useFilteredEntitiesRequest.d.ts +15 -0
- package/types/hooks/useSavedSearchesRequest.d.ts +15 -0
- package/types/hooks/useStatsRequest.d.ts +8 -0
- package/types/hooks/useWorkflowTasksRequest.d.ts +14 -0
- package/types/index.d.ts +5 -0
- package/types/perspective/DashboardPerspectiveView.d.ts +11 -0
- package/types/perspective/helpers.d.ts +14 -0
- package/types/perspective/index.d.ts +14 -0
- package/types/perspective/styles.d.ts +1 -0
- package/types/services/entityTypes.d.ts +4 -0
- package/types/services/facets.d.ts +21 -0
- package/types/services/filters.d.ts +13 -0
- package/types/services/period.d.ts +6 -0
- package/types/services/savedSearches.d.ts +4 -0
- package/types/services/stats.d.ts +15 -0
- package/types/services/workflowTasks.d.ts +3 -0
- package/types/types/ActivitiesViewFacetConfig.d.ts +4 -0
- package/types/types/CustomActionViewFacetConfig.d.ts +4 -0
- package/types/types/DashboardPerspectiveConfig.d.ts +15 -0
- package/types/types/DashboardSavedState.d.ts +6 -0
- package/types/types/EntityByTypeViewFacetConfig.d.ts +6 -0
- package/types/types/EntityData.d.ts +4 -0
- package/types/types/FilteredEntitiesFacetConfig.d.ts +5 -0
- package/types/types/FilteredSavedSearchesFacetConfig.d.ts +5 -0
- package/types/types/PeriodStep.d.ts +4 -0
- package/types/types/SavedSearchData.d.ts +6 -0
- package/types/types/SearchOptions.d.ts +9 -0
- package/types/types/StatsData.d.ts +9 -0
- package/types/types/WorkflowTasks.d.ts +23 -0
- package/types/types/index.d.ts +14 -0
- package/types/views/ViewsFactory.d.ts +19 -0
- package/types/views/chartBased/DashboardFacet.d.ts +11 -0
- package/types/views/chartBased/EntitiesByTypeViewFacet.d.ts +11 -0
- package/types/views/chartBased/ProfileStatsFacet.d.ts +11 -0
- package/types/views/chartBased/styles.d.ts +1 -0
- package/types/views/custom/CustomActionViewFacet.d.ts +11 -0
- package/types/views/custom/NotificationInboxFacet.d.ts +11 -0
- package/types/views/custom/styles.d.ts +1 -0
- package/types/views/tableBased/ActivitiesViewFacet.d.ts +11 -0
- package/types/views/tableBased/FilteredEntitiesViewFacet.d.ts +11 -0
- package/types/views/tableBased/FilteredSavedSearchesFacet.d.ts +11 -0
- package/types/views/tableBased/helpers.d.ts +2 -0
- 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.