docthub-core-components 2.87.0 → 2.88.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.
|
@@ -25,8 +25,6 @@ export interface AutocompleteCheckboxProps<T = unknown> {
|
|
|
25
25
|
fullWidth?: boolean;
|
|
26
26
|
className?: string;
|
|
27
27
|
inputClassName?: string;
|
|
28
|
-
/** Applied to each selected tag chip when `showTags` is enabled */
|
|
29
|
-
chipClassName?: string;
|
|
30
28
|
checkboxPosition?: "left" | "right";
|
|
31
29
|
showChip?: boolean;
|
|
32
30
|
checkboxProps?: Omit<CheckboxProps, "checked" | "onCheckedChange">;
|
|
@@ -82,5 +80,5 @@ export interface AutocompleteCheckboxProps<T = unknown> {
|
|
|
82
80
|
* Autocomplete component with checkbox selection.
|
|
83
81
|
* Supports two modes: "input" (default) with tags display, or "button" for filter bars.
|
|
84
82
|
*/
|
|
85
|
-
export declare function AutocompleteCheckbox<T extends OptionType>({ options, dataSource, value, onChange, change, onInputChange, placeholder, label, helperText, error, noOptionsText, emptyMessage, disabled, loading, required, clearable, disableCloseOnSelect, freeSolo, size, variant, fullWidth, className, inputClassName,
|
|
83
|
+
export declare function AutocompleteCheckbox<T extends OptionType>({ options, dataSource, value, onChange, change, onInputChange, placeholder, label, helperText, error, noOptionsText, emptyMessage, disabled, loading, required, clearable, disableCloseOnSelect, freeSolo, size, variant, fullWidth, className, inputClassName, checkboxPosition, showChip, showTags, checkboxProps, chipProps, checkboxColor, showSearch, searchPlaceholder, triggerType, triggerButtonLabel, triggerButtonVariant, triggerButtonSize, triggerButtonProps, triggerButtonIcon, triggerButtonIconPosition, portalContainer, disablePortal, dropdownWidth, getOptionLabel, getOptionValue, isOptionEqualToValue, filterOptions, renderOption, renderTags, limitTags, fields, }: AutocompleteCheckboxProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
86
84
|
export default AutocompleteCheckbox;
|
|
@@ -18,8 +18,6 @@ export interface ChipProps {
|
|
|
18
18
|
/** ARIA label for the delete button */
|
|
19
19
|
deleteAriaLabel?: string;
|
|
20
20
|
closeButtonClassName?: string;
|
|
21
|
-
/** Passed to the delete control for test automation (e.g. `data-testid`). */
|
|
22
|
-
deleteButtonTestId?: string;
|
|
23
21
|
}
|
|
24
22
|
export declare const Chip: FC<ChipProps>;
|
|
25
23
|
export interface ChipsContainerProps {
|