blob: 8ea8d5e2da8c0013303d7dbb61e412774ee03928 [file] [log] [blame]
<link rel="import" href="../../../../../../third-party/polymer/polymer.html">
<polymer-element name="p2b-grid-filter-select-item" attributes="label checked value">
<script>
Polymer('p2b-grid-filter-select-item', {
/*
* Label text for the item
* @type {string}
*/
label: '',
/*
* Whether toggle is checked or not
* @type {boolean}
*/
checked: false,
/*
* Value that will available as filters[key] in the fetch() function of your data source.
* Where key is the key of the select filter that contains this item
* @type {string}
*/
value: ''
});
</script>
</polymer-element>