barsa-novin-ray-core 2.3.116 → 2.3.120

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/index.d.ts CHANGED
@@ -7,7 +7,7 @@ import { NavigationEnd, NavigationStart, Route, Router, ActivatedRoute, ParamMap
7
7
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
8
8
  import { IconFont, ContentDensity } from '@fundamental-ngx/core';
9
9
  import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
10
- import * as i144 from '@angular/forms';
10
+ import * as i145 from '@angular/forms';
11
11
  import { ValidatorFn, FormGroup } from '@angular/forms';
12
12
  import { DBSchema } from 'idb';
13
13
  import * as i1$1 from '@angular/common';
@@ -1449,6 +1449,24 @@ interface AppTile extends MetaobjectDataModel {
1449
1449
  TileTitle: any;
1450
1450
  Subtitle: any;
1451
1451
  }
1452
+ type ToolbarButtonReportViewType = {
1453
+ id: string;
1454
+ text: string;
1455
+ icon: string;
1456
+ hideText?: boolean;
1457
+ handler: () => void;
1458
+ isEnable: boolean;
1459
+ };
1460
+ declare enum UlvHeightSizeType {
1461
+ Default = 0,
1462
+ FillPage = 1,
1463
+ DesignSize = 2,
1464
+ CustomSize = 3
1465
+ }
1466
+ type PictureGroupItem = {
1467
+ Id: string;
1468
+ Name: string;
1469
+ };
1452
1470
 
1453
1471
  declare class MoReportValuePipe implements PipeTransform {
1454
1472
  transform(name: string, mo: MetaobjectDataModel, Columns?: {
@@ -1774,6 +1792,41 @@ declare const PdfMimeType = ".pdf";
1774
1792
  declare const AllFilesMimeType = ".txt,.ppt,.pdf,.*";
1775
1793
  declare const VideoMimeType = "video/*";
1776
1794
  declare const AudioMimeType = "audio/*";
1795
+ declare const MimeTypes: {
1796
+ html: string;
1797
+ htm: string;
1798
+ txt: string;
1799
+ text: string;
1800
+ log: string;
1801
+ conf: string;
1802
+ css: string;
1803
+ js: string;
1804
+ json: string;
1805
+ xml: string;
1806
+ jpg: string;
1807
+ jpeg: string;
1808
+ png: string;
1809
+ gif: string;
1810
+ svg: string;
1811
+ webp: string;
1812
+ bmp: string;
1813
+ ico: string;
1814
+ pdf: string;
1815
+ rtf: string;
1816
+ doc: string;
1817
+ docx: string;
1818
+ xls: string;
1819
+ xlsx: string;
1820
+ ppt: string;
1821
+ pptx: string;
1822
+ mp4: string;
1823
+ webm: string;
1824
+ ogg: string;
1825
+ mp3: string;
1826
+ wav: string;
1827
+ };
1828
+ declare function GetContentType(fileName: any): any;
1829
+ declare function GetViewableExtensions(): string[];
1777
1830
  declare function ChangeLayoutInfoCustomUi(layoutInfo: LayoutSetting, componentUi: EjrayOlgo): void;
1778
1831
  declare const mobile_regex: RegExp;
1779
1832
  declare const number_only: RegExp;
@@ -1789,6 +1842,9 @@ declare function flattenTree(root: Record<string, any>, prop: string): Record<st
1789
1842
  declare function IsDarkMode(): boolean;
1790
1843
  declare function nullOrUndefinedString(param: any): string;
1791
1844
  declare function fromEntries<K extends string, V>(entries: [K, V][]): Record<K, V>;
1845
+ declare function bodyClick(document: any, el: any): void;
1846
+ declare function removeDynamicStyle(style: any): void;
1847
+ declare function addDynamicVariableTo(cssVariableName: string, cssVariableValue: string, id?: string): any;
1792
1848
  declare function AddDynamicFormStyles(id: string, cssStyles: string | undefined): HTMLStyleElement | null;
1793
1849
  declare function RemoveDynamicFormStyles(style: HTMLStyleElement | null): void;
1794
1850
 
@@ -2001,7 +2057,7 @@ declare class IsImagePipe implements PipeTransform {
2001
2057
  }
2002
2058
 
2003
2059
  declare class ToolbarSettingsPipe implements PipeTransform {
2004
- transform(toolbarButtons: any[], toolbarSettings: MoForReportModel): any[];
2060
+ transform(toolbarButtons: any[], toolbarSettings: MoForReportModel | null): any[];
2005
2061
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarSettingsPipe, never>;
2006
2062
  static ɵpipe: i0.ɵɵPipeDeclaration<ToolbarSettingsPipe, "ulvToolbarSettings", false>;
2007
2063
  }
@@ -2569,6 +2625,7 @@ declare class UlvMainService {
2569
2625
  selectedCount$: Observable<number>;
2570
2626
  hideUlvPageTitle$: Observable<boolean>;
2571
2627
  uiViewerSelector$: Observable<string>;
2628
+ openOneClick: boolean;
2572
2629
  private _bbbPipe;
2573
2630
  private _apiService;
2574
2631
  private _setUiViewerSelector$;
@@ -2596,12 +2653,15 @@ declare class UlvMainService {
2596
2653
  private _allowInlineEditSource;
2597
2654
  private _gridSettingSource;
2598
2655
  private _gridAllowSortSource;
2656
+ private _contentHeightSource;
2657
+ private _hiddenOverflowContentSource;
2599
2658
  private _cartableKeySeperator;
2600
2659
  private _titleSource;
2601
2660
  private _hideUlvPageTitle$;
2602
2661
  private _searchPanelUiSource;
2603
2662
  private _pagingSettingSource;
2604
2663
  private _toolbarButtonsSource;
2664
+ private _toolbarButtonsReportViewSource;
2605
2665
  private _toolbarButtonsWorkflowButtons;
2606
2666
  private _destroySource;
2607
2667
  private _firstApplyAutomatically;
@@ -2628,9 +2688,18 @@ declare class UlvMainService {
2628
2688
  private _sortSettingChanged$;
2629
2689
  private _updateGridSettingByUser$;
2630
2690
  private _selectedView$;
2691
+ private _ulvHeightSizeTypeSource;
2692
+ private _ulvHeightSizeSource;
2693
+ private _toolbarSettingsSource;
2631
2694
  /** Inserted by Angular inject() migration for backwards compatibility */
2632
2695
  constructor();
2633
2696
  _setPriorityAndPriorityGroup(toolbarButtons: any[]): any[];
2697
+ get toolbarSettings$(): Observable<MoForReportModel | null>;
2698
+ get ulvHeightSizeType$(): Observable<UlvHeightSizeType>;
2699
+ get ulvHeightSize$(): Observable<number>;
2700
+ get hiddenOverflowContent$(): Observable<boolean>;
2701
+ get contentHeight$(): Observable<number>;
2702
+ get toolbarButtonsReportView$(): Observable<ToolbarButtonReportViewType[]>;
2634
2703
  get selectedView$(): Observable<UiReportViewBase | null>;
2635
2704
  get inlineEditMode(): boolean;
2636
2705
  get gridSettingChangedByUser$(): Observable<{
@@ -2656,6 +2725,7 @@ declare class UlvMainService {
2656
2725
  get gridFreeColumnSizing$(): Observable<boolean>;
2657
2726
  get canSaveGridSetting$(): Observable<boolean>;
2658
2727
  get inDialog$(): Observable<boolean>;
2728
+ get isMultiSelect(): boolean;
2659
2729
  get isMultiSelect$(): Observable<boolean>;
2660
2730
  get fullscreen$(): Observable<boolean>;
2661
2731
  get cartableChildsMo$(): Observable<{
@@ -2671,6 +2741,10 @@ declare class UlvMainService {
2671
2741
  get hideSearchpanel(): boolean;
2672
2742
  get cssBackground$(): Observable<CssBackground | null>;
2673
2743
  get shortCuts$(): Observable<ShortCuts>;
2744
+ setToolbarSettings(toolbarSettings: MoForReportModel): void;
2745
+ setUlvHeightSize(ulvHeightSize: number): void;
2746
+ setUlvHeightSizeType(ulvSizeType: UlvHeightSizeType): void;
2747
+ setHiddenOverflowContent(hiddenOverflow: boolean): void;
2674
2748
  setSelectedView(selectedView: UiReportViewBase): void;
2675
2749
  userChangeGridSetting(setting: any, isSort?: boolean, raiseEvent?: boolean): void;
2676
2750
  sortSettingChange(gridSetting: SortSetting[]): void;
@@ -2700,7 +2774,11 @@ declare class UlvMainService {
2700
2774
  setContext(context: any): void;
2701
2775
  setInDialog(val: boolean): void;
2702
2776
  setIsMultiSelect(val: boolean): void;
2777
+ setOpenOneClick(val: boolean): void;
2703
2778
  setFullscreen(val: boolean): void;
2779
+ setContentHeight(height: number): void;
2780
+ addUlvButtons(e: ToolbarButtonReportViewType[]): void;
2781
+ enableUlvButtonsReportView(id: string, isEnable: boolean): void;
2704
2782
  createNewInlineMo(isChecked: boolean): MetaobjectDataModel;
2705
2783
  setLayoutInfo(layoutInfo: any): void;
2706
2784
  destroy(): void;
@@ -2787,7 +2865,7 @@ declare class UploadService {
2787
2865
  private httpClient;
2788
2866
  private _uploadingStateSource;
2789
2867
  constructor();
2790
- upload(data: FormData, fdId: string, key?: string): Observable<IUploadingState>;
2868
+ upload(data: FormData, fdId: string, key?: string, tagId?: string): Observable<IUploadingState>;
2791
2869
  compressFiles$(files: File[]): Observable<FormData>;
2792
2870
  private _setUploadingStatus;
2793
2871
  private compressFiles;
@@ -3402,6 +3480,7 @@ declare class FormBaseComponent extends BaseComponent implements OnInit, OnDestr
3402
3480
  isModal: boolean;
3403
3481
  isSubForm: boolean;
3404
3482
  modernTabs$: Observable<LayoutSetting[]>;
3483
+ selectedTabPageName$: Observable<string>;
3405
3484
  modernTabContainerComponent: EjrayOlgo;
3406
3485
  isFormReport: boolean;
3407
3486
  landscape$: Observable<boolean>;
@@ -3420,6 +3499,7 @@ declare class FormBaseComponent extends BaseComponent implements OnInit, OnDestr
3420
3499
  protected _style: HTMLStyleElement;
3421
3500
  protected _standalone: boolean;
3422
3501
  private _formIntersection;
3502
+ private _selectedTabPageName$;
3423
3503
  constructor();
3424
3504
  get forceClose$(): Observable<void>;
3425
3505
  ngOnInit(): void;
@@ -3533,6 +3613,7 @@ declare class ReportBaseComponent extends BaseComponent implements OnInit, After
3533
3613
  }[] | null;
3534
3614
  parameters: any;
3535
3615
  fields: any;
3616
+ isReportPage: boolean;
3536
3617
  cssBackground$: Observable<CssBackground | null>;
3537
3618
  visibleColumns$: Observable<ReportViewColumn[]>;
3538
3619
  searchTerm$: Observable<string>;
@@ -3551,6 +3632,7 @@ declare class ReportBaseComponent extends BaseComponent implements OnInit, After
3551
3632
  toolbarButtons$: Observable<any[]>;
3552
3633
  toolbarEnable$: Observable<boolean>;
3553
3634
  hideToolbar$: Observable<boolean>;
3635
+ contentHeight$: Observable<number>;
3554
3636
  hideSearchpanel$: Observable<boolean>;
3555
3637
  selectedMo$: Observable<MetaobjectDataModel | undefined>;
3556
3638
  conditionalFormats$: Observable<any[]>;
@@ -3563,6 +3645,7 @@ declare class ReportBaseComponent extends BaseComponent implements OnInit, After
3563
3645
  } | null>;
3564
3646
  selectedCount$: Observable<number>;
3565
3647
  gridFreeColumnSizing$: Observable<boolean>;
3648
+ ulvHeightSizeType$: Observable<UlvHeightSizeType>;
3566
3649
  protected _portalService: PortalService;
3567
3650
  protected _ulvMainService: UlvMainService;
3568
3651
  protected _visibleColumnsSource: BehaviorSubject<ReportViewColumn[]>;
@@ -3891,6 +3974,9 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
3891
3974
  formSetting: FormSetting;
3892
3975
  disableOverflowContextMenu: boolean;
3893
3976
  rowActivable: boolean;
3977
+ isReportPage: boolean;
3978
+ ulvHeightSizeType: UlvHeightSizeType;
3979
+ contentHeight: number;
3894
3980
  contentDensity: ContentDensity;
3895
3981
  rtl: any;
3896
3982
  showOkCancelButtons: any;
@@ -4040,7 +4126,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
4040
4126
  protected _containerWidthChanged(_: number): void;
4041
4127
  protected _setRowIndicator(columns: ReportViewColumn[]): void;
4042
4128
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewBaseComponent<any>, never>;
4043
- static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewBaseComponent<any>, "bnrc-report-view-base", never, { "contextView": { "alias": "contextView"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "simpleInlineEdit": { "alias": "simpleInlineEdit"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "access": { "alias": "access"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "selectedCount": { "alias": "selectedCount"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "secondaryColumns": { "alias": "secondaryColumns"; "required": false; }; "popin": { "alias": "popin"; "required": false; }; "customFieldInfo": { "alias": "customFieldInfo"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "layoutInfo": { "alias": "layoutInfo"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "listEditViewId": { "alias": "listEditViewId"; "required": false; }; "typeViewId": { "alias": "typeViewId"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "relationList": { "alias": "relationList"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "rowItem": { "alias": "rowItem"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "selectedMo": { "alias": "selectedMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "hasInlineDeleteButton": { "alias": "hasInlineDeleteButton"; "required": false; }; "hasInlineEditButton": { "alias": "hasInlineEditButton"; "required": false; }; "contextSetting": { "alias": "contextSetting"; "required": false; }; "gridFreeColumnSizing": { "alias": "gridFreeColumnSizing"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "cartableTemplates": { "alias": "cartableTemplates"; "required": false; }; "cartableChildsMo": { "alias": "cartableChildsMo"; "required": false; }; "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; }, { "columnSummary": "columnSummary"; "escapeKey": "escapeKey"; "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "workflowShareButtons": "workflowShareButtons"; "sortDescending": "sortDescending"; "filter": "filter"; "executeToolbarButton": "executeToolbarButton"; "resetGridSettings": "resetGridSettings"; "sortSettingsChange": "sortSettingsChange"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "columnResized": "columnResized"; "hasDetailsInRow": "hasDetailsInRow"; }, never, never, false, never>;
4129
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewBaseComponent<any>, "bnrc-report-view-base", never, { "contextView": { "alias": "contextView"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "simpleInlineEdit": { "alias": "simpleInlineEdit"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "access": { "alias": "access"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "selectedCount": { "alias": "selectedCount"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "secondaryColumns": { "alias": "secondaryColumns"; "required": false; }; "popin": { "alias": "popin"; "required": false; }; "customFieldInfo": { "alias": "customFieldInfo"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "layoutInfo": { "alias": "layoutInfo"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "listEditViewId": { "alias": "listEditViewId"; "required": false; }; "typeViewId": { "alias": "typeViewId"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "relationList": { "alias": "relationList"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "rowItem": { "alias": "rowItem"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "selectedMo": { "alias": "selectedMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; "ulvHeightSizeType": { "alias": "ulvHeightSizeType"; "required": false; }; "contentHeight": { "alias": "contentHeight"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "hasInlineDeleteButton": { "alias": "hasInlineDeleteButton"; "required": false; }; "hasInlineEditButton": { "alias": "hasInlineEditButton"; "required": false; }; "contextSetting": { "alias": "contextSetting"; "required": false; }; "gridFreeColumnSizing": { "alias": "gridFreeColumnSizing"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "cartableTemplates": { "alias": "cartableTemplates"; "required": false; }; "cartableChildsMo": { "alias": "cartableChildsMo"; "required": false; }; "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; }, { "columnSummary": "columnSummary"; "escapeKey": "escapeKey"; "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "workflowShareButtons": "workflowShareButtons"; "sortDescending": "sortDescending"; "filter": "filter"; "executeToolbarButton": "executeToolbarButton"; "resetGridSettings": "resetGridSettings"; "sortSettingsChange": "sortSettingsChange"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "columnResized": "columnResized"; "hasDetailsInRow": "hasDetailsInRow"; }, never, never, false, never>;
4044
4130
  }
4045
4131
 
4046
4132
  declare class FormPropsBaseComponent extends BaseComponent implements OnInit {
@@ -4622,6 +4708,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
4622
4708
  ngOnChanges(changes: SimpleChanges): void;
4623
4709
  ngOnDestroy(): void;
4624
4710
  OnCartableFormClick(e: any): void;
4711
+ onLongPress(): void;
4625
4712
  onRowCheck(onlyCheck?: boolean): void;
4626
4713
  onRowClick(): void;
4627
4714
  onColumnChangeToEditMode(elDom: HTMLElement, index: number): void;
@@ -4820,6 +4907,7 @@ declare class DynamicUlvToolbarComponent extends BaseDynamicComponent {
4820
4907
  allowInlineEdit: boolean;
4821
4908
  gridSetting: any;
4822
4909
  viewCollection: any[];
4910
+ toolbarButtonsReportView: ToolbarButtonReportViewType[];
4823
4911
  reportView: UiReportViewBase;
4824
4912
  inDialog: boolean;
4825
4913
  isMultiSelect: boolean;
@@ -4831,7 +4919,15 @@ declare class DynamicUlvToolbarComponent extends BaseDynamicComponent {
4831
4919
  moDataListCount: number;
4832
4920
  ngOnChanges(changes: SimpleChanges): void;
4833
4921
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicUlvToolbarComponent, never>;
4834
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicUlvToolbarComponent, "bnrc-dynamic-ulv-toolbar-component", never, { "allowGridColumnSort": { "alias": "allowGridColumnSort"; "required": false; }; "useLayoutItemTextForControl": { "alias": "useLayoutItemTextForControl"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "access": { "alias": "access"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "gridSetting": { "alias": "gridSetting"; "required": false; }; "viewCollection": { "alias": "viewCollection"; "required": false; }; "reportView": { "alias": "reportView"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "cls": { "alias": "cls"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "config": { "alias": "config"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; }, {}, never, never, false, never>;
4922
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicUlvToolbarComponent, "bnrc-dynamic-ulv-toolbar-component", never, { "allowGridColumnSort": { "alias": "allowGridColumnSort"; "required": false; }; "useLayoutItemTextForControl": { "alias": "useLayoutItemTextForControl"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "access": { "alias": "access"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "gridSetting": { "alias": "gridSetting"; "required": false; }; "viewCollection": { "alias": "viewCollection"; "required": false; }; "toolbarButtonsReportView": { "alias": "toolbarButtonsReportView"; "required": false; }; "reportView": { "alias": "reportView"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "cls": { "alias": "cls"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "config": { "alias": "config"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; }, {}, never, never, false, never>;
4923
+ }
4924
+
4925
+ declare class DynamicUlvPagingComponent extends BaseDynamicComponent {
4926
+ pagingSetting: PagingSetting;
4927
+ context: any;
4928
+ ngOnChanges(changes: SimpleChanges): void;
4929
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicUlvPagingComponent, never>;
4930
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicUlvPagingComponent, "bnrc-dynamic-ulv-paging-component", never, { "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, never, never, false, never>;
4835
4931
  }
4836
4932
 
4837
4933
  declare class RootPortalComponent extends PageBaseComponent implements OnInit {
@@ -5131,7 +5227,6 @@ declare class EllapsisTextDirective extends BaseDirective implements AfterViewIn
5131
5227
  _widthChange$: Subject<number>;
5132
5228
  myObserver: ResizeObserver;
5133
5229
  constructor();
5134
- ngAfterViewInit(): void;
5135
5230
  ngOnDestroy(): void;
5136
5231
  protected _checkEllapsised(): void;
5137
5232
  protected _isEllipsisActive(element: HTMLElement): boolean;
@@ -5146,6 +5241,7 @@ declare class FillEmptySpaceDirective extends BaseDirective implements AfterView
5146
5241
  height?: number;
5147
5242
  dontUseTopBound: boolean;
5148
5243
  setMinHeight: boolean;
5244
+ setMaxHeight: boolean;
5149
5245
  heightChanged: EventEmitter<any>;
5150
5246
  _height: string;
5151
5247
  topBound: string;
@@ -5154,7 +5250,7 @@ declare class FillEmptySpaceDirective extends BaseDirective implements AfterView
5154
5250
  Refresh(): void;
5155
5251
  private _setHeightOfFormContent;
5156
5252
  static ɵfac: i0.ɵɵFactoryDeclaration<FillEmptySpaceDirective, never>;
5157
- static ɵdir: i0.ɵɵDirectiveDeclaration<FillEmptySpaceDirective, "[fillEmptySpace]", ["fillEmptySpace"], { "containerDom": { "alias": "containerDom"; "required": false; }; "decrement": { "alias": "decrement"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dontUseTopBound": { "alias": "dontUseTopBound"; "required": false; }; "setMinHeight": { "alias": "setMinHeight"; "required": false; }; }, { "heightChanged": "heightChanged"; }, never, never, false, never>;
5253
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FillEmptySpaceDirective, "[fillEmptySpace]", ["fillEmptySpace"], { "containerDom": { "alias": "containerDom"; "required": false; }; "decrement": { "alias": "decrement"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dontUseTopBound": { "alias": "dontUseTopBound"; "required": false; }; "setMinHeight": { "alias": "setMinHeight"; "required": false; }; "setMaxHeight": { "alias": "setMaxHeight"; "required": false; }; }, { "heightChanged": "heightChanged"; }, never, never, false, never>;
5158
5254
  }
5159
5255
 
5160
5256
  declare class FormCloseDirective extends BaseDirective implements AfterViewInit {
@@ -5692,7 +5788,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
5692
5788
  /** Inserted by Angular inject() migration for backwards compatibility */
5693
5789
  constructor();
5694
5790
  static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
5695
- static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i144.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
5791
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i145.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
5696
5792
  static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
5697
5793
  }
5698
5794
 
@@ -5930,9 +6026,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
5930
6026
  constructor();
5931
6027
  static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
5932
6028
  static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
5933
- static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i144.FormsModule, typeof i144.ReactiveFormsModule], [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective]>;
6029
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof DynamicUlvPagingComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i145.FormsModule, typeof i145.ReactiveFormsModule], [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof DynamicUlvPagingComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective]>;
5934
6030
  static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
5935
6031
  }
5936
6032
 
5937
- export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DefaultCommandsAccessValue, DefaultGridSetting, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, DynamicUlvToolbarComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GanttChartHelper, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginAction, LoginForm, LoginFormData, LoginFormUi, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, Offline, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportBreadcrumbResolver, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, SplitterComponent, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, Ui, UiService, Ul, UlvCommandDirective, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, fixUnclosedParentheses, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, scrollToElement, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
5938
- export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavGroupItem, NavGroupItemData, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, PushState, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
6033
+ export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DefaultCommandsAccessValue, DefaultGridSetting, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, DynamicUlvPagingComponent, DynamicUlvToolbarComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GanttChartHelper, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetAllHorizontalFromLayout94, GetContentType, GetDefaultMoObjectInfo, GetImgTags, GetViewableExtensions, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginAction, LoginForm, LoginFormData, LoginFormUi, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MimeTypes, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, Offline, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportBreadcrumbResolver, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, SplitterComponent, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, Ui, UiService, Ul, UlvCommandDirective, UlvHeightSizeType, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, addDynamicVariableTo, availablePrefixes, bodyClick, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, fixUnclosedParentheses, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, removeDynamicStyle, requestAnimationFramePolyfill, scrollToElement, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
6034
+ export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavGroupItem, NavGroupItemData, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PictureGroupItem, PlaceHolderDataModel, PortalDataModel, PushState, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, ToolbarButtonReportViewType, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barsa-novin-ray-core",
3
- "version": "2.3.116",
3
+ "version": "2.3.120",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^20.0.6",
6
6
  "@angular/common": "^20.0.6"
@@ -1 +0,0 @@
1
- {"version":3,"file":"barsa-novin-ray-core-barsa-report-page.module-52O0tR5U.mjs","sources":["../../../projects/barsa-novin-ray-core/src/lib/report-page-routing/barsa-report-page-routing.module.ts","../../../projects/barsa-novin-ray-core/src/lib/report-page-routing/barsa-report-page.module.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\r\nimport { Routes, RouterModule } from '@angular/router'; // CLI imports router\r\nimport { formRoutes } from '../form-page-routing';\r\nimport { ReportEmptyPageComponent } from '../report-empty-page/report-empty-page.component';\r\n\r\nconst routes: Routes = [\r\n {\r\n path: '',\r\n component: ReportEmptyPageComponent,\r\n children: [formRoutes()],\r\n data: {\r\n hideBreadCrumb: true\r\n }\r\n }\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forChild(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class BarsaReportPageRoutingModule {}\r\n","import { ComponentFactoryResolver, CUSTOM_ELEMENTS_SCHEMA, NgModule, NO_ERRORS_SCHEMA, inject } from '@angular/core';\r\nimport { FormsModule } from '@angular/forms';\r\nimport { CommonModule } from '@angular/common';\r\nimport { BaseModule } from '../base.module';\r\nimport { DynamicComponentService } from '../services';\r\nimport { BarsaReportPageRoutingModule } from './barsa-report-page-routing.module';\r\n\r\nconst components = [];\r\n\r\n@NgModule({\r\n imports: [CommonModule, FormsModule, BarsaReportPageRoutingModule],\r\n declarations: [...components],\r\n exports: [...components],\r\n schemas: [NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA]\r\n})\r\nexport class BarsaReportPageModule extends BaseModule {\r\n protected dcm: DynamicComponentService;\r\n protected cfr: ComponentFactoryResolver;\r\n\r\n protected dynamicComponents = [...components];\r\n\r\n /** Inserted by Angular inject() migration for backwards compatibility */\r\n \r\n constructor() {\r\n const dcm = inject(DynamicComponentService);\r\n const cfr = inject(ComponentFactoryResolver);\r\n\r\n super(dcm, cfr, 'BarsaReportPageModule');\r\n \r\n this.dcm = dcm;\r\n this.cfr = cfr;\r\n }\r\n}\r\n"],"names":[],"mappings":";;;;;;;;AAKA,MAAM,MAAM,GAAW;AACnB,IAAA;AACI,QAAA,IAAI,EAAE,EAAE;AACR,QAAA,SAAS,EAAE,wBAAwB;AACnC,QAAA,QAAQ,EAAE,CAAC,UAAU,EAAE,CAAC;AACxB,QAAA,IAAI,EAAE;AACF,YAAA,cAAc,EAAE;AACnB;AACJ;CACJ;MAMY,4BAA4B,CAAA;8GAA5B,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAA5B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,4BAA4B,wCAF3B,YAAY,CAAA,EAAA,CAAA,CAAA;+GAEb,4BAA4B,EAAA,OAAA,EAAA,CAH3B,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,EAC7B,YAAY,CAAA,EAAA,CAAA,CAAA;;2FAEb,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBAJxC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,OAAO,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;oBACxC,OAAO,EAAE,CAAC,YAAY;AACzB,iBAAA;;;ACZD,MAAM,UAAU,GAAG,EAAE;AAQf,MAAO,qBAAsB,SAAQ,UAAU,CAAA;;AAQjD,IAAA,WAAA,GAAA;AACI,QAAA,MAAM,GAAG,GAAG,MAAM,CAAC,uBAAuB,CAAC;AAC3C,QAAA,MAAM,GAAG,GAAG,MAAM,CAAC,wBAAwB,CAAC;AAE5C,QAAA,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,uBAAuB,CAAC;AARlC,QAAA,IAAA,CAAA,iBAAiB,GAAG,CAAC,GAAG,UAAU,CAAC;AAUzC,QAAA,IAAI,CAAC,GAAG,GAAG,GAAG;AACd,QAAA,IAAI,CAAC,GAAG,GAAG,GAAG;;8GAfT,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAArB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,EALpB,OAAA,EAAA,CAAA,YAAY,EAAE,WAAW,EAAE,4BAA4B,CAAA,EAAA,CAAA,CAAA;AAKxD,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,EALpB,OAAA,EAAA,CAAA,YAAY,EAAE,WAAW,EAAE,4BAA4B,CAAA,EAAA,CAAA,CAAA;;2FAKxD,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,WAAW,EAAE,4BAA4B,CAAC;AAClE,oBAAA,YAAY,EAAE,CAAC,GAAG,UAAU,CAAC;AAC7B,oBAAA,OAAO,EAAE,CAAC,GAAG,UAAU,CAAC;AACxB,oBAAA,OAAO,EAAE,CAAC,gBAAgB,EAAE,sBAAsB;AACrD,iBAAA;;;;;"}