1.0.3 • Published 2 years ago

@myena/advanced-select v1.0.3

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

advanced-select

CircleCI (all branches) npm (scoped) npm.io NpmLicense npm bundle size (minified + gzip) David David

What's this

Component to render a "select" with advanced interactions (search, select/deselect all, etc) for websites built with Vue and Bootstrap 3

Install

npm install @myena/advanced-select

Dependencies

  • Vue 2*/3
    • *For Vue 2 it depends on @vue/composition-api, via vue-demi
  • Bootstrap 3

Demo

https://myena-advanced-select.netlify.app/

Usage

Options can be passed as props

<AdvancedSelect
  v-model="value"
  :options="options"
  :disabled="disabled"
  />

Or as the default slot

<AdvancedSelect
  v-model="secondValue"
  :disabled="disabled"
  >
  <option value="1">Text</option>
  <option value="2">Text 2</option>
</AdvancedSelect>
import AdvancedSelect from 'advanced-select';

export default {
  components: {
    AdvancedSelect,
  },
  data: () => ({
    options: [
      { value: 1, text: 'One' },
      { value: 2, text: 'Two' },
    ],
    value: null,
    secondValue: '1',
    disabled: false,
  }),
};

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' } or { label: 'Group 1', options: [ { value: 1, text: 'One' } ]. If not passed as prop, it tries to read them from the component default slot, where they can be specified as HTML standard option|optgroup list.
:searchBooleanfalseShow or not a search field to filter the options
:multipleBooleanfalseSingle or multiple select
:controlsBooleanfalseShow or not a couple control buttons at the top for (de)selecting all items
:collapseHeadersBooleanfalseShow or not a link on the headers to toggle items under them
:displayMaxNumber0How many selected items to display on the button in multiple mode. 0 means all
:displayTextString"{0} items selected"Text to display if displayMax is reached. "{0}" will be replaced by the total number
:dropdownClassString''Class to use for the dropdown menu. EG: 'dropdown-menu-right'
:textsObject{ placeholder: 'Nothing selected', empty: 'No results', selectAll: 'Select all', selectNone: 'Select none', }Texts used

All other DOM attributes are inherited by the component button. For example: :disabled="true" will disable the button.

1.0.3

2 years ago

2.0.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.9.3

3 years ago

0.9.2

3 years ago

0.9.1

3 years ago

0.9.0

3 years ago

0.8.9

3 years ago

1.0.0-alpha.2

4 years ago

1.0.0-alpha.1

4 years ago

0.8.8

4 years ago

1.0.0-alpha.0

4 years ago

0.8.7

4 years ago

0.8.5

4 years ago

0.8.4

4 years ago

0.8.6

4 years ago

0.8.3

4 years ago

0.8.2

4 years ago

0.8.1

4 years ago

0.8.0

4 years ago

0.7.6

4 years ago

0.7.5

4 years ago

0.7.4

5 years ago

0.7.3

5 years ago

0.7.2

5 years ago

0.7.1

5 years ago

0.6.2

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.4

5 years ago

0.5.3

5 years ago

0.5.2

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago