mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-5213] Metadata - select list filter (#5961)
* select filter input component * include theme * add filter input * show input conditionally * convert value to string for d:int type values * filter list options pipe * add components to module * convert int value to string * i18n * update tests * tests * update config * remove unneeded decorator * fix lint * update schema * remove filter pipe * provide a filtered list
This commit is contained in:
@@ -45,6 +45,7 @@ import { CardViewTextItemComponent } from './components/card-view-textitem/card-
|
||||
import { CardViewKeyValuePairsItemComponent } from './components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component';
|
||||
import { CardViewSelectItemComponent } from './components/card-view-selectitem/card-view-selectitem.component';
|
||||
import { CardViewArrayItemComponent } from './components/card-view-arrayitem/card-view-arrayitem.component';
|
||||
import { SelectFilterInputComponent } from './components/card-view-selectitem/select-filter-input/select-filter-input.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
@@ -78,7 +79,8 @@ import { CardViewArrayItemComponent } from './components/card-view-arrayitem/car
|
||||
CardViewSelectItemComponent,
|
||||
CardViewItemDispatcherComponent,
|
||||
CardViewContentProxyDirective,
|
||||
CardViewArrayItemComponent
|
||||
CardViewArrayItemComponent,
|
||||
SelectFilterInputComponent
|
||||
],
|
||||
exports: [
|
||||
CardViewComponent,
|
||||
@@ -88,7 +90,8 @@ import { CardViewArrayItemComponent } from './components/card-view-arrayitem/car
|
||||
CardViewTextItemComponent,
|
||||
CardViewSelectItemComponent,
|
||||
CardViewKeyValuePairsItemComponent,
|
||||
CardViewArrayItemComponent
|
||||
CardViewArrayItemComponent,
|
||||
SelectFilterInputComponent
|
||||
]
|
||||
})
|
||||
export class CardViewModule {}
|
||||
|
Reference in New Issue
Block a user