0.1.4 • Published 2 years ago

@myena/filter-box v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

filter-box

What's this

This component renders a list of elements which can be searched.

Project setup

npm install @myena/filter-box

Dependences

  • Vue 2

Demo

TBD

Usage

Options can be passed as props

<filter-box
    v-model="selectedOptions"
    drop-id="first"
    :options="options"
    :search="true"
    :multiple="true"
    :is-expanded="true"
    panel-header="First Options"
    :texts="optionsTexts"
    :sort-selected-first="true"
    :display-max="150"
    />
import FilterBox from 'advanced-select';

export default {
  components: {
    FilterBox,
  },
  data: () => ({
    options: [{ 
        value: 1, 
        text: 'One', 
        count: 20, 
        disabled: true, 
        icon: '<i class="fa fa-laptop"></i>' 
    }, { 
        value: 2, 
        text: 'Two', 
        count: 11 
    }],
    optionsTexts: {
        showMore: 'Show more options',
        searchText: 'Search for options...',
        empty: 'No results',
    },
    selectedOptions: [],
  }),
};

Props

PropTypeDefaultDescription
v-modelanynullPass v-model to the component to have the reference to the current selected value
:optionsArray[]The options to display. A list of objects in the form: { value: 1, text: 'One', count: 10, icon: '<i class="fa fa-laptop"></i>'}.
:searchBooleanfalseShow or not a search field to filter the options
:multipleBooleantrueSingle or multiple select
:displayMaxNumber20How many selected items to display on the initial list. If there are more options that 'displayMax', a popup will be available with all of the option grouped by first letter.
:dropdownClassString''Class to use for the dropdown menu. EG: 'dropdown-menu-right'
:textsObject{ searchText: 'Search',empty: 'No results',showMore: 'Show more',collapsedIcon: '-',collapseIcon: '+', }Texts used
:panelHeaderString''Text for the panel header
:dropIdStringkeyA unique id for the filter elements
:isExpandedBooleanfalseBoolean to control if panel is expanded by default
:sortSelectedFirstBooleanfalseBoolean to move the selected option on top of the list.
0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago