dfh-ui-library 1.13.123 → 1.13.125
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/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Gird/Grid.d.ts +1 -1
- package/dist/cjs/types/components/Media/Icons/Icons.d.ts +1 -0
- package/dist/cjs/types/components/NavBar/NavBar.d.ts +3 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Gird/Grid.d.ts +1 -1
- package/dist/esm/types/components/Media/Icons/Icons.d.ts +1 -0
- package/dist/esm/types/components/NavBar/NavBar.d.ts +3 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { TableProps } from '../../shared/models/components/common.model';
|
3
3
|
export declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
|
4
|
-
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, }: TableProps, key?: any): React.JSX.Element;
|
4
|
+
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, }: TableProps, key?: any): React.JSX.Element;
|
@@ -80,3 +80,4 @@ export declare const Reporting: ({ classes, onClick, ...props }: IconProps) => R
|
|
80
80
|
export declare const ReportingSelected: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
81
81
|
export declare const DropdownArrowIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
82
82
|
export declare const WarningCircleIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
83
|
+
export declare const LightbulbIcon: ({ classes, onClick, ...props }: IconProps) => React.JSX.Element;
|
@@ -1,4 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { TabNavigationProps } from "../../shared/models/components/common.model";
|
3
|
-
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems }: TabNavigationProps
|
3
|
+
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, onHelpClick }: TabNavigationProps & {
|
4
|
+
onHelpClick?: () => void;
|
5
|
+
}) => React.JSX.Element;
|
4
6
|
export default NavBar;
|
package/dist/index.d.ts
CHANGED
@@ -885,6 +885,7 @@ interface TableProps {
|
|
885
885
|
rowClick?: (row: any) => void;
|
886
886
|
setRowSelection?: any;
|
887
887
|
isLoading?: boolean;
|
888
|
+
paginationLabel?: string;
|
888
889
|
}
|
889
890
|
|
890
891
|
type VariantTypes = 'large' | 'small' | 'extraSmall' | 'largeOutlined' | 'smallOutlined' | 'extraSmallOutlined' | 'default' | 'defaultOutlined' | 'primaryBlue' | 'primaryWhite' | 'primaryWhiteSelected' | 'primaryWhiteNoBoader' | 'primaryWhiteIcon' | 'primaryRed' | 'primaryFilterSelected' | 'primaryBlueFilter' | 'smallWhite' | 'smallWhiteSelected' | 'smallBlue' | 'primaryNoBoader' | 'primaryBlue10' | 'noBoaderbgTransparent' | undefined;
|
@@ -1561,7 +1562,9 @@ declare const Logo: React__default.FC<LogoProps>;
|
|
1561
1562
|
|
1562
1563
|
declare const LoadingSpinner: React__default.FC<AdditionalClassesProp$1>;
|
1563
1564
|
|
1564
|
-
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems }: TabNavigationProps
|
1565
|
+
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, onHelpClick }: TabNavigationProps & {
|
1566
|
+
onHelpClick?: () => void;
|
1567
|
+
}) => React__default.JSX.Element;
|
1565
1568
|
|
1566
1569
|
declare const Message: ({ type, text, onClose }: MessageProps) => React__default.JSX.Element | undefined;
|
1567
1570
|
|
@@ -1646,7 +1649,7 @@ declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
1646
1649
|
declare const Icon: React__default.FC<IIconProps>;
|
1647
1650
|
|
1648
1651
|
declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
|
1649
|
-
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, }: TableProps, key?: any): React__default.JSX.Element;
|
1652
|
+
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, }: TableProps, key?: any): React__default.JSX.Element;
|
1650
1653
|
|
1651
1654
|
declare function IndeterminateCheckbox({ indeterminate, rowId, className, ...rest }: {
|
1652
1655
|
indeterminate?: boolean;
|