Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
dkfbasel-search
Advanced tools
dkfbasel-search is a search component for vue.js 2.1+ handling search inputs and result rendering based on best practice experiences in terms of usability. For the most flexibility we are taking advantage of the newly implemented scoped slots in vue combined with vue transitions for high performance animations.
Its simple usage makes it the best choice for your search implementation. Just pass your own search command and define the presentation of hints and results as you like.
vue 2.1+ dynamics.js
$ npm install dkfbasel-search --save
Import dkfbasel-search into your vue component:
import Search from 'dkfbasel-search';
Place the dkfbasel-search component inside your template and define the result presentation and optionally a content to be presented from the beginning:
<search autofocus :query="yourSearchQuery">
<template slot="start">
... // any html code, e.g.:
<div class="start-info">Welcome to dkfbasel-search. What are you looking for?</div>
</template>
<template slot="result" scope="props">
... // any html code
// use {{props.result}} to access the result based on your data model
</template>
</search>
Optional you can also edit the hints for the following actions:
While user is typing:
<template slot="hint_typing">
... // any html code
</template>
While search is running:
<template slot="hint_searching">
... // any html code
</template>
When results are presented:
<template slot="hint_result" scope="props">
...
// use {{props.term}} to display the term your were searching for
// use {{props.amount}} to display the number of results
</template>
An fully functional example is provided in the test directory using docker and webpack.
Any comments or suggestions are very welcome.
FAQs
An awesome search component for vue.js 2.1+
The npm package dkfbasel-search receives a total of 1 weekly downloads. As such, dkfbasel-search popularity was classified as not popular.
We found that dkfbasel-search demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.