dfh-ui-library 1.14.5 → 1.14.7
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/ButtonGroupFormGen/ButtonGroupFormGen.d.ts +1 -1
- package/dist/cjs/types/components/FilterButtonGroup/FilterButtonGroup.d.ts +3 -1
- package/dist/cjs/types/components/FormElements/Select/SelectV2.d.ts +3 -0
- package/dist/cjs/types/components/Gird/Grid.d.ts +1 -1
- package/dist/cjs/types/components/Media/Icon/CustomIcon.d.ts +10 -0
- package/dist/cjs/types/components/Media/Icon/Icon.handler.d.ts +2 -0
- package/dist/cjs/types/components/Media/Icon/IconV2.d.ts +16 -0
- package/dist/cjs/types/components/Media/Icon/index.d.ts +1 -0
- package/dist/cjs/types/components/NavBar/NavBar.d.ts +1 -1
- package/dist/cjs/types/components/index.d.ts +2 -0
- package/dist/cjs/types/index.d.ts +1 -1
- package/dist/cjs/types/shared/configs/themeConfig.d.ts +4 -0
- package/dist/cjs/types/shared/models/components/base.model.d.ts +9 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +8 -1
- 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/ButtonGroupFormGen/ButtonGroupFormGen.d.ts +1 -1
- package/dist/esm/types/components/FilterButtonGroup/FilterButtonGroup.d.ts +3 -1
- package/dist/esm/types/components/FormElements/Select/SelectV2.d.ts +3 -0
- package/dist/esm/types/components/Gird/Grid.d.ts +1 -1
- package/dist/esm/types/components/Media/Icon/CustomIcon.d.ts +10 -0
- package/dist/esm/types/components/Media/Icon/Icon.handler.d.ts +2 -0
- package/dist/esm/types/components/Media/Icon/IconV2.d.ts +16 -0
- package/dist/esm/types/components/Media/Icon/index.d.ts +1 -0
- package/dist/esm/types/components/NavBar/NavBar.d.ts +1 -1
- package/dist/esm/types/components/index.d.ts +2 -0
- package/dist/esm/types/index.d.ts +1 -1
- package/dist/esm/types/shared/configs/themeConfig.d.ts +4 -0
- package/dist/esm/types/shared/models/components/base.model.d.ts +9 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +8 -1
- package/dist/index.d.ts +49 -5
- package/package.json +3 -1
@@ -1,3 +1,3 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { FormGenButtonGroupProps } from '../../shared/models/components/common.model';
|
3
|
-
export default function ButtonGroupFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, additionalClasses, selected, viewMode, previousData, tooltip, }: FormGenButtonGroupProps): React.JSX.Element;
|
3
|
+
export default function ButtonGroupFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, additionalClasses, optionClasses, selected, viewMode, previousData, tooltip, }: FormGenButtonGroupProps): React.JSX.Element;
|
@@ -1,4 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { ButtonGroupProps } from "../../shared/models/components/common.model";
|
3
|
-
declare const FilterButtonGroup: React.FC<ButtonGroupProps
|
3
|
+
declare const FilterButtonGroup: React.FC<ButtonGroupProps & {
|
4
|
+
heading?: string;
|
5
|
+
}>;
|
4
6
|
export default FilterButtonGroup;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { LABELTYPE } from "../../../shared/models/components/base.model";
|
3
|
+
import { ToolTipProps } from "../../../shared/models/components/common.model";
|
3
4
|
interface Option {
|
4
5
|
value: string;
|
5
6
|
displayName: string;
|
@@ -34,6 +35,8 @@ interface SelectV2Props {
|
|
34
35
|
onOpen?: () => Promise<void>;
|
35
36
|
isLoading?: boolean;
|
36
37
|
maxLength?: number;
|
38
|
+
enableToolTip?: boolean;
|
39
|
+
tooltipProps?: ToolTipProps;
|
37
40
|
}
|
38
41
|
declare const SelectV2: React.FC<SelectV2Props>;
|
39
42
|
export default SelectV2;
|
@@ -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, paginationLabel, }: TableProps, key?: any): React.JSX.Element;
|
4
|
+
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, emptyLabel, otherTableProps, noDataImage }: TableProps, key?: any): React.JSX.Element;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { LucideProps } from "lucide-react";
|
2
|
+
import React, { FC } from "react";
|
3
|
+
export declare const PlusIcon: FC<LucideProps>;
|
4
|
+
export declare const HomeIcon: FC<LucideProps>;
|
5
|
+
export declare const PresentationChart: FC<LucideProps>;
|
6
|
+
export declare const customIcons: {
|
7
|
+
customPlus: React.FC<LucideProps>;
|
8
|
+
homeIcon: React.FC<LucideProps>;
|
9
|
+
presentationIcon: React.FC<LucideProps>;
|
10
|
+
};
|
@@ -1,4 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
|
+
import { IconVariant } from "../../../shared/models/components/base.model";
|
2
3
|
export declare const handleIconColor: (_iconColor: string) => string;
|
4
|
+
export declare const applyVariantColor: (variant: IconVariant) => "text-blue-550" | "text-black-540" | "text-grey-540" | "text-success" | "text-warning" | "text-error" | "text-info" | "text-primary";
|
3
5
|
export declare const handleIconHoverColor: (_iconHoverColor: string | undefined) => string;
|
4
6
|
export declare const handleIconTYpes: (_iconType: string | undefined, iconClasses?: string, imageUrl?: string, _color?: string, isAddEditPatient?: boolean) => React.JSX.Element | undefined;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { type IconName } from 'lucide-react/dynamic';
|
3
|
+
import { customIcons } from './CustomIcon';
|
4
|
+
import { IconVariant } from '../../../shared/models/components/base.model';
|
5
|
+
type IconProps = {
|
6
|
+
size?: string;
|
7
|
+
icon: IconName | keyof typeof customIcons;
|
8
|
+
color?: string;
|
9
|
+
variant?: IconVariant;
|
10
|
+
strokeWidth?: number;
|
11
|
+
absoluteStrokeWidth?: boolean;
|
12
|
+
onClick?: () => void;
|
13
|
+
additionalClasses?: string;
|
14
|
+
};
|
15
|
+
declare const IconV2: React.FC<IconProps>;
|
16
|
+
export default IconV2;
|
@@ -1,6 +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, version, environmentList, selectedEnvironment, currentEnvironment, onHelpClick, handleEnvironmentChange }: TabNavigationProps & {
|
3
|
+
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, version, environmentList, selectedEnvironment, currentEnvironment, onHelpClick, helpOpen, handleEnvironmentChange }: TabNavigationProps & {
|
4
4
|
onHelpClick?: () => void;
|
5
5
|
}) => React.JSX.Element;
|
6
6
|
export default NavBar;
|
@@ -27,6 +27,7 @@ export { default as SearchDropdownWithButton } from './SearchDropdownWithButton'
|
|
27
27
|
export { default as ButtonGroup } from './ButtonGroup';
|
28
28
|
export { default as TagSelect } from './TagSelect';
|
29
29
|
export { default as Icon } from './Media/Icon';
|
30
|
+
export { default as IconV2 } from './Media/Icon/IconV2';
|
30
31
|
export { Table } from './Gird';
|
31
32
|
export { Tab, TabList, TabPanel } from './Tab';
|
32
33
|
export { default as PanelCard } from './PanelCard';
|
@@ -67,3 +68,4 @@ export { default as SsnInput } from './SsnInput';
|
|
67
68
|
export { default as MultiSelectFormGen } from './MultiSelectFormGen';
|
68
69
|
export { default as ButtonGroupMultiSelectWithInputsFormGen } from './ButtonGroupWithInputsFormGen/ButtonGroupMultiSelectWithInputsFormGen';
|
69
70
|
export { default as ButtonGroupWithMultiSelectFormGen } from './ButtonGroupFormGen/ButtonGroupWithMultiSelectFormGen';
|
71
|
+
export { default as FilterButton } from './FilterButtonGroup/FilterButton';
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import './index.css';
|
2
2
|
export * from './components';
|
3
3
|
export * from './hooks';
|
4
|
-
export { VariantTypes, BorderType, LogoProps, } from './shared/models/components/base.model';
|
4
|
+
export { VariantTypes, BorderType, LogoProps, IconVariant } from './shared/models/components/base.model';
|
5
5
|
export { DropdownSearchProps, ClickedAction, TimelineEventProps, ListMasterDataProps, BtnOptionDropdown, BADGETYPE, OptionProps, NoteItemProps, NoteChildrenProps, NoteProps, UrgentDataProps, MessageProps, InputType, BadgeColorVariant, ISolutionvalues, AccountPopoverMenuItem, } from './shared/models/components/common.model';
|
6
6
|
export { ColumnDef, SortingState } from '@tanstack/react-table';
|
7
7
|
export { usePagination } from './hooks/usePagination';
|
@@ -760,4 +760,13 @@ export interface CircularLoaderProps {
|
|
760
760
|
containerClass?: string;
|
761
761
|
loaderClass?: string;
|
762
762
|
}
|
763
|
+
export declare enum IconVariant {
|
764
|
+
primary = "primary",
|
765
|
+
secondary = "secondary",
|
766
|
+
disabled = "disabled",
|
767
|
+
success = "success",
|
768
|
+
warning = "warning",
|
769
|
+
error = "error",
|
770
|
+
info = "info"
|
771
|
+
}
|
763
772
|
export {};
|
@@ -2,6 +2,8 @@ import { ReactNode } from 'react';
|
|
2
2
|
import { selectType, VariantTypes } from './base.model';
|
3
3
|
import { ColumnDef, OnChangeFn, PaginationState, SortingState } from '@tanstack/react-table';
|
4
4
|
import { ITodoToggleRequestParams } from '../../../components/SideBarListView/todos';
|
5
|
+
import { IconName } from 'lucide-react/dynamic';
|
6
|
+
import { customIcons } from '../../../components/Media/Icon/CustomIcon';
|
5
7
|
export type AlignmentType = 'center' | 'left' | 'right';
|
6
8
|
export type IconColorTypes = 'white' | 'black-900' | 'gray-220' | 'gray-720' | 'inherit' | 'gray-300' | string;
|
7
9
|
export type IconHoverColorTypes = 'white' | 'black-900' | 'gray-220' | 'inherit';
|
@@ -125,6 +127,7 @@ export interface TabNavigationProps extends AdditionalClassesProp {
|
|
125
127
|
selectedEnvironment?: Environment;
|
126
128
|
currentEnvironment?: Environment;
|
127
129
|
handleEnvironmentChange?: (environment: Environment) => void;
|
130
|
+
helpOpen?: boolean;
|
128
131
|
}
|
129
132
|
export interface TabNavItemProps {
|
130
133
|
isActive: boolean;
|
@@ -132,7 +135,7 @@ export interface TabNavItemProps {
|
|
132
135
|
urlPath?: string;
|
133
136
|
navTitle?: string;
|
134
137
|
navClasses?: string;
|
135
|
-
|
138
|
+
iconName: IconName | keyof typeof customIcons;
|
136
139
|
textClass?: string;
|
137
140
|
}
|
138
141
|
export interface MessageProps {
|
@@ -729,6 +732,7 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
729
732
|
lastEditedDate?: string;
|
730
733
|
};
|
731
734
|
tooltip?: string;
|
735
|
+
optionClasses?: string;
|
732
736
|
}
|
733
737
|
export interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
734
738
|
id?: string;
|
@@ -1050,5 +1054,8 @@ export interface TableProps {
|
|
1050
1054
|
setRowSelection?: any;
|
1051
1055
|
isLoading?: boolean;
|
1052
1056
|
paginationLabel?: string;
|
1057
|
+
emptyLabel?: string;
|
1058
|
+
otherTableProps?: Record<string, any>;
|
1059
|
+
noDataImage?: string;
|
1053
1060
|
}
|
1054
1061
|
export {};
|
package/dist/index.d.ts
CHANGED
@@ -3,6 +3,8 @@ import React__default, { InputHTMLAttributes, SelectHTMLAttributes, TextareaHTML
|
|
3
3
|
import { ColumnDef, OnChangeFn, SortingState, PaginationState } from '@tanstack/react-table';
|
4
4
|
export { ColumnDef, SortingState } from '@tanstack/react-table';
|
5
5
|
import { Tag } from 'react-tag-input';
|
6
|
+
import { IconName } from 'lucide-react/dynamic';
|
7
|
+
import { LucideProps } from 'lucide-react';
|
6
8
|
|
7
9
|
interface ITodoToggleRequestParams$1 {
|
8
10
|
noteId?: string;
|
@@ -26,6 +28,12 @@ interface todosProps {
|
|
26
28
|
}
|
27
29
|
declare const Todos: React__default.FC<todosProps>;
|
28
30
|
|
31
|
+
declare const customIcons: {
|
32
|
+
customPlus: React__default.FC<LucideProps>;
|
33
|
+
homeIcon: React__default.FC<LucideProps>;
|
34
|
+
presentationIcon: React__default.FC<LucideProps>;
|
35
|
+
};
|
36
|
+
|
29
37
|
type AlignmentType = 'center' | 'left' | 'right';
|
30
38
|
type IconColorTypes = 'white' | 'black-900' | 'gray-220' | 'gray-720' | 'inherit' | 'gray-300' | string;
|
31
39
|
type IconHoverColorTypes = 'white' | 'black-900' | 'gray-220' | 'inherit';
|
@@ -115,6 +123,7 @@ interface TabNavigationProps extends AdditionalClassesProp$1 {
|
|
115
123
|
selectedEnvironment?: Environment;
|
116
124
|
currentEnvironment?: Environment;
|
117
125
|
handleEnvironmentChange?: (environment: Environment) => void;
|
126
|
+
helpOpen?: boolean;
|
118
127
|
}
|
119
128
|
interface MessageProps {
|
120
129
|
type: string;
|
@@ -622,6 +631,7 @@ interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
622
631
|
lastEditedDate?: string;
|
623
632
|
};
|
624
633
|
tooltip?: string;
|
634
|
+
optionClasses?: string;
|
625
635
|
}
|
626
636
|
interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
627
637
|
id?: string;
|
@@ -921,6 +931,9 @@ interface TableProps {
|
|
921
931
|
setRowSelection?: any;
|
922
932
|
isLoading?: boolean;
|
923
933
|
paginationLabel?: string;
|
934
|
+
emptyLabel?: string;
|
935
|
+
otherTableProps?: Record<string, any>;
|
936
|
+
noDataImage?: string;
|
924
937
|
}
|
925
938
|
|
926
939
|
type VariantTypes = 'large' | 'small' | 'extraSmall' | 'largeOutlined' | 'smallOutlined' | 'extraSmallOutlined' | 'default' | 'defaultOutlined' | 'primaryBlue' | 'primaryWhite' | 'primaryWhiteDisable' | 'primaryRedBtn' | 'primaryRedBgBtn' | 'primaryWhiteSelected' | 'primaryWhiteNoBoader' | 'primaryWhiteIcon' | 'primaryRed' | 'primaryFilterSelected' | 'primaryBlueFilter' | 'smallWhite' | 'smallWhiteSelected' | 'smallBlue' | 'primaryNoBoader' | 'primaryBlue10' | 'noBoaderbgTransparent' | undefined;
|
@@ -1418,6 +1431,15 @@ interface IListRowProps extends AdditionalClassesProp {
|
|
1418
1431
|
onFocus?: () => void;
|
1419
1432
|
onClick?: () => void;
|
1420
1433
|
}
|
1434
|
+
declare enum IconVariant {
|
1435
|
+
primary = "primary",
|
1436
|
+
secondary = "secondary",
|
1437
|
+
disabled = "disabled",
|
1438
|
+
success = "success",
|
1439
|
+
warning = "warning",
|
1440
|
+
error = "error",
|
1441
|
+
info = "info"
|
1442
|
+
}
|
1421
1443
|
|
1422
1444
|
declare const Button: ({ type, isDisabled, buttonLabel, iconType, iconColor, iconAlignment, isIconEnabled, variants, additionalClasses, iconClass, enableBagage, bagageProps, width, onClick, isLoading }: IButtonProps) => React__default.JSX.Element;
|
1423
1445
|
|
@@ -1486,6 +1508,8 @@ interface SelectV2Props {
|
|
1486
1508
|
onOpen?: () => Promise<void>;
|
1487
1509
|
isLoading?: boolean;
|
1488
1510
|
maxLength?: number;
|
1511
|
+
enableToolTip?: boolean;
|
1512
|
+
tooltipProps?: ToolTipProps;
|
1489
1513
|
}
|
1490
1514
|
declare const SelectV2: React__default.FC<SelectV2Props>;
|
1491
1515
|
|
@@ -1611,7 +1635,7 @@ declare const Logo: React__default.FC<LogoProps>;
|
|
1611
1635
|
|
1612
1636
|
declare const LoadingSpinner: React__default.FC<AdditionalClassesProp$1>;
|
1613
1637
|
|
1614
|
-
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, version, environmentList, selectedEnvironment, currentEnvironment, onHelpClick, handleEnvironmentChange }: TabNavigationProps & {
|
1638
|
+
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, version, environmentList, selectedEnvironment, currentEnvironment, onHelpClick, helpOpen, handleEnvironmentChange }: TabNavigationProps & {
|
1615
1639
|
onHelpClick?: () => void;
|
1616
1640
|
}) => React__default.JSX.Element;
|
1617
1641
|
|
@@ -1735,8 +1759,20 @@ declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
1735
1759
|
*/
|
1736
1760
|
declare const Icon: React__default.FC<IIconProps>;
|
1737
1761
|
|
1762
|
+
type IconProps = {
|
1763
|
+
size?: string;
|
1764
|
+
icon: IconName | keyof typeof customIcons;
|
1765
|
+
color?: string;
|
1766
|
+
variant?: IconVariant;
|
1767
|
+
strokeWidth?: number;
|
1768
|
+
absoluteStrokeWidth?: boolean;
|
1769
|
+
onClick?: () => void;
|
1770
|
+
additionalClasses?: string;
|
1771
|
+
};
|
1772
|
+
declare const IconV2: React__default.FC<IconProps>;
|
1773
|
+
|
1738
1774
|
declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
|
1739
|
-
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, }: TableProps, key?: any): React__default.JSX.Element;
|
1775
|
+
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, emptyLabel, otherTableProps, noDataImage }: TableProps, key?: any): React__default.JSX.Element;
|
1740
1776
|
|
1741
1777
|
declare function IndeterminateCheckbox({ indeterminate, rowId, className, ...rest }: {
|
1742
1778
|
indeterminate?: boolean;
|
@@ -1766,7 +1802,7 @@ declare const ButtonGroupWithInputs: React__default.FC<ButtonGroupProps>;
|
|
1766
1802
|
|
1767
1803
|
declare const ButtonGroupWithUpload: React__default.FC<ButtonGroupWithUploadProps>;
|
1768
1804
|
|
1769
|
-
declare function ButtonGroupFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, additionalClasses, selected, viewMode, previousData, tooltip, }: FormGenButtonGroupProps): React__default.JSX.Element;
|
1805
|
+
declare function ButtonGroupFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, additionalClasses, optionClasses, selected, viewMode, previousData, tooltip, }: FormGenButtonGroupProps): React__default.JSX.Element;
|
1770
1806
|
|
1771
1807
|
declare const ButtonGroupWithMultiSelectFormGen: React__default.FC<FormGenButtonGroupMultiSelectProps>;
|
1772
1808
|
|
@@ -1776,7 +1812,9 @@ declare function ButtonGroupMultiSelectWithInputsFormGen({ id, options, onSelect
|
|
1776
1812
|
|
1777
1813
|
declare const DynamicDualInputTextGroupFormGen: React__default.FC<DyanamicDualInputProps>;
|
1778
1814
|
|
1779
|
-
declare const FilterButtonGroup: React__default.FC<ButtonGroupProps
|
1815
|
+
declare const FilterButtonGroup: React__default.FC<ButtonGroupProps & {
|
1816
|
+
heading?: string;
|
1817
|
+
}>;
|
1780
1818
|
|
1781
1819
|
declare const SelectUserWithButton: React__default.FC<UserDropdownProps>;
|
1782
1820
|
|
@@ -1913,6 +1951,8 @@ declare const SsnInput: React__default.FC<SsnInputProps>;
|
|
1913
1951
|
|
1914
1952
|
declare const MultiSelectFormGen: React__default.FC<IMultiSelectProps>;
|
1915
1953
|
|
1954
|
+
declare const FilterButton: ({ type, isDisabled, buttonLabel, iconType, iconColor, iconAlignment, isIconEnabled, variants, additionalClasses, iconClass, enableBagage, bagageProps, width, onClick, }: IButtonProps) => React__default.JSX.Element;
|
1955
|
+
|
1916
1956
|
interface UseSchemaProcessorProps {
|
1917
1957
|
schema: ISchema[];
|
1918
1958
|
externalSetComponents: (data: IComponent[]) => void;
|
@@ -2142,6 +2182,10 @@ declare const themeConfigs: {
|
|
2142
2182
|
errorRed: string;
|
2143
2183
|
lightRed: string;
|
2144
2184
|
lightGreen: string;
|
2185
|
+
success: string;
|
2186
|
+
warning: string;
|
2187
|
+
error: string;
|
2188
|
+
info: string;
|
2145
2189
|
};
|
2146
2190
|
placeholderColor: {
|
2147
2191
|
gray: string;
|
@@ -2225,5 +2269,5 @@ declare const themeConfigs: {
|
|
2225
2269
|
plugins: any[];
|
2226
2270
|
};
|
2227
2271
|
|
2228
|
-
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupMultiSelectWithInputsFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithMultiSelectFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, ConboboxV2 as ComboboxV2, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, IconInputV2, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PhoneNumberInput4, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SelectV2, SideBarListView, SideBarListViewV2, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, TodosV2, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
2272
|
+
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupMultiSelectWithInputsFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithMultiSelectFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, ConboboxV2 as ComboboxV2, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButton, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, IconInputV2, IconV2, IconVariant, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PhoneNumberInput4, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SelectV2, SideBarListView, SideBarListViewV2, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, TodosV2, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
2229
2273
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "dfh-ui-library",
|
3
|
-
"version": "1.14.
|
3
|
+
"version": "1.14.7",
|
4
4
|
"description": "",
|
5
5
|
"scripts": {
|
6
6
|
"build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",
|
@@ -32,6 +32,7 @@
|
|
32
32
|
"formik": "^2.4.5",
|
33
33
|
"intl-tel-input": "^25.3.1",
|
34
34
|
"lodash": "^4.17.21",
|
35
|
+
"lucide-react": "^0.542.0",
|
35
36
|
"moment": "^2.29.4",
|
36
37
|
"react": "^18.2.0",
|
37
38
|
"react-datepicker": "^4.24.0",
|
@@ -57,6 +58,7 @@
|
|
57
58
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
58
59
|
"@rollup/plugin-typescript": "^11.1.5",
|
59
60
|
"@storybook/addon-actions": "^7.6.3",
|
61
|
+
"@storybook/addon-controls": "^7.5.3",
|
60
62
|
"@storybook/addon-docs": "^7.5.3",
|
61
63
|
"@storybook/addon-essentials": "^7.5.3",
|
62
64
|
"@storybook/addon-interactions": "^7.5.3",
|