nuxeo-development-framework 5.6.6 → 5.6.8
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 +35 -14
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +13 -9
- package/esm2015/lib/components/ndf-config-editor/containers/ndf-config-editor/ndf-config-editor.component.js +6 -1
- package/esm2015/lib/components/ndf-filters/base/base-checkbox-radio.component.js +2 -1
- package/esm2015/lib/components/ndf-filters/components/aggregation-checkbox/aggregation-checkbox.component.js +2 -2
- package/esm2015/lib/components/ndf-filters/custom-components/aggregation-group/aggregation-group.component.js +12 -2
- package/esm2015/lib/components/reports/ndf-reports/containers/ndf-reports/ndf-reports.component.js +3 -3
- package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
- package/esm2015/lib/shared/components/nuxeo-dialog/models/dialog-option.model.js +1 -1
- package/esm2015/lib/shared/components/nuxeo-dialog/services/nuxeo-dialog.service.js +3 -2
- package/fesm2015/nuxeo-development-framework.js +34 -13
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.d.ts +1 -0
- package/lib/components/ndf-filters/custom-components/aggregation-group/aggregation-group.component.d.ts +1 -0
- package/lib/shared/components/nuxeo-dialog/models/dialog-option.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -83,6 +83,7 @@ export declare class DynamicFormSelectUsersComponent implements OnChanges, OnDes
|
|
|
83
83
|
getCtsUsers(deptTitle: any): Observable<any>;
|
|
84
84
|
getUsersSuggestions(term: any): Observable<any>;
|
|
85
85
|
private constructUserArray;
|
|
86
|
+
handleWrittedValue(users: Record<string, any>[]): void;
|
|
86
87
|
private insertFUllName;
|
|
87
88
|
private filterUsers;
|
|
88
89
|
getUsersUnderCertainGroup(): void;
|
|
@@ -21,6 +21,7 @@ export declare class AggregationGroupComponent extends BaseCustomField<'aggregat
|
|
|
21
21
|
readonly predicate: "predicate";
|
|
22
22
|
readonly custom: "custom";
|
|
23
23
|
};
|
|
24
|
+
private _resetFormArray;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<AggregationGroupComponent, never>;
|
|
25
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<AggregationGroupComponent, "app-aggregation-group", never, {}, {}, never, never>;
|
|
26
27
|
}
|