Index: lib/iron_selectable.dart |
diff --git a/lib/iron_selectable.dart b/lib/iron_selectable.dart |
index d384c5d5c34ceff037f1009fcee0459a762496a9..38cd1356ad02ddda51599097d13f75755cf927cc 100644 |
--- a/lib/iron_selectable.dart |
+++ b/lib/iron_selectable.dart |
@@ -25,11 +25,6 @@ abstract class IronSelectableBehavior implements CustomElementProxyMixin { |
String get attrForSelected => jsElement[r'attrForSelected']; |
set attrForSelected(String value) { jsElement[r'attrForSelected'] = value; } |
- /// The set of excluded elements where the key is the `localName` |
- /// of the element that will be ignored from the item list. |
- get excludedLocalNames => jsElement[r'excludedLocalNames']; |
- set excludedLocalNames(value) { jsElement[r'excludedLocalNames'] = (value is Map || (value is Iterable && value is! JsArray)) ? new JsObject.jsify(value) : value;} |
- |
/// Returns an array of selectable items. |
get items => jsElement[r'items']; |