vx-vue 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -21,16 +21,18 @@ module.exports = {
21
21
  ## Provided components
22
22
  So far the following components have been implemented:
23
23
 
24
- | element | description |
25
- |------------------|----------------------------------------------------------------------------------------------------|
26
- | `password-input` | a simple input with toggle button which toggles between `type='button'` and `type='text'` |
27
- | `form-select` | a select element adapted for Vue.js integration |
28
- | `form-switch` | a fancy checkbox |
29
- | `sortable` | a sortable table; the `columns` attribute specifies the columns and their sorting options |
30
- | `message-toast` | displays a notification which dismisses itself after a configurable timeout |
31
- | `confirm` | promise-based component which can either take one ("confirm") or two buttons ("confirm", "cancel") |
32
- | `pagination` | a pagination component for arbitrary items; opinionated in its layout |
33
- | `tabs` | a tabs component which allows both badges and icons |
34
- | `simple-tree` | a simple tree implemented with a recursive component |
35
- | `date-input` | input element for guided date inputs, also used by the datepicker |
36
- | `datepicker` | a bare bones datepicker component |
24
+ | element | description | props | events | slots |
25
+ |--------------------|----------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------|----------------------------------------------|
26
+ | `confirm` | promise-based component which can either take one ("confirm") or two buttons ("confirm", "cancel") | | | `title` `icon` `message` |
27
+ | `date-input` | input element for guided date inputs, also used by the datepicker | `outputFormat` `inputFormat` `showButton` `locale` `modelValue` | `update:modelValue` `toggle-datepicker` | `default` |
28
+ | `datepicker` | a bare bones datepicker component | `modelValue` `validFrom` `validUntil` `dayNames` `locale` `startOfWeekIndex` `hasInput` | `update:modelValue` `month-change` | |
29
+ | `form-file-button` | a thinly wrapped type-file input to allow proper styling and integration | `modelValue` `accept` `multiple` `name` `id` | `update:modelValue` `form-data` | |
30
+ | `form-select` | a select element adapted for Vue.js integration | `options` `modelValue` `disabledLabel` | `update:modelValue` | |
31
+ | `form-switch` | a fancy checkbox | `modelValue` | `update:modelValue` | `default` |
32
+ | `message-toast` | displays a notification which dismisses itself after a configurable timeout | `title` `message`, `timeout` `active` | `timeout`, `close` | `icon` `title` `default` |
33
+ | `modal` | modal overlay | `show` `containerClass` `headerClass` `contentClass` | `clicked-outside` | `title` `default` |
34
+ | `pagination` | a pagination component for arbitrary items; opinionated in its layout | `page` `total` `perPage` `showNavButtons` `prevText` `nextText` `showAllPages` `markerPosition` | `update:page` | |
35
+ | `password-input` | a simple input with toggle button which toggles between `type='button'` and `type='text'` | `modelValue` | `update:modelValue` | `default` |
36
+ | `simple-tree` | a simple tree implemented with a recursive component | `branch` | `branch-selected` `expand` | |
37
+ | `sortable` | a sortable table; the `columns` prop specifies the columns and their sorting options | `before-sort` `after-sort` | `columns` `rows` `offset` `count` `sortProp` `sortDirection` `keyProperty` | `{ column: prop }-header` `{ column: prop }` |
38
+ | `tabs` | a tabs component which allows both badges and icons | `items` `activeIndex` | `update:active-index` | `icon` `default` |