Compare commits

...

6 Commits

2 changed files with 11 additions and 8 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-reports",
"description": "Strolch WebComponent Reports",
"version": "0.5.0",
"version": "0.5.6",
"authors": [
"Robert von Burg"
],
@ -19,13 +19,13 @@
"homepage": "https://github.com/strolch-li/strolch-wc-reports",
"ignore": [],
"dependencies": {
"strolchjs": "strolch-li/strolchjs#^0.5.1",
"strolch-wc-styles": "strolch-li/strolch-wc-styles#^0.3.1",
"strolch-wc-badge": "strolch-li/strolch-wc-badge#^0.1.1",
"strolch-wc-debounced-input": "strolch-li/strolch-wc-debounced-input#^0.1.1",
"strolch-wc-localize-behavior": "strolch-li/strolch-wc-localize-behavior#^1.1.14",
"strolchjs": "strolch-li/strolchjs#^0.5.3",
"strolch-wc-styles": "strolch-li/strolch-wc-styles#^0.4.7",
"strolch-wc-badge": "strolch-li/strolch-wc-badge#^0.1.4",
"strolch-wc-debounced-input": "strolch-li/strolch-wc-debounced-input#^0.1.6",
"strolch-wc-localize-behavior": "strolch-li/strolch-wc-localize-behavior#^1.1.17",
"polymer": "Polymer/polymer#^1.11.3",
"polymer": "Polymer/polymer#^1.12.0",
"iron-ajax": "PolymerElements/iron-ajax#^1.4.4",
"iron-pages": "PolymerElements/iron-pages#^1.0.9",

View File

@ -235,6 +235,9 @@
value: [],
notify: true
},
facetLimit: {
type: Number
},
facetLoading: {
type: Boolean,
value: false,
@ -252,7 +255,7 @@
if (newValue != null && oldValue != null) {
this.$.ajaxGetFields.params = {
query: newValue,
limit: 10
limit: this.facetLimit
};
this.$.ajaxGetFields.generateRequest();
}