@mackin.com/styleguide 8.9.0 → 8.9.1
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/index.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -731,7 +731,7 @@ interface SearchBoxProps {
|
|
|
731
731
|
/** This will be ignored if 'noForm' is true. */
|
|
732
732
|
onSubmit?: () => Promise<void>;
|
|
733
733
|
/** If true, the controls will not be wrapped in a Form component. In addition, 'onSubmit' will be ignored. */
|
|
734
|
-
noForm?:
|
|
734
|
+
noForm?: boolean;
|
|
735
735
|
}
|
|
736
736
|
declare const SearchBox: (props: SearchBoxProps) => JSX.Element;
|
|
737
737
|
|