@up42/up-components 7.1.0 → 7.2.0

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.
@@ -0,0 +1,13 @@
1
+ import React, { PropsWithChildren } from 'react';
2
+ import { type ButtonProps } from '../Button/Button';
3
+ export type RoleBannerProps = PropsWithChildren<{
4
+ title: string;
5
+ }>;
6
+ /**
7
+ * Documentation: https://up-components.up42.com/?path=/docs/patterns-rolebanner--docs
8
+ */
9
+ export declare function RoleBanner({ title, children }: RoleBannerProps): React.JSX.Element;
10
+ export type LearnMoreButtonProps = ButtonProps;
11
+ export declare function LearnMoreButton(props: LearnMoreButtonProps): React.JSX.Element;
12
+ export type FindUsersButtonProps = ButtonProps;
13
+ export declare function FindUsersButton(props: FindUsersButtonProps): React.JSX.Element;
@@ -61,6 +61,7 @@ export { Table, TableBody, TableCell, TableHead, TableContainer, TableRow, Table
61
61
  export { DataGrid, GridRow, GridCell, GridEditInputCell, GridCellModes, GridFooter, GridLoadingOverlay, GridNoRowsOverlay, GridPagination, GridRowCount, GridSelectedRowCount, gridColumnDefinitionsSelector, gridColumnVisibilityModelSelector, gridDetailPanelExpandedRowIdsSelector, gridDetailPanelExpandedRowsContentCacheSelector, gridRowsLookupSelector, GRID_DETAIL_PANEL_TOGGLE_COL_DEF, GRID_DETAIL_PANEL_TOGGLE_FIELD, useGridApiContext, useGridApiRef, useGridSelector, } from './components/DataGrid/DataGrid';
62
62
  export type { GridColDef, GridRenderEditCellParams, GridCellModesModel, GridCellParams, GridRenderCellParams, GridRowId, GridRowParams, GridRowSelectionModel, GridRowsProp, GridSortModel, GridTreeNodeWithRender, GridColumnHeaderParams, GridEditCellProps, GridInitialState, GridPreProcessEditCellProps, } from './components/DataGrid/DataGrid';
63
63
  export { ToggleButton, type ToggleButtonProps } from './components/ToggleButton/ToggleButton';
64
+ export { FindUsersButton, LearnMoreButton, RoleBanner, type FindUsersButtonProps, type LearnMoreButtonProps, type RoleBannerProps, } from './components/RoleBanner/RoleBanner';
64
65
  export { capitalize } from './utils/helpers/capitalize';
65
66
  export { copyToClipboard } from './utils/helpers/copyToClipboard';
66
67
  export { formatNumber } from './utils/helpers/formatNumber';