Package Exports
- @kassaila/filter-dom-url
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@kassaila/filter-dom-url) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Filtering data with < input >, < select > & URLSearchParams
Make easy way for filtering data with URLSearchParams & different types of inputs, selects.
Example
A simple demo of usage filter-dom-url
See the code of an example - HTML, JS
Overview
Supported DOM elements types
For tag input:
<input type="..."> - ['checkbox', 'radio', 'color', 'range', 'date', 'month', 'week', 'time']
For tag select:
<select> & <select multiple>
HTML structure
Minimal structure for filter-dom-url initializing:
<form data-filter-form="form-example">
<input value="value-example" data-filter="type-example" type="checkbox">
</form>Usage
Please import Filter from file or file.min and initialize:
import Filter from 'dist/filter-dom-url';
const filterExample = new Filter({
formAttr: 'data-filter-form="form-example"',
filterAttr: 'data-filter',
});
filterExample.init();