@tsi-developpement/tsi-shared-ui 1.8.2 → 1.8.3
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/esm2022/lib/tsi-base/components/tsi-form-base/tsi-form-base.component.mjs +4 -1
- package/esm2022/lib/tsi-components/manage-reporting/manage-reporting.component.mjs +12 -6
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs +13 -4
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs.map +1 -1
- package/lib/consts/app-providers.d.ts +1 -1
- package/lib/tsi-components/manage-reporting/manage-reporting.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3,4 +3,4 @@ import { FormStateService } from "../services/form/form-state.service";
|
|
|
3
3
|
import { PresentationDesignerBaseService } from "../services/presentation-setting/presentation-designer-base.service";
|
|
4
4
|
import { GenericValidationStateService } from "../services/validation/generic-validation-state.service";
|
|
5
5
|
import { InputRegistryService } from "../services/validation/input-registry.service";
|
|
6
|
-
export declare const appProviders: (typeof PresentationDesignerBaseService | typeof
|
|
6
|
+
export declare const appProviders: (typeof PresentationDesignerBaseService | typeof InputRegistryService | typeof FormStateService | typeof GenericValidationStateService | typeof DynamicFormService)[];
|
|
@@ -2,7 +2,7 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
4
4
|
import { FileUpload } from 'primeng/fileupload';
|
|
5
|
-
import { GridSelectionMode, HttpMethodType } from '../../enums';
|
|
5
|
+
import { GridSelectionMode, GridSortMode, HttpMethodType } from '../../enums';
|
|
6
6
|
import { ButtonType } from '../../enums/button-type.enum';
|
|
7
7
|
import { TooltipPosition } from '../../enums/tooltipPosition.enum';
|
|
8
8
|
import { ButtonClickResult, GridColumn } from '../../interfaces';
|
|
@@ -49,6 +49,7 @@ export declare class ManageReportingComponent extends TsiFormComponentBaseCompon
|
|
|
49
49
|
reportDiscriminator?: any;
|
|
50
50
|
httpMethodType?: HttpMethodType;
|
|
51
51
|
requestData?: any;
|
|
52
|
+
sortModeRef: typeof GridSortMode;
|
|
52
53
|
private static readonly reportTypeLabels;
|
|
53
54
|
private _isReportForFiche;
|
|
54
55
|
get isReportForFiche(): boolean;
|