Skip to content

Commit f807f92

Browse files
cristineculanomego
authored andcommitted
(chore) autoupdate is missing documentation
1 parent 46c4974 commit f807f92

3 files changed

+5
-0
lines changed

cosmoz-omnitable-column-amount.js

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ class OmnitableColumnAmount extends rangeColumnMixin(columnMixin(translatable(
118118
type: String,
119119
value: 'amount-header-cell'
120120
},
121+
// trigger filter updates manually
121122
autoupdate: {
122123
type: String,
123124
value: false

cosmoz-omnitable-column-number.js

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ class OmnitableColumnNumber extends rangeColumnMixin(
104104
type: Object,
105105
computed: '_computeFormatter(locale, minimumFractionDigits, maximumFractionDigits)'
106106
},
107+
// trigger filter updates manually
107108
autoupdate: {
108109
type: String,
109110
value: false

cosmoz-omnitable-column-range-mixin.js

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ export const rangeColumnMixin = dedupingMixin(base => // eslint-disable-line max
4848
value: null
4949
},
5050

51+
/**
52+
* If true, _limitInput and _updateFilter will be called after each value change
53+
*/
5154
autoupdate: {
5255
type: String,
5356
value: true

0 commit comments

Comments
 (0)