nuxeo-development-framework 4.4.3 → 4.4.5

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.
@@ -59,6 +59,7 @@ export declare class DynamicFormDepartmentComponent implements ControlValueAcces
59
59
  onSelecting: EventEmitter<any>;
60
60
  /** emitted when action is clicked */
61
61
  actionClicked: EventEmitter<any>;
62
+ onDataLoad: EventEmitter<any>;
62
63
  loading: boolean;
63
64
  selection: any;
64
65
  arabic: boolean;
@@ -82,5 +83,5 @@ export declare class DynamicFormDepartmentComponent implements ControlValueAcces
82
83
  hasErrors(): boolean;
83
84
  onAction(e: any): void;
84
85
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormDepartmentComponent, [null, null, { optional: true; self: true; }]>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormDepartmentComponent, "app-dynamic-form-department", never, { "treeview": "treeview"; "treeViewAsFormControl": "treeViewAsFormControl"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "label": "label"; "defaultSelect": "defaultSelect"; "displayDepTypee": "displayDepTypee"; "displayIsAllowRecExternal": "displayIsAllowRecExternal"; "pp_departmentNestedTree": "pp_departmentNestedTree"; "pp_departmentTree": "pp_departmentTree"; "customPrefix": "customPrefix"; "useCustomAddEditAction": "useCustomAddEditAction"; "customParentProperty": "customParentProperty"; "customParams": "customParams"; "disabled": "disabled"; "nodesExpandedByDefault": "nodesExpandedByDefault"; "fixedParentNode": "fixedParentNode"; }, { "onSelecting": "onSelecting"; "actionClicked": "actionClicked"; }, never, never>;
86
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormDepartmentComponent, "app-dynamic-form-department", never, { "treeview": "treeview"; "treeViewAsFormControl": "treeViewAsFormControl"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "label": "label"; "defaultSelect": "defaultSelect"; "displayDepTypee": "displayDepTypee"; "displayIsAllowRecExternal": "displayIsAllowRecExternal"; "pp_departmentNestedTree": "pp_departmentNestedTree"; "pp_departmentTree": "pp_departmentTree"; "customPrefix": "customPrefix"; "useCustomAddEditAction": "useCustomAddEditAction"; "customParentProperty": "customParentProperty"; "customParams": "customParams"; "disabled": "disabled"; "nodesExpandedByDefault": "nodesExpandedByDefault"; "fixedParentNode": "fixedParentNode"; }, { "onSelecting": "onSelecting"; "actionClicked": "actionClicked"; "onDataLoad": "onDataLoad"; }, never, never>;
86
87
  }
@@ -1,11 +1,11 @@
1
- import { EventEmitter, Injector, OnInit, TemplateRef } from '@angular/core';
2
- import { DxFormComponent } from 'devextreme-angular';
3
- import { Observable, Subject } from 'rxjs';
4
- import { CustomToastrService } from '../../../custom-toastr/services/custom-toastr.service';
5
- import { FileManagerService } from '../../../../shared-services/file-manager.service';
6
- import { BaseComponent } from '../../../../shared/components/base/base.component';
7
- import { NuxeoDialogService } from '../../../../shared/components/nuxeo-dialog/services/nuxeo-dialog.service';
8
- import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
1
+ import { EventEmitter, Injector, OnInit, TemplateRef } from "@angular/core";
2
+ import { DxFormComponent } from "devextreme-angular";
3
+ import { Observable, Subject } from "rxjs";
4
+ import { CustomToastrService } from "../../../custom-toastr/services/custom-toastr.service";
5
+ import { FileManagerService } from "../../../../shared-services/file-manager.service";
6
+ import { BaseComponent } from "../../../../shared/components/base/base.component";
7
+ import { NuxeoDialogService } from "../../../../shared/components/nuxeo-dialog/services/nuxeo-dialog.service";
8
+ import { DialogActionType } from "../../../../shared/components/nuxeo-dialog/models/dialog-option.model";
9
9
  import * as i0 from "@angular/core";
10
10
  export declare class AddToCollectionComponent extends BaseComponent implements OnInit {
11
11
  private fileManagerService;
@@ -14,6 +14,9 @@ export declare class AddToCollectionComponent extends BaseComponent implements O
14
14
  form: DxFormComponent;
15
15
  contentTemplate: TemplateRef<any>;
16
16
  actionsTemplate: TemplateRef<any>;
17
+ createOperation: string;
18
+ addOperation: string;
19
+ getCollectionPP: string;
17
20
  set visible(value: any);
18
21
  get visible(): any;
19
22
  visibleChange: EventEmitter<any>;
@@ -33,5 +36,5 @@ export declare class AddToCollectionComponent extends BaseComponent implements O
33
36
  loadItems(): void;
34
37
  onFormCollectionSubmit: DialogActionType;
35
38
  static ɵfac: i0.ɵɵFactoryDeclaration<AddToCollectionComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<AddToCollectionComponent, "app-add-to-collection", never, { "visible": "visible"; "rtlEnabled": "rtlEnabled"; "selectedItems": "selectedItems"; }, { "visibleChange": "visibleChange"; }, never, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddToCollectionComponent, "app-add-to-collection", never, { "createOperation": "createOperation"; "addOperation": "addOperation"; "getCollectionPP": "getCollectionPP"; "visible": "visible"; "rtlEnabled": "rtlEnabled"; "selectedItems": "selectedItems"; }, { "visibleChange": "visibleChange"; }, never, never>;
37
40
  }
@@ -11,6 +11,7 @@ export declare class SelectUsersByDepartmentsComponent extends BaseComponent imp
11
11
  userLabel: string;
12
12
  allowMultipleUsers: boolean;
13
13
  formChanged: EventEmitter<any>;
14
+ onDataLoad: EventEmitter<any>;
14
15
  fetchDepUsersByCustomApi: boolean;
15
16
  set fetchedUsers(res: Record<string, any>[]);
16
17
  depUsers: Record<string, any>[];
@@ -28,5 +29,5 @@ export declare class SelectUsersByDepartmentsComponent extends BaseComponent imp
28
29
  getDepMembers(DepId: any): void;
29
30
  onSetUser(): void;
30
31
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectUsersByDepartmentsComponent, [null, { optional: true; self: true; }, null]>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectUsersByDepartmentsComponent, "app-select-users-by-departments", never, { "display": "display"; "depLabel": "depLabel"; "userLabel": "userLabel"; "allowMultipleUsers": "allowMultipleUsers"; "fetchDepUsersByCustomApi": "fetchDepUsersByCustomApi"; "fetchedUsers": "fetchedUsers"; }, { "formChanged": "formChanged"; }, never, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectUsersByDepartmentsComponent, "app-select-users-by-departments", never, { "display": "display"; "depLabel": "depLabel"; "userLabel": "userLabel"; "allowMultipleUsers": "allowMultipleUsers"; "fetchDepUsersByCustomApi": "fetchDepUsersByCustomApi"; "fetchedUsers": "fetchedUsers"; }, { "formChanged": "formChanged"; "onDataLoad": "onDataLoad"; }, never, never>;
32
33
  }
@@ -21,4 +21,5 @@ export interface ApiResponseModel<TEntry extends Record<string, any> = EntryMode
21
21
  pageCount: number;
22
22
  quickFilters?: QuickFilter[];
23
23
  entries: TEntry[];
24
+ aggregations?: Record<string, any>;
24
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "4.4.3",
3
+ "version": "4.4.5",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",