digitinary-ui 1.0.276 → 1.0.279
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/components/MultiSelectWithChips/MultiSelectWithChips.d.ts +1 -1
- package/dist/components/PhoneNumber/index.d.ts +3 -3
- package/dist/components/SelectGroup/SelectGroup.d.ts +1 -1
- package/dist/components/SelectGroup/helper.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/types/interfaces.d.ts +2 -0
- package/dist/types/types.d.ts +13 -6
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import './style.scss';
|
|
2
2
|
import { MultiSelectGroupProps } from '../../types';
|
|
3
|
-
export declare const MultiSelectWithChips: ({ label, placeholder, options, value, setValue, isMultiple, disabled, className, helperText, withSearch, itemsLabel, size, required, }: MultiSelectGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const MultiSelectWithChips: ({ label, placeholder, options, value, setValue, isMultiple, disabled, className, helperText, withSearch, itemsLabel, size, required, searchPlaceholder, }: MultiSelectGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default MultiSelectWithChips;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import './style.scss';
|
|
3
|
-
import {
|
|
4
|
-
declare const
|
|
5
|
-
export default
|
|
3
|
+
import { PhoneNumberInputProps } from 'types';
|
|
4
|
+
declare const PhoneNumberInput: React.FC<PhoneNumberInputProps>;
|
|
5
|
+
export default PhoneNumberInput;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { SelectProps, Option } from '../../types';
|
|
2
2
|
import './style.scss';
|
|
3
|
-
declare const SelectGroup: <T extends Option | Option[] | null>({ label, placeholder, options, value, onChange, isMultiple, disabled, className, errorMsg, helperText, withSearch, itemsLabel, size, required, isLoading, onSelfInput, selfInputText, selfInputAddActionText, renderSelfInputBtnText, clearable, startAdornment, onSearch, handleScrollEnd, }: SelectProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare const SelectGroup: <T extends Option | Option[] | null>({ label, placeholder, options, value, onChange, isMultiple, disabled, className, errorMsg, helperText, withSearch, itemsLabel, size, required, isLoading, onSelfInput, selfInputText, selfInputAddActionText, renderSelfInputBtnText, clearable, startAdornment, onSearch, searchPlaceholder, handleScrollEnd, }: SelectProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default SelectGroup;
|
|
@@ -6,6 +6,7 @@ interface SearchInputProps {
|
|
|
6
6
|
toggleDropdown: () => void;
|
|
7
7
|
dropdownRef: React.RefObject<HTMLDivElement>;
|
|
8
8
|
disabled?: boolean;
|
|
9
|
+
placeholder?: string;
|
|
9
10
|
}
|
|
10
11
|
export declare const extractTextFromElement: (element: JSX.Element | string) => string;
|
|
11
12
|
export declare const getNextKey: (currentKey: string, optionRefs: React.MutableRefObject<{
|