nuxeo-development-framework 4.0.7 → 4.0.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 -44
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.js +2 -2
- package/esm2015/lib/components/vocabulary/services/vocabulary-api.service.js +14 -13
- package/esm2015/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.js +18 -8
- package/esm2015/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.js +7 -8
- package/esm2015/lib/shared/components/nuxeo-dialog/nuxeo.dialog.js +22 -23
- package/fesm2015/nuxeo-development-framework.js +49 -40
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/vocabulary/services/vocabulary-api.service.d.ts +6 -5
- package/lib/components/vocabulary/translated-vocabulary-select/translated-vocabulary-select.component.d.ts +2 -1
- package/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.d.ts +3 -3
- package/lib/shared/components/nuxeo-dialog/nuxeo.dialog.d.ts +5 -5
- package/package.json +1 -1
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { NuxeoService } from '../../../core/services/nuxeo/nuxeo.service';
|
|
4
4
|
import { opType } from '../interfaces/op-type.interface';
|
|
5
|
+
import { BaseService } from '../../../shared/services/base/base.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class VocabularyApiService {
|
|
7
|
+
export declare class VocabularyApiService extends BaseService {
|
|
7
8
|
private nuxeoService;
|
|
8
|
-
private
|
|
9
|
-
private environment;
|
|
9
|
+
private injector;
|
|
10
10
|
vocabular: {};
|
|
11
|
-
constructor(nuxeoService: NuxeoService,
|
|
11
|
+
constructor(nuxeoService: NuxeoService, injector: Injector);
|
|
12
12
|
getVocabularyList(listName: any): Observable<any>;
|
|
13
13
|
getVocabularyListByFilters(listName: any, params?: {}, filter?: {}, fullText?: any): Observable<any>;
|
|
14
14
|
actualGetVocabularyList(listName: any, extraParams?: {}): Observable<any>;
|
|
15
15
|
vocabularyOperations(opName: opType, body: any): Observable<unknown>;
|
|
16
|
+
getVocListByVocName(vocName: any): Observable<any>;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<VocabularyApiService, never>;
|
|
17
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<VocabularyApiService>;
|
|
18
19
|
}
|
|
@@ -45,6 +45,7 @@ export declare class TranslatedVocabularySelectComponent implements OnChanges, O
|
|
|
45
45
|
loading: boolean;
|
|
46
46
|
mapingResponse: boolean;
|
|
47
47
|
params: {};
|
|
48
|
+
getByDirectorySuggestion: boolean;
|
|
48
49
|
/** event emitted with selected items */
|
|
49
50
|
onSelectItems: EventEmitter<any>;
|
|
50
51
|
bindLabel: any;
|
|
@@ -76,5 +77,5 @@ export declare class TranslatedVocabularySelectComponent implements OnChanges, O
|
|
|
76
77
|
reset(): void;
|
|
77
78
|
ngOnDestroy(): void;
|
|
78
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<TranslatedVocabularySelectComponent, [null, null, null, { optional: true; self: true; }]>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TranslatedVocabularySelectComponent, "app-translated-vocabulary-select", never, { "label": "label"; "bindValue": "bindValue"; "arbBindLabel": "arbBindLabel"; "engBindLabel": "engBindLabel"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "closeOnSelect": "closeOnSelect"; "hideSelectedItems": "hideSelectedItems"; "disabled": "disabled"; "clear": "clear"; "filter": "filter"; "useFilter": "useFilter"; "vocbularyId": "vocbularyId"; "mapingResponse": "mapingResponse"; "params": "params"; }, { "onSelectItems": "onSelectItems"; }, never, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TranslatedVocabularySelectComponent, "app-translated-vocabulary-select", never, { "label": "label"; "bindValue": "bindValue"; "arbBindLabel": "arbBindLabel"; "engBindLabel": "engBindLabel"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "closeOnSelect": "closeOnSelect"; "hideSelectedItems": "hideSelectedItems"; "disabled": "disabled"; "clear": "clear"; "filter": "filter"; "useFilter": "useFilter"; "vocbularyId": "vocbularyId"; "mapingResponse": "mapingResponse"; "params": "params"; "getByDirectorySuggestion": "getByDirectorySuggestion"; }, { "onSelectItems": "onSelectItems"; }, never, never>;
|
|
80
81
|
}
|
package/lib/shared/components/nuxeo-dialog/confirmation/ndf-confirmation-dialog.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Injector } from
|
|
2
|
-
import { ConfirmationDialogConfig } from
|
|
3
|
-
import { BaseDialogComponent } from
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { ConfirmationDialogConfig } from '../models/confirm-options.model';
|
|
3
|
+
import { BaseDialogComponent } from '../../base/base-dialog.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NdfConfirmationDialogComponent extends BaseDialogComponent<NdfConfirmationDialogComponent, ConfirmationDialogConfig, boolean> {
|
|
6
6
|
constructor(injector: Injector);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ElementRef, Injector } from
|
|
2
|
-
import { MatDialogRef } from
|
|
3
|
-
import { BaseComponent } from
|
|
4
|
-
import { DialogActionType } from
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { BaseComponent } from '../../components/base';
|
|
4
|
+
import { DialogActionType } from './models/dialog-option.model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class NdfNuxeoDialog<TData = any> extends BaseComponent {
|
|
7
7
|
dialogTitle: string;
|
|
8
8
|
subTitle: string;
|
|
9
|
-
loaderMode:
|
|
9
|
+
loaderMode: 'spinner' | 'progressBar';
|
|
10
10
|
contentTemplate: any;
|
|
11
11
|
actionsTemplate: any;
|
|
12
12
|
dialogRef: MatDialogRef<NdfNuxeoDialog>;
|