nuxeo-development-framework 1.6.8 → 1.7.2
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 +73 -14
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-reply/correspondence-relation-reply.component.js +30 -11
- package/esm2015/lib/components/correspondence-relation/services/correspondence-realation.service.js +39 -1
- package/esm2015/lib/components/hijri-gregorian-datepicker/services/date-helper.service.js +2 -2
- package/esm2015/lib/components/table/table/table.component.js +2 -2
- package/esm2015/lib/shared/components/search-autocomplete/search-autocomplete.component.js +5 -3
- package/fesm2015/nuxeo-development-framework.js +73 -14
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/correspondence-relation/services/correspondence-realation.service.d.ts +2 -0
- package/lib/shared/components/search-autocomplete/search-autocomplete.component.d.ts +3 -1
- package/package.json +1 -1
package/lib/components/correspondence-relation/services/correspondence-realation.service.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ export declare class CorrespondenceRelationService {
|
|
|
19
19
|
create_Named_Relation(corr_id: string, relationname: string, targets: []): Observable<any>;
|
|
20
20
|
Delete_Named_Relation(corr_id: string, relationname: string, target: string): Observable<any>;
|
|
21
21
|
search(val: string, query?: any): Observable<any>;
|
|
22
|
+
getCorrespondeceRelation(id: any): Observable<unknown>;
|
|
23
|
+
getCorrespondeceRelationRevers(id: any): Observable<unknown>;
|
|
22
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CorrespondenceRelationService, never>;
|
|
23
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<CorrespondenceRelationService>;
|
|
24
26
|
}
|
|
@@ -19,6 +19,8 @@ export declare class SearchAutocompleteComponent implements ControlValueAccessor
|
|
|
19
19
|
label: any;
|
|
20
20
|
/** id of correspondance that should be exluded */
|
|
21
21
|
correspondanceId: any;
|
|
22
|
+
/** direction to determin direction of corespond to search in it */
|
|
23
|
+
direction: any;
|
|
22
24
|
/** event emitter that will fire with selected item info when an item is selected */
|
|
23
25
|
onSelecting: EventEmitter<any>;
|
|
24
26
|
propagateChange: any;
|
|
@@ -45,5 +47,5 @@ export declare class SearchAutocompleteComponent implements ControlValueAccessor
|
|
|
45
47
|
onSearchInputChange(val: string): void;
|
|
46
48
|
close(): void;
|
|
47
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchAutocompleteComponent, [null, { optional: true; self: true; }]>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchAutocompleteComponent, "cts-search-autocomplete", never, { "placeholder": "placeholder"; "label": "label"; "correspondanceId": "correspondanceId"; }, { "onSelecting": "onSelecting"; }, never, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchAutocompleteComponent, "cts-search-autocomplete", never, { "placeholder": "placeholder"; "label": "label"; "correspondanceId": "correspondanceId"; "direction": "direction"; }, { "onSelecting": "onSelecting"; }, never, never>;
|
|
49
51
|
}
|