nuxeo-development-framework 5.8.8 → 5.8.9
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/nuxeo-development-framework.umd.js +53 -18
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/documents/services/documents.service.js +51 -18
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +5 -2
- package/fesm2015/nuxeo-development-framework.js +53 -18
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -62,6 +62,7 @@ export declare class DynamicSearchComponent implements OnInit, OnChanges {
|
|
|
62
62
|
sortingBy?: {};
|
|
63
63
|
fullTextParamName: string;
|
|
64
64
|
filter: any;
|
|
65
|
+
higlightUnread: boolean;
|
|
65
66
|
suggesterApi: any;
|
|
66
67
|
onRowSelected: (row: any) => void;
|
|
67
68
|
/** used to emit any actions to outside */
|
|
@@ -99,5 +100,5 @@ export declare class DynamicSearchComponent implements OnInit, OnChanges {
|
|
|
99
100
|
performAction(action: any): void;
|
|
100
101
|
search(term: string): Observable<any>;
|
|
101
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicSearchComponent, never>;
|
|
102
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicSearchComponent, "cts-dynamic-search", never, { "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "headers": "headers"; "fields": "fields"; "pageProvider": "pageProvider"; "pageSize": "pageSize"; "sortingBy": "sortingBy"; "fullTextParamName": "fullTextParamName"; "filter": "filter"; "suggesterApi": "suggesterApi"; "onRowSelected": "onRowSelected"; "sortingArray": "sortingArray"; "customResponsiveStyle": "customResponsiveStyle"; "openCloseFilterFromOutside": "openCloseFilterFromOutside"; "theme": "theme"; }, { "actionOnRow": "actionOnRow"; }, never, never>;
|
|
103
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicSearchComponent, "cts-dynamic-search", never, { "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "headers": "headers"; "fields": "fields"; "pageProvider": "pageProvider"; "pageSize": "pageSize"; "sortingBy": "sortingBy"; "fullTextParamName": "fullTextParamName"; "filter": "filter"; "higlightUnread": "higlightUnread"; "suggesterApi": "suggesterApi"; "onRowSelected": "onRowSelected"; "sortingArray": "sortingArray"; "customResponsiveStyle": "customResponsiveStyle"; "openCloseFilterFromOutside": "openCloseFilterFromOutside"; "theme": "theme"; }, { "actionOnRow": "actionOnRow"; }, never, never>;
|
|
103
104
|
}
|