@react-types/combobox
Advanced tools
Comparing version 3.0.0-nightly.2539 to 3.0.0-nightly.2545
{ | ||
"name": "@react-types/combobox", | ||
"version": "3.0.0-nightly.2539+bd1afa1d", | ||
"version": "3.0.0-nightly.2545+4815ed89", | ||
"description": "Spectrum UI components in React", | ||
@@ -12,3 +12,3 @@ "license": "Apache-2.0", | ||
"dependencies": { | ||
"@react-types/shared": "3.0.0-nightly.861+bd1afa1d" | ||
"@react-types/shared": "3.0.0-nightly.867+4815ed89" | ||
}, | ||
@@ -21,3 +21,3 @@ "peerDependencies": { | ||
}, | ||
"gitHead": "bd1afa1d8f11893a1b3de13eaa3e99c19300d6bd" | ||
"gitHead": "4815ed89c4b0695c87b384e8e0f14f2a6f5c1189" | ||
} |
@@ -13,3 +13,3 @@ /* | ||
import {CollectionBase, DOMProps, FocusableProps, InputBase, SingleSelection, SpectrumLabelableProps, StyleProps, TextInputBase, Validation} from '@react-types/shared'; | ||
import {AsyncLoadable, CollectionBase, DOMProps, FocusableProps, InputBase, LoadingState, SingleSelection, SpectrumLabelableProps, StyleProps, TextInputBase, Validation} from '@react-types/shared'; | ||
@@ -52,3 +52,3 @@ export interface ComboBoxProps<T> extends CollectionBase<T>, SingleSelection, InputBase, TextInputBase, DOMProps, Validation, FocusableProps { | ||
export interface SpectrumComboBoxProps<T> extends ComboBoxProps<T>, SpectrumLabelableProps, StyleProps { | ||
export interface SpectrumComboBoxProps<T> extends ComboBoxProps<T>, SpectrumLabelableProps, StyleProps, Omit<AsyncLoadable, 'isLoading'> { | ||
/** Whether the ComboBox should be displayed with a quiet style. */ | ||
@@ -60,3 +60,5 @@ isQuiet?: boolean, | ||
*/ | ||
direction?: 'bottom' | 'top' | ||
direction?: 'bottom' | 'top', | ||
/** The current loading state of the ComboBox. Determines whether or not the progress circle should be shown. */ | ||
loadingState?: LoadingState | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
14795
58