nuxeo-development-framework 3.8.9 → 3.9.1
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 +38 -23
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/activities-log/activities-log/activities-log.component.js +1 -1
- package/esm2015/lib/components/dynamic-form/components/dynamic-form-select-users/dynamic-form-select-users.component.js +14 -3
- package/esm2015/lib/components/dynamic-form/components/form-wrappers/user-selector-wrapper/user-selector-wrapper.component.js +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +7 -4
- package/esm2015/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.js +2 -2
- package/esm2015/lib/components/latest-activity/components/activity-line/activity-line.component.js +9 -16
- package/esm2015/lib/components/latest-activity/components/latest-activity/latest-activity.component.js +4 -2
- package/esm2015/lib/components/latest-activity/components/single-activity/single-activity.component.js +6 -2
- package/esm2015/lib/components/viewer-log/components/viewer-log/viewer-log.component.js +4 -2
- package/fesm2015/nuxeo-development-framework.js +38 -22
- 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 +5 -1
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +2 -0
- package/lib/components/dynamic-tabs/dynamic-tabs/dynamic-tabs.component.d.ts +1 -1
- package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts +5 -12
- package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts +2 -1
- package/lib/components/latest-activity/components/single-activity/single-activity.component.d.ts +3 -1
- package/lib/components/viewer-log/components/viewer-log/viewer-log.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export declare class DynamicFormSelectUsersComponent implements OnChanges, OnDes
|
|
|
26
26
|
bindValue: any;
|
|
27
27
|
/** Bind label to object property */
|
|
28
28
|
bindLabel: any;
|
|
29
|
+
arabicBindLabel: any;
|
|
29
30
|
/** Placeholder text */
|
|
30
31
|
placeholder: any;
|
|
31
32
|
/** Can select multiple */
|
|
@@ -44,6 +45,8 @@ export declare class DynamicFormSelectUsersComponent implements OnChanges, OnDes
|
|
|
44
45
|
disabled: boolean;
|
|
45
46
|
/** List of usernames that should be exluded */
|
|
46
47
|
filter: string[];
|
|
48
|
+
/** flage to indicate if use full arabic name or not beside fullName */
|
|
49
|
+
useArabicName: boolean;
|
|
47
50
|
/** event emitted when item is selected */
|
|
48
51
|
onSelectItems: EventEmitter<any>;
|
|
49
52
|
loading: boolean;
|
|
@@ -54,6 +57,7 @@ export declare class DynamicFormSelectUsersComponent implements OnChanges, OnDes
|
|
|
54
57
|
suffix: any;
|
|
55
58
|
propagateChange: any;
|
|
56
59
|
validateFn: any;
|
|
60
|
+
isArabic: boolean;
|
|
57
61
|
onTouched: any;
|
|
58
62
|
pageIndex: number;
|
|
59
63
|
isNextPageAvailable: boolean;
|
|
@@ -84,5 +88,5 @@ export declare class DynamicFormSelectUsersComponent implements OnChanges, OnDes
|
|
|
84
88
|
reset(): void;
|
|
85
89
|
ngOnDestroy(): void;
|
|
86
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormSelectUsersComponent, [null, null, null, { optional: true; self: true; }]>;
|
|
87
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormSelectUsersComponent, "cts-dynamic-form-select-users", never, { "deptTitle": "deptTitle"; "groupName": "groupName"; "label": "label"; "bindValue": "bindValue"; "bindLabel": "bindLabel"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "closeOnSelect": "closeOnSelect"; "hideSelectedItems": "hideSelectedItems"; "preSelectedValues": "preSelectedValues"; "usePreSelectedValue": "usePreSelectedValue"; "disabled": "disabled"; "filter": "filter"; }, { "onSelectItems": "onSelectItems"; }, never, never>;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormSelectUsersComponent, "cts-dynamic-form-select-users", never, { "deptTitle": "deptTitle"; "groupName": "groupName"; "label": "label"; "bindValue": "bindValue"; "bindLabel": "bindLabel"; "arabicBindLabel": "arabicBindLabel"; "placeholder": "placeholder"; "multiple": "multiple"; "searchable": "searchable"; "closeOnSelect": "closeOnSelect"; "hideSelectedItems": "hideSelectedItems"; "preSelectedValues": "preSelectedValues"; "usePreSelectedValue": "usePreSelectedValue"; "disabled": "disabled"; "filter": "filter"; "useArabicName": "useArabicName"; }, { "onSelectItems": "onSelectItems"; }, never, never>;
|
|
88
92
|
}
|
|
@@ -6,6 +6,7 @@ import { EvaluatorsService } from '../../../directive/permissions/evaluators.ser
|
|
|
6
6
|
import { Observable } from 'rxjs';
|
|
7
7
|
import { NuxeoService } from '../../../core/services/nuxeo/nuxeo.service';
|
|
8
8
|
import { GlobalAdminService } from '../../../shared-services/global-admin.service';
|
|
9
|
+
import { DynamicTableComponent } from '../../dynamic-table/dynamic-table/dynamic-table.component';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* Dynamic search component uses [Dynamic Table]{@link DynamicTableComponent} & [Dynamic Filter]{@link DynamicFilterComponent} internally,
|
|
@@ -40,6 +41,7 @@ export declare class DynamicSearchComponent implements OnInit, OnChanges {
|
|
|
40
41
|
breakpointObserver: BreakpointObserver;
|
|
41
42
|
text: string;
|
|
42
43
|
aggregations: any;
|
|
44
|
+
dynamicTable: DynamicTableComponent;
|
|
43
45
|
/** Array of columns */
|
|
44
46
|
columns: any;
|
|
45
47
|
/** Array of columns on smaller screens */
|
|
@@ -9,5 +9,5 @@ export declare class DynamicTabsComponent implements OnInit, OnChanges {
|
|
|
9
9
|
ngOnChanges(changes: SimpleChanges): void;
|
|
10
10
|
ngOnInit(): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTabsComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTabsComponent, "app-dynamic-tabs", never, { "tabs": "tabs"; "selectedIndex": "selectedIndex"; }, {}, never, ["*"]>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTabsComponent, "app-dynamic-tabs", never, { "tabs": "tabs"; "selectedIndex": "selectedIndex"; }, {}, never, ["*", "*"]>;
|
|
13
13
|
}
|
package/lib/components/latest-activity/components/activity-line/activity-line.component.d.ts
CHANGED
|
@@ -1,26 +1,19 @@
|
|
|
1
|
-
import { ElementRef,
|
|
2
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
1
|
+
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
3
2
|
import { Router } from '@angular/router';
|
|
4
|
-
import { Subscription } from 'rxjs';
|
|
5
|
-
import { TranslationService } from '../../../../core/services/translation/translation.service';
|
|
6
3
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class ActivityLineComponent implements OnInit
|
|
4
|
+
export declare class ActivityLineComponent implements OnInit {
|
|
8
5
|
private element;
|
|
9
|
-
private translate;
|
|
10
6
|
private router;
|
|
11
7
|
private renderer;
|
|
12
|
-
private translationService;
|
|
13
8
|
item: any;
|
|
14
9
|
documentTitle: any;
|
|
15
10
|
newLogActor: any;
|
|
16
|
-
myParent: any;
|
|
17
|
-
langSubscription: Subscription;
|
|
18
11
|
isArabic: boolean;
|
|
19
|
-
|
|
12
|
+
myParent: any;
|
|
13
|
+
constructor(element: ElementRef, router: Router, renderer: Renderer2);
|
|
20
14
|
ngAfterViewInit(): void;
|
|
21
15
|
ngOnInit(): void;
|
|
22
16
|
navigateto(link: any): void;
|
|
23
|
-
ngOnDestroy(): void;
|
|
24
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityLineComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityLineComponent, "cts-activity-line", never, { "item": "item"; "documentTitle": "documentTitle"; "newLogActor": "newLogActor"; }, {}, never, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivityLineComponent, "cts-activity-line", never, { "item": "item"; "documentTitle": "documentTitle"; "newLogActor": "newLogActor"; "isArabic": "isArabic"; }, {}, never, never>;
|
|
26
19
|
}
|
package/lib/components/latest-activity/components/latest-activity/latest-activity.component.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare class LatestActivityComponent implements OnInit {
|
|
|
5
5
|
private activityLogSer;
|
|
6
6
|
documentId: any;
|
|
7
7
|
documentTitle: any;
|
|
8
|
+
isArabic: any;
|
|
8
9
|
newLogActor: any;
|
|
9
10
|
success: EventEmitter<any>;
|
|
10
11
|
p: number;
|
|
@@ -18,5 +19,5 @@ export declare class LatestActivityComponent implements OnInit {
|
|
|
18
19
|
getActivities(fromInifintScroll: any): void;
|
|
19
20
|
onScroll(): void;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<LatestActivityComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LatestActivityComponent, "cts-latest-activity", never, { "documentId": "documentId"; "documentTitle": "documentTitle"; "newLogActor": "newLogActor"; }, { "success": "success"; }, never, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LatestActivityComponent, "cts-latest-activity", never, { "documentId": "documentId"; "documentTitle": "documentTitle"; "isArabic": "isArabic"; "newLogActor": "newLogActor"; }, { "success": "success"; }, never, never>;
|
|
22
23
|
}
|
package/lib/components/latest-activity/components/single-activity/single-activity.component.d.ts
CHANGED
|
@@ -5,9 +5,11 @@ export declare class SingleActivityComponent implements OnInit {
|
|
|
5
5
|
private configService;
|
|
6
6
|
item: any;
|
|
7
7
|
documentTitle: any;
|
|
8
|
+
newLogActor: any;
|
|
9
|
+
isArabic: any;
|
|
8
10
|
stateIcons: {};
|
|
9
11
|
constructor(configService: AppConfigService);
|
|
10
12
|
ngOnInit(): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SingleActivityComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SingleActivityComponent, "cts-single-activity", never, { "item": "item"; "documentTitle": "documentTitle"; }, {}, never, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SingleActivityComponent, "cts-single-activity", never, { "item": "item"; "documentTitle": "documentTitle"; "newLogActor": "newLogActor"; "isArabic": "isArabic"; }, {}, never, never>;
|
|
13
15
|
}
|
|
@@ -4,10 +4,11 @@ export declare class ViewerLogComponent implements OnInit {
|
|
|
4
4
|
loading: boolean;
|
|
5
5
|
correspondence: any;
|
|
6
6
|
newLogActor: boolean;
|
|
7
|
+
isArabic: any;
|
|
7
8
|
constructor();
|
|
8
9
|
logSuccess(e: any): void;
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
ngOnChanges(changes: SimpleChanges): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewerLogComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewerLogComponent, "cts-viewer-log", never, { "correspondence": "correspondence"; "newLogActor": "newLogActor"; }, {}, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewerLogComponent, "cts-viewer-log", never, { "correspondence": "correspondence"; "newLogActor": "newLogActor"; "isArabic": "isArabic"; }, {}, never, never>;
|
|
13
14
|
}
|