1.1.0 • Published 4 years ago

@mafintosh/search-component v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

search-component

A HUI component for structuring search

npm install @mafintosh/search-component

Usage

const Search = require('@mafintosh/search-component')

const s = new Search({
  result (data, index) {
    // data is from the nanoiterator
    return someDomElementShowingTheResult
  },
  query (txt) {
    return someNanoIterator
  }
}, {
  // whatever attrs you want to set on the search element
})

document.body.appendChild(s)

Only provides the functionality and structure. Bring your own styling.

License

MIT