nuxeo-development-framework 4.2.0 → 4.2.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 +1619 -1231
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/charts/chart.const.js +3 -0
- package/esm2015/lib/components/charts/chart.token.js +3 -0
- package/esm2015/lib/components/charts/charts.module.js +19 -0
- package/esm2015/lib/components/charts/components/base-chart.component.js +44 -0
- package/esm2015/lib/components/charts/components/chart.component.js +131 -0
- package/esm2015/lib/components/charts/components/data-chart.component.js +164 -0
- package/esm2015/lib/components/charts/components/index.js +4 -0
- package/esm2015/lib/components/charts/defaults/bar.js +18 -0
- package/esm2015/lib/components/charts/defaults/doughnut.js +18 -0
- package/esm2015/lib/components/charts/defaults/index.js +5 -0
- package/esm2015/lib/components/charts/defaults/line.js +36 -0
- package/esm2015/lib/components/charts/defaults/pie.js +20 -0
- package/esm2015/lib/components/charts/index.js +9 -0
- package/esm2015/lib/components/charts/models/index.js +5 -0
- package/esm2015/lib/components/charts/models/options.js +2 -0
- package/esm2015/lib/components/charts/models/plugins-options.js +2 -0
- package/esm2015/lib/components/charts/models/response.js +2 -0
- package/esm2015/lib/components/charts/models/statistic-request-config.js +2 -0
- package/esm2015/lib/components/charts/plugins/doughnut-center-text.js +21 -0
- package/esm2015/lib/components/charts/plugins/doughnut-empty-state.js +30 -0
- package/esm2015/lib/components/charts/plugins/index.js +3 -0
- package/esm2015/lib/components/charts/services/index.js +2 -0
- package/esm2015/lib/components/charts/services/statistic.service.js +17 -0
- package/esm2015/lib/components/charts/utility/colors.js +79 -0
- package/esm2015/lib/components/charts/utility/common.js +7 -0
- package/esm2015/lib/components/charts/utility/index.js +3 -0
- package/esm2015/lib/components/comments/comments.module.js +9 -5
- package/esm2015/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.js +28 -34
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation/correspondence-relation.component.js +11 -10
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.js +41 -41
- package/esm2015/lib/components/correspondence-relation/components/correspondence-relation-list/correspondence-relation-list.component.js +11 -10
- package/esm2015/lib/components/correspondence-relation/correspondence-relation.module.js +9 -5
- package/esm2015/lib/components/correspondence-relation/services/correspondence-realation.service.js +32 -24
- package/esm2015/lib/components/documents/components/attachments-list/attachments-list.component.js +11 -9
- package/esm2015/lib/components/documents/components/document-list/documents-list.component.js +12 -14
- package/esm2015/lib/components/documents/documents.module.js +2 -6
- package/esm2015/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.js +45 -40
- package/esm2015/lib/components/dynamic-chart/dynamic-chart.module.js +21 -17
- package/esm2015/lib/components/dynamic-chart/services/chart-data.service.js +98 -92
- package/esm2015/lib/components/dynamic-fields-renderer/dynamic-fields-renderer/dynamic-fields-renderer.component.js +2 -2
- package/esm2015/lib/components/file-manger/components/creation-type/creation-type.component.js +14 -12
- package/esm2015/lib/components/file-manger/components/loan-request/loan-request.component.js +62 -36
- package/esm2015/lib/components/file-manger/components/template-modal/template-modal.component.js +15 -11
- package/esm2015/lib/components/file-manger/components/transfer-doc/transfer-doc.component.js +53 -23
- package/esm2015/lib/components/file-manger/file-manager.abstract.js +252 -252
- package/esm2015/lib/components/notifications/components/base-notifications.component.js +2 -16
- package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +2 -2
- package/esm2015/public-api.js +4 -5
- package/fesm2015/nuxeo-development-framework.js +1431 -1038
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/charts/chart.const.d.ts +2 -0
- package/lib/components/charts/chart.token.d.ts +8 -0
- package/lib/components/charts/charts.module.d.ts +9 -0
- package/lib/components/charts/components/base-chart.component.d.ts +21 -0
- package/lib/components/charts/components/chart.component.d.ts +28 -0
- package/lib/components/charts/components/data-chart.component.d.ts +32 -0
- package/lib/components/charts/components/index.d.ts +3 -0
- package/lib/components/charts/defaults/bar.d.ts +2 -0
- package/lib/components/charts/defaults/doughnut.d.ts +2 -0
- package/lib/components/charts/defaults/index.d.ts +4 -0
- package/lib/components/charts/defaults/line.d.ts +2 -0
- package/lib/components/charts/defaults/pie.d.ts +2 -0
- package/lib/components/charts/index.d.ts +8 -0
- package/lib/components/charts/models/index.d.ts +4 -0
- package/lib/components/charts/models/options.d.ts +11 -0
- package/lib/components/charts/models/plugins-options.d.ts +15 -0
- package/lib/components/charts/models/response.d.ts +5 -0
- package/lib/components/charts/models/statistic-request-config.d.ts +28 -0
- package/lib/components/charts/plugins/doughnut-center-text.d.ts +2 -0
- package/lib/components/charts/plugins/doughnut-empty-state.d.ts +2 -0
- package/lib/components/charts/plugins/index.d.ts +2 -0
- package/lib/components/charts/services/index.d.ts +1 -0
- package/lib/components/charts/services/statistic.service.d.ts +9 -0
- package/lib/components/charts/utility/colors.d.ts +11 -0
- package/lib/components/charts/utility/common.d.ts +4 -0
- package/lib/components/charts/utility/index.d.ts +2 -0
- package/lib/components/comments/comments.module.d.ts +2 -1
- package/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.d.ts +8 -5
- package/lib/components/correspondence-relation/components/correspondence-relation-create-form/correspondence-relation-create-form.component.d.ts +6 -4
- package/lib/components/correspondence-relation/correspondence-relation.module.d.ts +2 -1
- package/lib/components/documents/documents.module.d.ts +13 -14
- package/lib/components/dynamic-chart/dynamic-chart/dynamic-chart.component.d.ts +11 -10
- package/lib/components/dynamic-chart/dynamic-chart.module.d.ts +5 -6
- package/lib/components/file-manger/components/creation-type/creation-type.component.d.ts +6 -4
- package/lib/components/file-manger/components/loan-request/loan-request.component.d.ts +11 -5
- package/lib/components/file-manger/components/template-modal/template-modal.component.d.ts +4 -3
- package/lib/components/file-manger/components/transfer-doc/transfer-doc.component.d.ts +11 -4
- package/lib/components/file-manger/file-manager.abstract.d.ts +22 -22
- package/lib/components/notifications/components/base-notifications.component.d.ts +2 -8
- package/lib/components/notifications/components/notification-item/notification-item.component.d.ts +1 -1
- package/package.json +4 -5
- package/public-api.d.ts +3 -4
- package/esm2015/lib/components/confirm-caller/confirm-caller.dialog.js +0 -77
- package/esm2015/lib/components/confirm-caller/confirm-caller.module.js +0 -28
- package/esm2015/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.js +0 -29
- package/esm2015/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.js +0 -164
- package/lib/components/confirm-caller/confirm-caller.dialog.d.ts +0 -46
- package/lib/components/confirm-caller/confirm-caller.module.d.ts +0 -17
- package/lib/components/confirm-caller/confirm-dialog/confirm-dialog.component.d.ts +0 -12
- package/lib/components/dynamic-chart/dynamic-single-chart/dynamic-single-chart.component.d.ts +0 -33
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { Plugin } from 'chart.js';
|
|
3
|
+
export declare type ChartDefaultsOptions = {
|
|
4
|
+
globalPlugins?: Plugin[];
|
|
5
|
+
fontFamily?: string;
|
|
6
|
+
fontSize?: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const CHART_DEFAULTS_OPTIONS: InjectionToken<ChartDefaultsOptions>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/chart.component";
|
|
3
|
+
import * as i2 from "./components/data-chart.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
export declare class ChartsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartsModule, [typeof i1.ChartComponent, typeof i2.DataChartComponent], [typeof i3.CommonModule], [typeof i1.ChartComponent, typeof i2.DataChartComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChartsModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ChartType, Plugin } from 'chart.js';
|
|
3
|
+
import Chart from 'chart.js/auto';
|
|
4
|
+
import { DestroySubject } from '../../../shared/components';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare abstract class BaseChartComponent<TType extends ChartType = ChartType> extends DestroySubject {
|
|
7
|
+
type: TType;
|
|
8
|
+
plugins: Plugin<TType>[];
|
|
9
|
+
width: string | undefined;
|
|
10
|
+
height: string | undefined;
|
|
11
|
+
responsive: boolean;
|
|
12
|
+
legend: boolean;
|
|
13
|
+
fontFamily: string;
|
|
14
|
+
fontSize: number;
|
|
15
|
+
onReady: EventEmitter<Chart>;
|
|
16
|
+
protected _chart: Chart;
|
|
17
|
+
getChart(): Chart<keyof import("chart.js").ChartTypeRegistry, (number | [number, number] | import("chart.js").Point | import("chart.js").BubbleDataPoint)[], unknown>;
|
|
18
|
+
protected refresh(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseChartComponent<any>, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseChartComponent<any>, never, never, { "type": "type"; "plugins": "plugins"; "width": "width"; "height": "height"; "responsive": "responsive"; "legend": "legend"; "fontFamily": "fontFamily"; "fontSize": "fontSize"; }, { "onReady": "onReady"; }, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import { ChartData, ChartType } from 'chart.js';
|
|
3
|
+
import { ChartDefaultsOptions } from '../chart.token';
|
|
4
|
+
import { CustomChartOptions } from '../models';
|
|
5
|
+
import { BaseChartComponent } from './base-chart.component';
|
|
6
|
+
import 'chartjs-adapter-moment';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ChartComponent<TType extends ChartType = ChartType> extends BaseChartComponent<TType> implements AfterViewInit {
|
|
9
|
+
element: ElementRef;
|
|
10
|
+
protected _ngZone: NgZone;
|
|
11
|
+
protected _options: CustomChartOptions<TType>;
|
|
12
|
+
protected _data: ChartData<TType>;
|
|
13
|
+
get data(): ChartData<TType>;
|
|
14
|
+
set data(val: ChartData<TType>);
|
|
15
|
+
get options(): CustomChartOptions<TType>;
|
|
16
|
+
set options(val: CustomChartOptions<TType>);
|
|
17
|
+
constructor(element: ElementRef, _ngZone: NgZone, defaults: ChartDefaultsOptions);
|
|
18
|
+
getCanvas(): HTMLCanvasElement;
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
protected listenToWindowResize(): void;
|
|
21
|
+
protected initChart(): void;
|
|
22
|
+
protected reinitialize(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
private _setFontDefaults;
|
|
25
|
+
private _registerGlobalPlugins;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent<any>, [null, null, { optional: true; }]>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent<any>, "app-chart", never, { "data": "data"; "options": "options"; }, {}, never, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { ChartData, ChartDataset, ChartType, Color } from 'chart.js';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { CustomChartOptions, DataSourceConfig, DataSourceResult } from '../models';
|
|
6
|
+
import { StatisticService } from '../services';
|
|
7
|
+
import { BaseChartComponent } from './base-chart.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DataChartComponent<TType extends ChartType> extends BaseChartComponent<TType> implements OnInit {
|
|
10
|
+
private _translateService;
|
|
11
|
+
private _statisticService;
|
|
12
|
+
dataSource: DataSourceConfig<TType>;
|
|
13
|
+
options: CustomChartOptions<TType>;
|
|
14
|
+
dataset: Omit<ChartDataset<TType>, 'data'>;
|
|
15
|
+
translatePrefix: string;
|
|
16
|
+
colors: Color[];
|
|
17
|
+
bindValue: string;
|
|
18
|
+
transformData: (data: DataSourceResult<TType>[]) => ChartData<TType>;
|
|
19
|
+
onDataReady: EventEmitter<DataSourceResult<TType>[]>;
|
|
20
|
+
chartData$: Observable<ChartData>;
|
|
21
|
+
private readonly _defaultParams;
|
|
22
|
+
constructor(_translateService: TranslateService, _statisticService: StatisticService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
private _prepareChartData;
|
|
25
|
+
private _fetchStatistic;
|
|
26
|
+
private _getLabel;
|
|
27
|
+
private _getValue;
|
|
28
|
+
private _generateColors;
|
|
29
|
+
private _getMainColor;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataChartComponent<any>, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataChartComponent<any>, "app-data-chart", never, { "dataSource": "dataSource"; "options": "options"; "dataset": "dataset"; "translatePrefix": "translatePrefix"; "colors": "colors"; "bindValue": "bindValue"; "transformData": "transformData"; }, { "onDataReady": "onDataReady"; }, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './chart.const';
|
|
2
|
+
export * from './chart.token';
|
|
3
|
+
export * from './charts.module';
|
|
4
|
+
export * from './components';
|
|
5
|
+
export * as ChartDefaults from './defaults';
|
|
6
|
+
export * from './models';
|
|
7
|
+
export * as ChartPlugins from './plugins';
|
|
8
|
+
export * as ChartUtils from './utility';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChartOptions, ChartType, PluginOptionsByType } from 'chart.js';
|
|
2
|
+
import { DeepPartial } from 'chart.js/dist/types/utils';
|
|
3
|
+
import { EmptyDoughnutOptions, TextCenterOptions } from './plugins-options';
|
|
4
|
+
export declare type ChartPluginsOptions<TType extends ChartType> = PluginOptionsByType<TType> & {
|
|
5
|
+
centerText: TextCenterOptions;
|
|
6
|
+
emptyDoughnut: EmptyDoughnutOptions;
|
|
7
|
+
};
|
|
8
|
+
export interface CustomPluginChartOptions<TType extends ChartType> {
|
|
9
|
+
plugins: ChartPluginsOptions<TType>;
|
|
10
|
+
}
|
|
11
|
+
export declare type CustomChartOptions<TType extends ChartType = ChartType> = ChartOptions<TType> & DeepPartial<CustomPluginChartOptions<TType>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare type TextCenterOptions = {
|
|
2
|
+
font?: string;
|
|
3
|
+
color?: string;
|
|
4
|
+
text?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare type EmptyDoughnutOptions = {
|
|
7
|
+
radiusDecrease?: number;
|
|
8
|
+
lineWidth?: number;
|
|
9
|
+
color?: string;
|
|
10
|
+
backgroundColor?: string;
|
|
11
|
+
text?: string;
|
|
12
|
+
font?: string;
|
|
13
|
+
fontColor?: string;
|
|
14
|
+
showMessage?: boolean;
|
|
15
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ChartDataset, ChartType } from 'chart.js';
|
|
2
|
+
import { CustomChartOptions } from './options';
|
|
3
|
+
import { StatisticBucket } from './response';
|
|
4
|
+
export interface StatisticRequestConfig {
|
|
5
|
+
pageProvider: string;
|
|
6
|
+
headers?: Record<string, any>;
|
|
7
|
+
params?: Record<string, any>;
|
|
8
|
+
propertyPath: string;
|
|
9
|
+
bindLabel?: string;
|
|
10
|
+
bindValue?: string;
|
|
11
|
+
retryCount?: number;
|
|
12
|
+
transformData?: (data: any) => StatisticBucket[];
|
|
13
|
+
onError?: (error: Error) => void;
|
|
14
|
+
}
|
|
15
|
+
export declare type DataSourceConfig<T extends ChartType> = Array<{
|
|
16
|
+
label?: string;
|
|
17
|
+
colors?: string[];
|
|
18
|
+
config: StatisticRequestConfig[];
|
|
19
|
+
dataset?: Omit<ChartDataset<T>, 'data'>;
|
|
20
|
+
}>;
|
|
21
|
+
export declare type DataSourceResult<T extends ChartType> = {
|
|
22
|
+
results: StatisticBucket[];
|
|
23
|
+
meta: {
|
|
24
|
+
label: string;
|
|
25
|
+
colors?: string[];
|
|
26
|
+
dataset: CustomChartOptions<T>;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './statistic.service';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { NuxeoPagination } from '../../../shared/models';
|
|
2
|
+
import { BaseService } from '../../../shared/services';
|
|
3
|
+
import { StatisticRequestConfig } from '../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class StatisticService extends BaseService {
|
|
6
|
+
getStatistic({ pageProvider, headers, params, }: Pick<StatisticRequestConfig, 'pageProvider' | 'headers' | 'params'>): import("rxjs").Observable<NuxeoPagination<any>>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatisticService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StatisticService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare function transparentize(value: string, opacity: number): string;
|
|
2
|
+
export declare function colorToHex(color: any): any;
|
|
3
|
+
export declare function hexToRgb(hex: string): {
|
|
4
|
+
r: number;
|
|
5
|
+
g: number;
|
|
6
|
+
b: number;
|
|
7
|
+
};
|
|
8
|
+
export declare function rgbToHex(r: number, g: number, b: number): string;
|
|
9
|
+
export declare function createTint(color: string, amount: number): string;
|
|
10
|
+
export declare function createShade(color: string, amount: number): string;
|
|
11
|
+
export declare function createColorVariants(color: string, length: number, type?: 'tint' | 'shade', amount?: number): string[];
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ChartDataset, ChartType } from 'chart.js';
|
|
2
|
+
import { StatisticBucket } from '../models';
|
|
3
|
+
export declare function flatArray<T = StatisticBucket>(data: T[][]): T[];
|
|
4
|
+
export declare function isObject<T extends ChartType>(obj: any): obj is Partial<ChartDataset<T>>;
|
|
@@ -14,6 +14,7 @@ import * as i12 from "@angular/material/icon";
|
|
|
14
14
|
import * as i13 from "@angular/material/progress-spinner";
|
|
15
15
|
import * as i14 from "@angular/material/tooltip";
|
|
16
16
|
import * as i15 from "../../directive/directive.module";
|
|
17
|
+
import * as i16 from "../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
|
|
17
18
|
/**
|
|
18
19
|
* @title
|
|
19
20
|
* Comments Module
|
|
@@ -21,6 +22,6 @@ import * as i15 from "../../directive/directive.module";
|
|
|
21
22
|
*/
|
|
22
23
|
export declare class CommentsModule {
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsModule, never>;
|
|
24
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CommentsModule, [typeof i1.CommentsDashletComponent, typeof i2.CommentsListComponent, typeof i3.CommentItemComponent, typeof i4.EditDeleteModalComponent], [typeof i5.CommonModule, typeof i6.LibrarySharedModule, typeof i7.InfiniteScrollModule, typeof i8.FormsModule, typeof i9.CardModule, typeof i10.PipesModule, typeof i11.TranslateModule, typeof i12.MatIconModule, typeof i13.MatProgressSpinnerModule, typeof i14.MatTooltipModule, typeof i15.DirectiveModule, typeof i14.MatTooltipModule], [typeof i1.CommentsDashletComponent]>;
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CommentsModule, [typeof i1.CommentsDashletComponent, typeof i2.CommentsListComponent, typeof i3.CommentItemComponent, typeof i4.EditDeleteModalComponent], [typeof i5.CommonModule, typeof i6.LibrarySharedModule, typeof i7.InfiniteScrollModule, typeof i8.FormsModule, typeof i9.CardModule, typeof i10.PipesModule, typeof i11.TranslateModule, typeof i12.MatIconModule, typeof i13.MatProgressSpinnerModule, typeof i14.MatTooltipModule, typeof i15.DirectiveModule, typeof i14.MatTooltipModule, typeof i16.NuxeoDialogModule], [typeof i1.CommentsDashletComponent]>;
|
|
25
26
|
static ɵinj: i0.ɵɵInjectorDeclaration<CommentsModule>;
|
|
26
27
|
}
|
package/lib/components/comments/components/edit-delete-modal/edit-delete-modal.component.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { ToastrService } from 'ngx-toastr';
|
|
4
4
|
import { NuxeoService } from '../../../../core/services/nuxeo/nuxeo.service';
|
|
5
5
|
import { CommentApiService } from '../../services/comment-api.service';
|
|
6
|
+
import { BaseDialogComponent } from '../../../../shared/components/base/base-dialog.component';
|
|
7
|
+
import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class EditDeleteModalComponent implements OnInit {
|
|
9
|
+
export declare class EditDeleteModalComponent extends BaseDialogComponent<EditDeleteModalComponent, any, any> implements OnInit {
|
|
8
10
|
data: any;
|
|
9
11
|
private toaster;
|
|
10
12
|
private commentApi;
|
|
@@ -12,11 +14,12 @@ export declare class EditDeleteModalComponent implements OnInit {
|
|
|
12
14
|
dialogRef: MatDialogRef<EditDeleteModalComponent>;
|
|
13
15
|
operationType: any;
|
|
14
16
|
comment: any;
|
|
15
|
-
|
|
17
|
+
injector: Injector;
|
|
18
|
+
constructor(data: any, toaster: ToastrService, commentApi: CommentApiService, nuxeoService: NuxeoService, dialogRef: MatDialogRef<EditDeleteModalComponent>, injector: Injector);
|
|
16
19
|
ngOnInit(): void;
|
|
17
|
-
delete
|
|
20
|
+
delete: DialogActionType;
|
|
18
21
|
cancel(): void;
|
|
19
|
-
update
|
|
22
|
+
update: DialogActionType;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditDeleteModalComponent, never>;
|
|
21
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditDeleteModalComponent, "lib-edit-delete-modal", never, {}, {}, never, never>;
|
|
22
25
|
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnInit, Injector } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
4
|
import { CustomToastrService } from '../../../custom-toastr/services/custom-toastr.service';
|
|
5
5
|
import { CorrespondenceRelationService } from '../../services/correspondence-realation.service';
|
|
6
|
+
import { BaseDialogComponent } from '../../../../shared/components/base/base-dialog.component';
|
|
7
|
+
import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CorrespondenceRelationCreateFormComponent implements OnInit {
|
|
9
|
+
export declare class CorrespondenceRelationCreateFormComponent extends BaseDialogComponent<CorrespondenceRelationCreateFormComponent, any, any> implements OnInit {
|
|
8
10
|
private _formBuilder;
|
|
9
11
|
private corressvc;
|
|
10
12
|
private toastr;
|
|
@@ -21,9 +23,9 @@ export declare class CorrespondenceRelationCreateFormComponent implements OnInit
|
|
|
21
23
|
documentList: any[];
|
|
22
24
|
exist_relations_list: any[];
|
|
23
25
|
correspondanceId: any;
|
|
24
|
-
constructor(_formBuilder: FormBuilder, corressvc: CorrespondenceRelationService, toastr: CustomToastrService, dialogRef: MatDialogRef<CorrespondenceRelationCreateFormComponent>, data: any);
|
|
26
|
+
constructor(_formBuilder: FormBuilder, corressvc: CorrespondenceRelationService, toastr: CustomToastrService, dialogRef: MatDialogRef<CorrespondenceRelationCreateFormComponent>, data: any, injector: Injector);
|
|
25
27
|
/**dialog actions */
|
|
26
|
-
onSaveClick
|
|
28
|
+
onSaveClick: DialogActionType;
|
|
27
29
|
onCloseoClick(): void;
|
|
28
30
|
/*************************************************** */
|
|
29
31
|
auto: any;
|
|
@@ -22,9 +22,10 @@ import * as i20 from "@angular/material/expansion";
|
|
|
22
22
|
import * as i21 from "../../shared/libraryShared.module";
|
|
23
23
|
import * as i22 from "../../directive/directive.module";
|
|
24
24
|
import * as i23 from "../../pipes/pipes.module";
|
|
25
|
+
import * as i24 from "../../shared/components/nuxeo-dialog/nuxeo-dialog.module";
|
|
25
26
|
/** @ignore */
|
|
26
27
|
export declare class CorrespondenceRelationModule {
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<CorrespondenceRelationModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CorrespondenceRelationModule, [typeof i1.CorrespondenceRelationListComponent, typeof i2.CorrespondenceRelationComponent, typeof i3.CorrespondenceRelationCreateFormComponent, typeof i4.CorrespondenceRelationReplyComponent, typeof i5.VersionsComponent], [typeof i6.CommonModule, typeof i7.DynamicFormModule, typeof i8.TranslateModule, typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i10.MatDialogModule, typeof i11.DynamicSearchModule, typeof i12.MatIconModule, typeof i13.NgSelectModule, typeof i14.SelectModule, typeof i15.AutocompleteLibModule, typeof i16.LayoutModule, typeof i17.MatChipsModule, typeof i18.MatMenuModule, typeof i19.MatListModule, typeof i12.MatIconModule, typeof i20.MatExpansionModule, typeof i21.LibrarySharedModule, typeof i22.DirectiveModule, typeof i23.PipesModule], [typeof i2.CorrespondenceRelationComponent, typeof i5.VersionsComponent]>;
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CorrespondenceRelationModule, [typeof i1.CorrespondenceRelationListComponent, typeof i2.CorrespondenceRelationComponent, typeof i3.CorrespondenceRelationCreateFormComponent, typeof i4.CorrespondenceRelationReplyComponent, typeof i5.VersionsComponent], [typeof i6.CommonModule, typeof i7.DynamicFormModule, typeof i8.TranslateModule, typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i10.MatDialogModule, typeof i11.DynamicSearchModule, typeof i12.MatIconModule, typeof i13.NgSelectModule, typeof i14.SelectModule, typeof i15.AutocompleteLibModule, typeof i16.LayoutModule, typeof i17.MatChipsModule, typeof i18.MatMenuModule, typeof i19.MatListModule, typeof i12.MatIconModule, typeof i20.MatExpansionModule, typeof i21.LibrarySharedModule, typeof i22.DirectiveModule, typeof i23.PipesModule, typeof i24.NuxeoDialogModule], [typeof i2.CorrespondenceRelationComponent, typeof i5.VersionsComponent]>;
|
|
29
30
|
static ɵinj: i0.ɵɵInjectorDeclaration<CorrespondenceRelationModule>;
|
|
30
31
|
}
|
|
@@ -9,25 +9,24 @@ import * as i7 from "@angular/material/button";
|
|
|
9
9
|
import * as i8 from "@angular/common";
|
|
10
10
|
import * as i9 from "@ngx-translate/core";
|
|
11
11
|
import * as i10 from "../pagination/pagination.module";
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "@angular/
|
|
14
|
-
import * as i13 from "@angular/material/progress-
|
|
15
|
-
import * as i14 from "@angular/material/
|
|
16
|
-
import * as i15 from "@angular/material/
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "
|
|
19
|
-
import * as i18 from "@angular/
|
|
20
|
-
import * as i19 from "
|
|
21
|
-
import * as i20 from "
|
|
22
|
-
import * as i21 from "../
|
|
23
|
-
import * as i22 from "
|
|
24
|
-
import * as i23 from "../../shared/libraryShared.module";
|
|
12
|
+
import * as i11 from "@angular/router";
|
|
13
|
+
import * as i12 from "@angular/material/progress-bar";
|
|
14
|
+
import * as i13 from "@angular/material/progress-spinner";
|
|
15
|
+
import * as i14 from "@angular/material/icon";
|
|
16
|
+
import * as i15 from "@angular/material/dialog";
|
|
17
|
+
import * as i16 from "../../directive/directive.module";
|
|
18
|
+
import * as i17 from "@angular/forms";
|
|
19
|
+
import * as i18 from "@angular/material/input";
|
|
20
|
+
import * as i19 from "../../pipes/pipes.module";
|
|
21
|
+
import * as i20 from "../card/card.module";
|
|
22
|
+
import * as i21 from "../dynamic-form/dynamic-form.module";
|
|
23
|
+
import * as i22 from "../../shared/libraryShared.module";
|
|
25
24
|
/**
|
|
26
25
|
* @title
|
|
27
26
|
* Documents Module
|
|
28
27
|
*/
|
|
29
28
|
export declare class DocumentsModule {
|
|
30
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentsModule, never>;
|
|
31
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentsModule, [typeof i1.DocumentsComponent, typeof i2.DocumentsListComponent, typeof i3.DocumentUploadComponent, typeof i4.ScanComponent, typeof i5.AttachmentsListComponent, typeof i6.AttachmentsPageProviderComponent], [typeof i7.MatButtonModule, typeof i8.CommonModule, typeof i9.TranslateModule, typeof i10.PaginationModule, typeof i11.
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentsModule, [typeof i1.DocumentsComponent, typeof i2.DocumentsListComponent, typeof i3.DocumentUploadComponent, typeof i4.ScanComponent, typeof i5.AttachmentsListComponent, typeof i6.AttachmentsPageProviderComponent], [typeof i7.MatButtonModule, typeof i8.CommonModule, typeof i9.TranslateModule, typeof i10.PaginationModule, typeof i11.RouterModule, typeof i12.MatProgressBarModule, typeof i13.MatProgressSpinnerModule, typeof i14.MatIconModule, typeof i15.MatDialogModule, typeof i16.DirectiveModule, typeof i17.FormsModule, typeof i17.ReactiveFormsModule, typeof i18.MatInputModule, typeof i19.PipesModule, typeof i20.CardModule, typeof i21.DynamicFormModule, typeof i22.LibrarySharedModule], [typeof i1.DocumentsComponent, typeof i2.DocumentsListComponent, typeof i3.DocumentUploadComponent, typeof i4.ScanComponent, typeof i5.AttachmentsListComponent, typeof i6.AttachmentsPageProviderComponent]>;
|
|
32
31
|
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentsModule>;
|
|
33
32
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef,
|
|
2
|
-
import { TranslateService } from "@ngx-translate/core";
|
|
3
|
-
import { Observable, Subject, Subscription } from "rxjs";
|
|
4
|
-
import { CallApiService } from "../../../core/services/callApi/call-api.service";
|
|
5
|
-
import { ChartDataService } from "../services/chart-data.service";
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
6
2
|
import { Router } from '@angular/router';
|
|
7
|
-
import '
|
|
8
|
-
import 'chartjs-
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import 'chartjs-adapter-moment';
|
|
5
|
+
import { Observable, Subject, Subscription } from 'rxjs';
|
|
6
|
+
import { CallApiService } from '../../../core/services/callApi/call-api.service';
|
|
7
|
+
import { TranslationService } from '../../../core/services/translation/translation.service';
|
|
8
|
+
import { DepartmentApiService } from '../../dynamic-form/components/dynamic-form-department/services/department-api.service';
|
|
9
|
+
import { ChartDataService } from '../services/chart-data.service';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
11
|
/** @ignore */
|
|
13
12
|
export declare class DynamicChartComponent implements OnInit, OnChanges, OnDestroy {
|
|
@@ -18,6 +17,7 @@ export declare class DynamicChartComponent implements OnInit, OnChanges, OnDestr
|
|
|
18
17
|
chartData: ChartDataService;
|
|
19
18
|
private translationService;
|
|
20
19
|
private departmentApiService;
|
|
20
|
+
private ngZone;
|
|
21
21
|
chart: ElementRef;
|
|
22
22
|
prefix: string;
|
|
23
23
|
chartType: any;
|
|
@@ -60,7 +60,8 @@ export declare class DynamicChartComponent implements OnInit, OnChanges, OnDestr
|
|
|
60
60
|
isInternalActive: boolean;
|
|
61
61
|
myDataSubscription: Subscription;
|
|
62
62
|
isArabic: any;
|
|
63
|
-
constructor(translate: TranslateService, changeDetector: ChangeDetectorRef, callApi: CallApiService, router: Router, chartData: ChartDataService, translationService: TranslationService, departmentApiService: DepartmentApiService);
|
|
63
|
+
constructor(translate: TranslateService, changeDetector: ChangeDetectorRef, callApi: CallApiService, router: Router, chartData: ChartDataService, translationService: TranslationService, departmentApiService: DepartmentApiService, ngZone: NgZone);
|
|
64
|
+
protected listenToWindowResize(): void;
|
|
64
65
|
createChart(): void;
|
|
65
66
|
createChartWithoutPP(): void;
|
|
66
67
|
updateStats(): void;
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./dynamic-chart/dynamic-chart.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "@
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "@angular/material/tooltip";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ngx-translate/core";
|
|
5
|
+
import * as i4 from "../../shared/libraryShared.module";
|
|
6
|
+
import * as i5 from "@angular/material/tooltip";
|
|
8
7
|
/**
|
|
9
8
|
* @title
|
|
10
9
|
* Chart Module
|
|
11
10
|
*/
|
|
12
11
|
export declare class DynamicChartModule {
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicChartModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicChartModule, [typeof i1.DynamicChartComponent
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicChartModule, [typeof i1.DynamicChartComponent], [typeof i2.CommonModule, typeof i3.TranslateModule, typeof i4.LibrarySharedModule, typeof i5.MatTooltipModule], [typeof i1.DynamicChartComponent]>;
|
|
15
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicChartModule>;
|
|
16
15
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { BaseDialogComponent } from '../../../../shared/components/base/base-dialog.component';
|
|
4
|
+
import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CreationTypeComponent implements OnInit {
|
|
6
|
+
export declare class CreationTypeComponent extends BaseDialogComponent<CreationTypeComponent, any, any> implements OnInit {
|
|
5
7
|
dialogRef: MatDialogRef<CreationTypeComponent>;
|
|
6
|
-
constructor(dialogRef: MatDialogRef<CreationTypeComponent
|
|
8
|
+
constructor(dialogRef: MatDialogRef<CreationTypeComponent>, injector: Injector);
|
|
7
9
|
ngOnInit(): void;
|
|
8
|
-
closeDialog
|
|
10
|
+
closeDialog: DialogActionType;
|
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreationTypeComponent, never>;
|
|
10
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<CreationTypeComponent, "app-creation-type", never, {}, {}, never, never>;
|
|
11
13
|
}
|
|
@@ -1,12 +1,18 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { Injector, TemplateRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { DxFormComponent } from 'devextreme-angular';
|
|
3
3
|
import { FileManagerService } from '../../../../shared-services/file-manager.service';
|
|
4
4
|
import { CustomToastrService } from '../../../custom-toastr/services/custom-toastr.service';
|
|
5
|
+
import { NuxeoDialogService } from '../../../../shared/components/nuxeo-dialog/services/nuxeo-dialog.service';
|
|
6
|
+
import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
|
|
7
|
+
import { BaseComponent } from '../../../../shared/components/base/base.component';
|
|
5
8
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class LoanRequestComponent implements OnInit {
|
|
9
|
+
export declare class LoanRequestComponent extends BaseComponent implements OnInit {
|
|
7
10
|
private fileMangerService;
|
|
8
11
|
private customToastrService;
|
|
12
|
+
nuxeoDialogService: NuxeoDialogService;
|
|
9
13
|
form: DxFormComponent;
|
|
14
|
+
contentTemplate: TemplateRef<any>;
|
|
15
|
+
actionsTemplate: TemplateRef<any>;
|
|
10
16
|
set visible(value: any);
|
|
11
17
|
get visible(): any;
|
|
12
18
|
visibleChange: EventEmitter<any>;
|
|
@@ -14,10 +20,10 @@ export declare class LoanRequestComponent implements OnInit {
|
|
|
14
20
|
selectedItem: any;
|
|
15
21
|
loanFormData: any;
|
|
16
22
|
_visible: boolean;
|
|
17
|
-
|
|
18
|
-
constructor(fileMangerService: FileManagerService, customToastrService: CustomToastrService);
|
|
23
|
+
constructor(fileMangerService: FileManagerService, customToastrService: CustomToastrService, nuxeoDialogService: NuxeoDialogService, injector: Injector);
|
|
19
24
|
ngOnInit(): void;
|
|
20
|
-
|
|
25
|
+
openDialog(): void;
|
|
26
|
+
onFormLoanRequestSubmit: DialogActionType;
|
|
21
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoanRequestComponent, never>;
|
|
22
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<LoanRequestComponent, "app-loan-request", never, { "visible": "visible"; "rtlEnabled": "rtlEnabled"; "selectedItem": "selectedItem"; }, { "visibleChange": "visibleChange"; }, never, never>;
|
|
23
29
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { UploadManagmentService } from '../../../../shared-services/upload-managment.service';
|
|
4
4
|
import { DialogMangmentService } from '../../../../shared-services/dialog-mangment.service';
|
|
5
5
|
import { DynamicFormService } from '../../../../shared-services/dynamic-form.service';
|
|
6
|
+
import { BaseDialogComponent } from '../../../../shared/components/base/base-dialog.component';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class TemplateModalComponent implements OnInit {
|
|
8
|
+
export declare class TemplateModalComponent extends BaseDialogComponent<TemplateModalComponent, any, any> implements OnInit {
|
|
8
9
|
data: any;
|
|
9
10
|
uploadMangmentService: UploadManagmentService;
|
|
10
11
|
dialogRef: MatDialogRef<TemplateModalComponent>;
|
|
@@ -25,7 +26,7 @@ export declare class TemplateModalComponent implements OnInit {
|
|
|
25
26
|
};
|
|
26
27
|
showRenderer: boolean;
|
|
27
28
|
temporaryDyanmicData: {};
|
|
28
|
-
constructor(data: any, uploadMangmentService: UploadManagmentService, dialogRef: MatDialogRef<TemplateModalComponent>, dialogMangmentService: DialogMangmentService, dynamicFormService: DynamicFormService);
|
|
29
|
+
constructor(data: any, uploadMangmentService: UploadManagmentService, dialogRef: MatDialogRef<TemplateModalComponent>, dialogMangmentService: DialogMangmentService, dynamicFormService: DynamicFormService, injector: Injector);
|
|
29
30
|
ngOnInit(): void;
|
|
30
31
|
ondynamicFormChange(dynamicData: any): void;
|
|
31
32
|
closeDialog(): void;
|
|
@@ -1,12 +1,18 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { Injector, TemplateRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { CustomToastrService } from '../../../custom-toastr/services/custom-toastr.service';
|
|
4
4
|
import { FileManagerService } from '../../../../shared-services/file-manager.service';
|
|
5
|
+
import { NuxeoDialogService } from '../../../../shared/components/nuxeo-dialog/services/nuxeo-dialog.service';
|
|
6
|
+
import { DialogActionType } from '../../../../shared/components/nuxeo-dialog/models/dialog-option.model';
|
|
7
|
+
import { BaseComponent } from '../../../../shared/components/base/base.component';
|
|
5
8
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class TransferDocComponent implements OnInit {
|
|
9
|
+
export declare class TransferDocComponent extends BaseComponent implements OnInit {
|
|
7
10
|
private route;
|
|
8
11
|
private fileMangerService;
|
|
9
12
|
private customToastrService;
|
|
13
|
+
nuxeoDialogService: NuxeoDialogService;
|
|
14
|
+
contentTemplate: TemplateRef<any>;
|
|
15
|
+
actionsTemplate: TemplateRef<any>;
|
|
10
16
|
set visible(value: any);
|
|
11
17
|
get visible(): any;
|
|
12
18
|
visibleChange: EventEmitter<any>;
|
|
@@ -14,9 +20,10 @@ export declare class TransferDocComponent implements OnInit {
|
|
|
14
20
|
rtlEnabled: boolean;
|
|
15
21
|
_visible: boolean;
|
|
16
22
|
currentItem: any;
|
|
17
|
-
constructor(route: ActivatedRoute, fileMangerService: FileManagerService, customToastrService: CustomToastrService);
|
|
23
|
+
constructor(route: ActivatedRoute, fileMangerService: FileManagerService, customToastrService: CustomToastrService, nuxeoDialogService: NuxeoDialogService, injector: Injector);
|
|
18
24
|
ngOnInit(): void;
|
|
19
|
-
|
|
25
|
+
openDialog(): void;
|
|
26
|
+
transferDocument: DialogActionType;
|
|
20
27
|
cancel(): void;
|
|
21
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransferDocComponent, never>;
|
|
22
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransferDocComponent, "app-transfer-doc", never, { "visible": "visible"; "rtlEnabled": "rtlEnabled"; }, { "visibleChange": "visibleChange"; "refresh": "refresh"; }, never, never>;
|