monkey-front-components 0.0.430 → 0.0.431
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/esm2020/lib/components/shared/filter/options/options.component.mjs +3 -1
- package/fesm2015/monkey-front-components.mjs +2 -0
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +2 -0
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/monkey-front-components-0.0.431.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-components-0.0.430.tgz +0 -0
|
@@ -1839,6 +1839,8 @@ class MECXFilterOptionsComponent extends BaseComponent {
|
|
|
1839
1839
|
ngOnInit() {
|
|
1840
1840
|
const { option } = this;
|
|
1841
1841
|
option?.values$?.pipe(takeUntil(this.__unsubscribeAll)).subscribe((data) => {
|
|
1842
|
+
console.log('!@@@@@@@@@@@@@@@@@@@@');
|
|
1843
|
+
console.log(data);
|
|
1842
1844
|
this.option.values = data;
|
|
1843
1845
|
});
|
|
1844
1846
|
option?.pagination$?.pipe(takeUntil(this.__unsubscribeAll)).subscribe((data) => {
|