dfh-ui-library 1.13.51 → 1.13.52
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.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/ComboBox/index.d.ts +2 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/ComboBox/index.d.ts +2 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.d.ts +45 -1
- package/package.json +1 -1
@@ -5,6 +5,7 @@ export { default as Typhography } from './Typhography';
|
|
5
5
|
export { default as TyphographyFormGen } from './TyphographyFormGen';
|
6
6
|
export { Input, Select, CheckBox, Label, InputValidation, Textarea, RadioButton, IconInput, ImageInput, } from './FormElements';
|
7
7
|
export { default as Card } from './Card';
|
8
|
+
export { default as ComboBox } from './ComboBox';
|
8
9
|
export { default as ComponentProvider } from './ComponentProvider';
|
9
10
|
export { default as Logo } from './Logo';
|
10
11
|
export { default as LoadingSpinner } from './LoadingSpinner';
|
package/dist/index.d.ts
CHANGED
@@ -2,6 +2,7 @@ import * as React$1 from 'react';
|
|
2
2
|
import React__default, { InputHTMLAttributes, SelectHTMLAttributes, TextareaHTMLAttributes, ReactNode, FC, HTMLProps } from 'react';
|
3
3
|
import { ColumnDef, OnChangeFn, SortingState, PaginationState } from '@tanstack/react-table';
|
4
4
|
export { ColumnDef, SortingState } from '@tanstack/react-table';
|
5
|
+
import { Tag } from 'react-tag-input';
|
5
6
|
|
6
7
|
interface ITodoToggleRequestParams {
|
7
8
|
noteId?: string;
|
@@ -1370,6 +1371,49 @@ declare const ImageInput: React__default.FC<ImageInputProps>;
|
|
1370
1371
|
*/
|
1371
1372
|
declare const Card: React__default.FC<ICardProps>;
|
1372
1373
|
|
1374
|
+
interface ComboBoxProps {
|
1375
|
+
suggestions?: string[];
|
1376
|
+
onTagsChange?: (tags: Tag[]) => void;
|
1377
|
+
initialTags?: Tag[];
|
1378
|
+
debounceMs?: number;
|
1379
|
+
onSearch?: (searchTerm: string) => void;
|
1380
|
+
maxTags?: number;
|
1381
|
+
label?: string;
|
1382
|
+
placeholder?: string;
|
1383
|
+
error?: string;
|
1384
|
+
isBorderedError?: boolean;
|
1385
|
+
readOnly?: boolean;
|
1386
|
+
inputVariant?: "default" | "large" | "dynamic" | "uploadinput" | "small" | "noborder";
|
1387
|
+
additionalClasses?: string;
|
1388
|
+
isAdditionalErrorInput?: boolean;
|
1389
|
+
additionalErrorClasses?: string;
|
1390
|
+
labelType?: LABELTYPE;
|
1391
|
+
enableToolTip?: boolean;
|
1392
|
+
tooltipProps?: {
|
1393
|
+
tooltipIconClasses?: string;
|
1394
|
+
tooltipHeading?: string;
|
1395
|
+
tooltipContent?: string;
|
1396
|
+
tooltipClick?: () => void;
|
1397
|
+
showTooltip?: boolean;
|
1398
|
+
tooltipIcon?: string;
|
1399
|
+
color?: string;
|
1400
|
+
};
|
1401
|
+
suffixed?: string;
|
1402
|
+
viewMode?: boolean;
|
1403
|
+
isRequired?: boolean;
|
1404
|
+
wrapperClass?: string;
|
1405
|
+
type?: string;
|
1406
|
+
onlyLabel?: boolean;
|
1407
|
+
labelSpanClasses?: string;
|
1408
|
+
labelName?: string;
|
1409
|
+
value?: string;
|
1410
|
+
isIcon?: boolean;
|
1411
|
+
labelClasses?: string;
|
1412
|
+
inputFocus?: () => void;
|
1413
|
+
refProps?: any;
|
1414
|
+
}
|
1415
|
+
declare const ComboBox: FC<ComboBoxProps>;
|
1416
|
+
|
1373
1417
|
interface IComponentProps {
|
1374
1418
|
schema: ISchema[];
|
1375
1419
|
children: ReactNode;
|
@@ -1926,5 +1970,5 @@ declare const themeConfigs: {
|
|
1926
1970
|
plugins: any[];
|
1927
1971
|
};
|
1928
1972
|
|
1929
|
-
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SideBarListView, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
1973
|
+
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SideBarListView, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
1930
1974
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|