barsa-novin-ray-core 2.0.96 → 2.0.98

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.
@@ -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[];
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barsa-novin-ray-core",
3
- "version": "2.0.96",
3
+ "version": "2.0.98",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^17.3.5",
6
6
  "@angular/common": "^17.3.5"