barsa-novin-ray-core 2.0.96 → 2.0.97
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/abstract-classes/models.mjs +1 -1
- package/esm2022/lib/constants.mjs +15 -5
- package/esm2022/lib/services/portal.service.mjs +14 -3
- package/esm2022/lib/services/routing.service.mjs +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +27 -6
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/models.d.ts +12 -0
- package/lib/constants.d.ts +2 -1
- package/lib/services/portal.service.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { SafeHtml } from '@angular/platform-browser';
|
|
2
2
|
import { DateInfo as DateInfoService } from '../date-services';
|
|
3
|
+
export type UlvParamType = {
|
|
4
|
+
Flags: {
|
|
5
|
+
Data: string;
|
|
6
|
+
Extra: string;
|
|
7
|
+
Search: string;
|
|
8
|
+
View: string;
|
|
9
|
+
};
|
|
10
|
+
ReportName: string;
|
|
11
|
+
ReportId?: string;
|
|
12
|
+
UsageEnum: string;
|
|
13
|
+
};
|
|
3
14
|
export declare class GeneralControlInfoModel {
|
|
4
15
|
[key: string]: any;
|
|
5
16
|
ControlFieldCaption: string;
|
|
@@ -466,6 +477,7 @@ export declare class ReportViewColumn {
|
|
|
466
477
|
Extra?: any;
|
|
467
478
|
$ContentWidth?: string;
|
|
468
479
|
$Width?: string;
|
|
480
|
+
$ColumnWidthNum?: number;
|
|
469
481
|
$ColumnWidth?: string;
|
|
470
482
|
$FitContainerWidth?: string;
|
|
471
483
|
$MergedFieldsToColumn?: string[];
|
package/lib/constants.d.ts
CHANGED
|
@@ -5,7 +5,8 @@ import { Renderer2 } from '@angular/core';
|
|
|
5
5
|
export declare enum TableHeaderWidthMode {
|
|
6
6
|
FitToRowContent = 1,
|
|
7
7
|
FitToContainer = 2,
|
|
8
|
-
FreeColumnSize = 3
|
|
8
|
+
FreeColumnSize = 3,
|
|
9
|
+
ColumnWidth = 4
|
|
9
10
|
}
|
|
10
11
|
export declare function setTableThWidth(tableHeaderMode: TableHeaderWidthMode, columns: ReportViewColumn[], thList: HTMLTableCellElement[], renderer2: Renderer2): void;
|
|
11
12
|
export declare function calculateColumnContent(columns: ReportViewColumn[], moDataList: MetaobjectDataModel[]): void;
|
|
@@ -109,8 +109,11 @@ export declare class PortalService {
|
|
|
109
109
|
setValueOnObject(path: any, index: any, modules: any, object: any): void;
|
|
110
110
|
getComponent(moduleName: string, modulePath: string, componentName: string, selector: string, parentInjector: Injector): Observable<ComponentRef<any>>;
|
|
111
111
|
loadJs$(path: any): Observable<string>;
|
|
112
|
+
ReportExecuteById(reportId: string): Observable<MoForReportModel>;
|
|
112
113
|
ReportExecute(reportName: string): Observable<MoForReportModel>;
|
|
113
114
|
ReportExecutePromise(reportName: string): Promise<MoForReportModel>;
|
|
115
|
+
private _getUlvParamsBy;
|
|
116
|
+
private _reportExecutePromise;
|
|
114
117
|
addFormPanelCtrlr(id: any, formpanelCtrlr: any): void;
|
|
115
118
|
setUserLoginStatus(status: boolean): void;
|
|
116
119
|
extractAllPages(portalData: PortalDataModel | null): void;
|