Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | /**
* Spotlight is an input for search something
*
* We have many options for design the component as you wish
* hasClearAll: show cross button for delete your text
* hasCommit: show arrow button for commit your text (You could press "enter" for commit)
* withBorder: add padding around the spotlight
* fullWidth: input take 100% of the width
*
* spotlightOptions: show on right side a drop down list where you can add some options
*
* open devTool if you want show actions
*
*
* @memberOf VISIONS
* @name Spotlight
* @tag component
* @api public
* @props
* Spotlight.propTypes = {
* defaultTerm: PropTypes.string,
* placeholder: PropTypes.string,
* defaultSpotlight: PropTypes.shape({
* fields: PropTypes.object,
* searchLabel: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
* FieldLabelRenderer: PropTypes.func,
* }),
* hasClearAll: PropTypes.bool,
* isRtl: PropTypes.bool,
* hasCommit: PropTypes.bool,
* withBorder: PropTypes.bool,
* classes: PropTypes.object,
*};
*/
export { default } from './Spotlight';
|