raise-common-lib 0.0.137 → 0.0.138
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/bundles/raise-common-lib.umd.js +8 -1
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/page-list/index.component.js +10 -3
- package/esm5/lib/layout/page-list/index.component.js +10 -3
- package/fesm2015/raise-common-lib.js +8 -1
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +8 -1
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/layout/page-list/index.component.d.ts +2 -1
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/style/reset/grid.scss +1 -1
|
@@ -2714,6 +2714,7 @@
|
|
|
2714
2714
|
this.customPageTitle = false;
|
|
2715
2715
|
this.hideSearch = false;
|
|
2716
2716
|
this.isInner = false;
|
|
2717
|
+
this.onGridSearch = new core.EventEmitter();
|
|
2717
2718
|
this.hasWholeToolbarSlot = false;
|
|
2718
2719
|
}
|
|
2719
2720
|
/**
|
|
@@ -2757,6 +2758,9 @@
|
|
|
2757
2758
|
else if (this.treeGrid) {
|
|
2758
2759
|
this.treeGrid.search(this.searchValue);
|
|
2759
2760
|
}
|
|
2761
|
+
else {
|
|
2762
|
+
this.onGridSearch.emit(this.searchValue);
|
|
2763
|
+
}
|
|
2760
2764
|
};
|
|
2761
2765
|
/**
|
|
2762
2766
|
* @return {?}
|
|
@@ -2782,7 +2786,8 @@
|
|
|
2782
2786
|
pageTitle: [{ type: core.Input }],
|
|
2783
2787
|
customPageTitle: [{ type: core.Input }],
|
|
2784
2788
|
hideSearch: [{ type: core.Input }],
|
|
2785
|
-
isInner: [{ type: core.Input }]
|
|
2789
|
+
isInner: [{ type: core.Input }],
|
|
2790
|
+
onGridSearch: [{ type: core.Output }]
|
|
2786
2791
|
};
|
|
2787
2792
|
return RsPageListComponent;
|
|
2788
2793
|
}());
|
|
@@ -2803,6 +2808,8 @@
|
|
|
2803
2808
|
RsPageListComponent.prototype.hideSearch;
|
|
2804
2809
|
/** @type {?} */
|
|
2805
2810
|
RsPageListComponent.prototype.isInner;
|
|
2811
|
+
/** @type {?} */
|
|
2812
|
+
RsPageListComponent.prototype.onGridSearch;
|
|
2806
2813
|
/**
|
|
2807
2814
|
* @type {?}
|
|
2808
2815
|
* @private
|