@aveonline/ui-react 1.6.11 → 1.6.13
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/molecules/Field/IField.d.ts +1 -1
- package/dist/components/molecules/Selectable/AsyncCreatableSelect/AsyncCreatableSelect.d.ts +1 -1
- package/dist/components/molecules/Selectable/AsyncSelect/AsyncSelect.d.ts +1 -1
- package/dist/components/molecules/Selectable/Select/ISelect.d.ts +2 -0
- package/dist/components/molecules/Selectable/Select/Select.d.ts +1 -1
- package/dist/components/molecules/Selectable/SelectButton/SelectButton.d.ts +1 -1
- package/dist/components/molecules/Selectable/SelectCountry/SelectCountry.d.ts +1 -1
- package/dist/ui-react.mjs +589 -579
- package/dist/ui-react.umd.js +15 -15
- package/package.json +1 -1
|
@@ -3,5 +3,5 @@ import type { IAsyncCreatableSelect } from './IAsyncCreatableSelect';
|
|
|
3
3
|
* Molecule: AsyncCreatableSelect
|
|
4
4
|
* Async select lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface. Data from network. To allow new values
|
|
5
5
|
*/
|
|
6
|
-
declare function AsyncCreatableSelect({ placeholder, id, name, error, helpText, hasLabelPlaceholder, isDisabled, isClearable, defaultValue, onChange, isLoading, loadOptions, isError, showErrorText, onBlur, value, menuIsOpen, allowCreateWhileLoading, createOptionPosition, logo }: IAsyncCreatableSelect): JSX.Element;
|
|
6
|
+
declare function AsyncCreatableSelect({ placeholder, id, name, error, helpText, hasLabelPlaceholder, isDisabled, isClearable, defaultValue, onChange, isLoading, loadOptions, isError, showErrorText, onBlur, value, menuIsOpen, allowCreateWhileLoading, createOptionPosition, logo, instanceId }: IAsyncCreatableSelect): JSX.Element;
|
|
7
7
|
export default AsyncCreatableSelect;
|
|
@@ -3,5 +3,5 @@ import type { IAsyncSelect } from './IAsyncSelect';
|
|
|
3
3
|
* Molecule: AsyncSelect
|
|
4
4
|
* Async select lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface. Data from network
|
|
5
5
|
*/
|
|
6
|
-
declare function AsyncSelect({ placeholder, id, name, error, helpText, hasLabelPlaceholder, isDisabled, isClearable, defaultValue, onChange, isLoading, loadOptions, isError, showErrorText, onBlur, value, menuIsOpen }: IAsyncSelect): JSX.Element;
|
|
6
|
+
declare function AsyncSelect({ placeholder, id, name, error, helpText, hasLabelPlaceholder, isDisabled, isClearable, defaultValue, onChange, isLoading, loadOptions, isError, showErrorText, onBlur, value, menuIsOpen, instanceId }: IAsyncSelect): JSX.Element;
|
|
7
7
|
export default AsyncSelect;
|
|
@@ -3,5 +3,5 @@ import type { ISelect } from './ISelect';
|
|
|
3
3
|
* Atom: Select
|
|
4
4
|
* Select lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface.
|
|
5
5
|
*/
|
|
6
|
-
declare function Select({ options, placeholder, defaultValue, isDisabled, id, name, helpText, hasLabelPlaceholder, onChange, isSearchable, isClearable, error, isError, showErrorText, onBlur, value, menuIsOpen }: ISelect): JSX.Element;
|
|
6
|
+
declare function Select({ options, placeholder, defaultValue, isDisabled, id, name, helpText, hasLabelPlaceholder, onChange, isSearchable, isClearable, error, isError, showErrorText, onBlur, value, instanceId, menuIsOpen }: ISelect): JSX.Element;
|
|
7
7
|
export default Select;
|
|
@@ -3,5 +3,5 @@ import type { ISelectButton } from './ISelectButton';
|
|
|
3
3
|
* Molecule: SelectButton
|
|
4
4
|
* Select with button for first item lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface.
|
|
5
5
|
*/
|
|
6
|
-
declare function SelectButton({ options, placeholder, defaultValue, isDisabled, id, error, name, helpText, hasLabelPlaceholder, onChange, isSearchable, isClearable, alignButton, onClickFirstItem, isError, showErrorText, onBlur, menuIsOpen, value }: ISelectButton): JSX.Element;
|
|
6
|
+
declare function SelectButton({ options, placeholder, defaultValue, isDisabled, id, error, name, helpText, hasLabelPlaceholder, onChange, isSearchable, isClearable, alignButton, onClickFirstItem, isError, showErrorText, onBlur, menuIsOpen, instanceId, value }: ISelectButton): JSX.Element;
|
|
7
7
|
export default SelectButton;
|
|
@@ -3,5 +3,5 @@ import { ISelect } from '../Select/ISelect';
|
|
|
3
3
|
* Molecule: SelectCountry
|
|
4
4
|
* Select lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface.
|
|
5
5
|
*/
|
|
6
|
-
declare function SelectCountry({ id, name, placeholder, options, defaultValue, isDisabled, error, isSearchable, helpText, onChange, isClearable, isError, showErrorText, onBlur, menuIsOpen, value }: ISelect): JSX.Element;
|
|
6
|
+
declare function SelectCountry({ id, name, placeholder, options, defaultValue, isDisabled, error, isSearchable, helpText, onChange, isClearable, isError, showErrorText, onBlur, menuIsOpen, value, instanceId }: ISelect): JSX.Element;
|
|
7
7
|
export default SelectCountry;
|