dfh-ui-library 1.14.6 → 1.14.8
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 +9 -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 +9 -1
- package/dist/index.d.ts +50 -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 {
|
@@ -266,6 +269,7 @@ export interface CustomDatePickerProps {
|
|
266
269
|
minDate?: Date;
|
267
270
|
disabled?: boolean;
|
268
271
|
showMonthYearPicker?: boolean;
|
272
|
+
errorMsg?: string;
|
269
273
|
}
|
270
274
|
export interface PhoneNumberInputProps {
|
271
275
|
value: string;
|
@@ -729,6 +733,7 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
729
733
|
lastEditedDate?: string;
|
730
734
|
};
|
731
735
|
tooltip?: string;
|
736
|
+
optionClasses?: string;
|
732
737
|
}
|
733
738
|
export interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
734
739
|
id?: string;
|
@@ -1050,5 +1055,8 @@ export interface TableProps {
|
|
1050
1055
|
setRowSelection?: any;
|
1051
1056
|
isLoading?: boolean;
|
1052
1057
|
paginationLabel?: string;
|
1058
|
+
emptyLabel?: string;
|
1059
|
+
otherTableProps?: Record<string, any>;
|
1060
|
+
noDataImage?: string;
|
1053
1061
|
}
|
1054
1062
|
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;
|
@@ -247,6 +256,7 @@ interface CustomDatePickerProps {
|
|
247
256
|
minDate?: Date;
|
248
257
|
disabled?: boolean;
|
249
258
|
showMonthYearPicker?: boolean;
|
259
|
+
errorMsg?: string;
|
250
260
|
}
|
251
261
|
interface PhoneNumberInputProps {
|
252
262
|
value: string;
|
@@ -622,6 +632,7 @@ interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
622
632
|
lastEditedDate?: string;
|
623
633
|
};
|
624
634
|
tooltip?: string;
|
635
|
+
optionClasses?: string;
|
625
636
|
}
|
626
637
|
interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
627
638
|
id?: string;
|
@@ -921,6 +932,9 @@ interface TableProps {
|
|
921
932
|
setRowSelection?: any;
|
922
933
|
isLoading?: boolean;
|
923
934
|
paginationLabel?: string;
|
935
|
+
emptyLabel?: string;
|
936
|
+
otherTableProps?: Record<string, any>;
|
937
|
+
noDataImage?: string;
|
924
938
|
}
|
925
939
|
|
926
940
|
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 +1432,15 @@ interface IListRowProps extends AdditionalClassesProp {
|
|
1418
1432
|
onFocus?: () => void;
|
1419
1433
|
onClick?: () => void;
|
1420
1434
|
}
|
1435
|
+
declare enum IconVariant {
|
1436
|
+
primary = "primary",
|
1437
|
+
secondary = "secondary",
|
1438
|
+
disabled = "disabled",
|
1439
|
+
success = "success",
|
1440
|
+
warning = "warning",
|
1441
|
+
error = "error",
|
1442
|
+
info = "info"
|
1443
|
+
}
|
1421
1444
|
|
1422
1445
|
declare const Button: ({ type, isDisabled, buttonLabel, iconType, iconColor, iconAlignment, isIconEnabled, variants, additionalClasses, iconClass, enableBagage, bagageProps, width, onClick, isLoading }: IButtonProps) => React__default.JSX.Element;
|
1423
1446
|
|
@@ -1486,6 +1509,8 @@ interface SelectV2Props {
|
|
1486
1509
|
onOpen?: () => Promise<void>;
|
1487
1510
|
isLoading?: boolean;
|
1488
1511
|
maxLength?: number;
|
1512
|
+
enableToolTip?: boolean;
|
1513
|
+
tooltipProps?: ToolTipProps;
|
1489
1514
|
}
|
1490
1515
|
declare const SelectV2: React__default.FC<SelectV2Props>;
|
1491
1516
|
|
@@ -1611,7 +1636,7 @@ declare const Logo: React__default.FC<LogoProps>;
|
|
1611
1636
|
|
1612
1637
|
declare const LoadingSpinner: React__default.FC<AdditionalClassesProp$1>;
|
1613
1638
|
|
1614
|
-
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, version, environmentList, selectedEnvironment, currentEnvironment, onHelpClick, handleEnvironmentChange }: TabNavigationProps & {
|
1639
|
+
declare const NavBar: ({ navigationData, additionalClasses, navItemClick, userImage, username, themeColor, accountPopoverMenuItems, version, environmentList, selectedEnvironment, currentEnvironment, onHelpClick, helpOpen, handleEnvironmentChange }: TabNavigationProps & {
|
1615
1640
|
onHelpClick?: () => void;
|
1616
1641
|
}) => React__default.JSX.Element;
|
1617
1642
|
|
@@ -1735,8 +1760,20 @@ declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
1735
1760
|
*/
|
1736
1761
|
declare const Icon: React__default.FC<IIconProps>;
|
1737
1762
|
|
1763
|
+
type IconProps = {
|
1764
|
+
size?: string;
|
1765
|
+
icon: IconName | keyof typeof customIcons;
|
1766
|
+
color?: string;
|
1767
|
+
variant?: IconVariant;
|
1768
|
+
strokeWidth?: number;
|
1769
|
+
absoluteStrokeWidth?: boolean;
|
1770
|
+
onClick?: () => void;
|
1771
|
+
additionalClasses?: string;
|
1772
|
+
};
|
1773
|
+
declare const IconV2: React__default.FC<IconProps>;
|
1774
|
+
|
1738
1775
|
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;
|
1776
|
+
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, emptyLabel, otherTableProps, noDataImage }: TableProps, key?: any): React__default.JSX.Element;
|
1740
1777
|
|
1741
1778
|
declare function IndeterminateCheckbox({ indeterminate, rowId, className, ...rest }: {
|
1742
1779
|
indeterminate?: boolean;
|
@@ -1766,7 +1803,7 @@ declare const ButtonGroupWithInputs: React__default.FC<ButtonGroupProps>;
|
|
1766
1803
|
|
1767
1804
|
declare const ButtonGroupWithUpload: React__default.FC<ButtonGroupWithUploadProps>;
|
1768
1805
|
|
1769
|
-
declare function ButtonGroupFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, additionalClasses, selected, viewMode, previousData, tooltip, }: FormGenButtonGroupProps): React__default.JSX.Element;
|
1806
|
+
declare function ButtonGroupFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, additionalClasses, optionClasses, selected, viewMode, previousData, tooltip, }: FormGenButtonGroupProps): React__default.JSX.Element;
|
1770
1807
|
|
1771
1808
|
declare const ButtonGroupWithMultiSelectFormGen: React__default.FC<FormGenButtonGroupMultiSelectProps>;
|
1772
1809
|
|
@@ -1776,7 +1813,9 @@ declare function ButtonGroupMultiSelectWithInputsFormGen({ id, options, onSelect
|
|
1776
1813
|
|
1777
1814
|
declare const DynamicDualInputTextGroupFormGen: React__default.FC<DyanamicDualInputProps>;
|
1778
1815
|
|
1779
|
-
declare const FilterButtonGroup: React__default.FC<ButtonGroupProps
|
1816
|
+
declare const FilterButtonGroup: React__default.FC<ButtonGroupProps & {
|
1817
|
+
heading?: string;
|
1818
|
+
}>;
|
1780
1819
|
|
1781
1820
|
declare const SelectUserWithButton: React__default.FC<UserDropdownProps>;
|
1782
1821
|
|
@@ -1913,6 +1952,8 @@ declare const SsnInput: React__default.FC<SsnInputProps>;
|
|
1913
1952
|
|
1914
1953
|
declare const MultiSelectFormGen: React__default.FC<IMultiSelectProps>;
|
1915
1954
|
|
1955
|
+
declare const FilterButton: ({ type, isDisabled, buttonLabel, iconType, iconColor, iconAlignment, isIconEnabled, variants, additionalClasses, iconClass, enableBagage, bagageProps, width, onClick, }: IButtonProps) => React__default.JSX.Element;
|
1956
|
+
|
1916
1957
|
interface UseSchemaProcessorProps {
|
1917
1958
|
schema: ISchema[];
|
1918
1959
|
externalSetComponents: (data: IComponent[]) => void;
|
@@ -2142,6 +2183,10 @@ declare const themeConfigs: {
|
|
2142
2183
|
errorRed: string;
|
2143
2184
|
lightRed: string;
|
2144
2185
|
lightGreen: string;
|
2186
|
+
success: string;
|
2187
|
+
warning: string;
|
2188
|
+
error: string;
|
2189
|
+
info: string;
|
2145
2190
|
};
|
2146
2191
|
placeholderColor: {
|
2147
2192
|
gray: string;
|
@@ -2225,5 +2270,5 @@ declare const themeConfigs: {
|
|
2225
2270
|
plugins: any[];
|
2226
2271
|
};
|
2227
2272
|
|
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 };
|
2273
|
+
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
2274
|
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.8",
|
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",
|