barsa-novin-ray-core 2.0.106 → 2.0.107

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.
@@ -1930,7 +1930,7 @@ function FindLayoutSettingFromLayout94(layout94, layoutTitle) {
1930
1930
  if (!layoutTitle) {
1931
1931
  return null;
1932
1932
  }
1933
- if (layout94.Caption === layoutTitle || layout94.Title === layoutTitle) {
1933
+ if (layout94.Caption === layoutTitle || layout94.Title === layoutTitle || layout94.ControlId === layoutTitle) {
1934
1934
  return layout94;
1935
1935
  }
1936
1936
  let tempLayout94 = null;
@@ -4220,7 +4220,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
4220
4220
  }], ctorParameters: () => [] });
4221
4221
 
4222
4222
  class SeperatorFixPipe {
4223
- transform(buttons) {
4223
+ transform(buttons, removeSeperator = false) {
4224
4224
  if (Array.isArray(buttons)) {
4225
4225
  buttons?.forEach((c, i) => {
4226
4226
  if (typeof c === 'string') {
@@ -4228,7 +4228,7 @@ class SeperatorFixPipe {
4228
4228
  }
4229
4229
  });
4230
4230
  }
4231
- return buttons;
4231
+ return !removeSeperator ? buttons : buttons.filter((c) => typeof c === 'object' && c.cls);
4232
4232
  }
4233
4233
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: SeperatorFixPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4234
4234
  static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.5", ngImport: i0, type: SeperatorFixPipe, name: "seperatorFix" }); }
@@ -5312,6 +5312,7 @@ class UlvMainService {
5312
5312
  this._hideToolbarSource = new BehaviorSubject(true);
5313
5313
  this._onDestroy$ = new Subject();
5314
5314
  this._maskSource = new BehaviorSubject(false);
5315
+ this._showContextMenuSource = new Subject();
5315
5316
  this._viewerMaskSource = new BehaviorSubject(false);
5316
5317
  this._visibleSource = new BehaviorSubject(true);
5317
5318
  this._enableSource = new BehaviorSubject(true);
@@ -5402,6 +5403,9 @@ class UlvMainService {
5402
5403
  this.allSearchPanelSettings$
5403
5404
  ]).pipe(map(([id, settings]) => settings?.find((c) => c.Id === id)), shareReplay(1));
5404
5405
  }
5406
+ get showContextMenu$() {
5407
+ return this._showContextMenuSource.asObservable();
5408
+ }
5405
5409
  get gridFreeColumnSizing$() {
5406
5410
  return this._gridFreeColumnSizing$.asObservable();
5407
5411
  }
@@ -5778,6 +5782,7 @@ class UlvMainService {
5778
5782
  _addEventListener(context) {
5779
5783
  context.on({
5780
5784
  scope: this,
5785
+ ShowContextMenu: this._showContextMenu,
5781
5786
  MaskChanged: this._maskChanged,
5782
5787
  ViewerMaskChanged: this._viewerMaskChanged,
5783
5788
  ViewerControlChanged: this._viewerControlChanged,
@@ -5914,6 +5919,7 @@ class UlvMainService {
5914
5919
  this._hideToolbarSource.next(hideToolbar);
5915
5920
  }
5916
5921
  _unscubscribeContext() {
5922
+ this.context.un('ShowContextMenu', this._showContextMenu);
5917
5923
  this.context.un('MaskChanged', this._maskChanged);
5918
5924
  this.context.un('ViewerControlChanged', this._viewerControlChanged);
5919
5925
  this.context.un('ViewerMaskChanged', this._viewerMaskChanged);
@@ -5956,6 +5962,9 @@ class UlvMainService {
5956
5962
  _maskChanged(mask) {
5957
5963
  this._maskSource.next(mask);
5958
5964
  }
5965
+ _showContextMenu(xy) {
5966
+ this._showContextMenuSource.next(xy);
5967
+ }
5959
5968
  _viewerMaskChanged(viewerMask) {
5960
5969
  this._viewerMaskSource.next(viewerMask);
5961
5970
  }
@@ -11490,78 +11499,78 @@ class RootPortalComponent extends PageBaseComponent {
11490
11499
  }
11491
11500
  }
11492
11501
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: RootPortalComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
11493
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.5", type: RootPortalComponent, selector: "bnrc-root-portal", viewQueries: [{ propertyName: "sectionRef", first: true, predicate: ["sectionRef"], descendants: true }, { propertyName: "footerRefVcr", first: true, predicate: ["footerRef"], descendants: true, read: ViewContainerRef }], usesInheritance: true, ngImport: i0, template: `
11494
- @if(inLocalMode){
11495
- <div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
11496
- <button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
11497
- حذف اطلاعات آفلاین
11498
- </button>
11499
- <button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
11500
- حذف اطلاعات آفلاین و برگشت به حالت آنلاین
11501
- </button>
11502
- <button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
11503
- ارسال اطلاعات آفلاین به سرور
11504
- </button>
11505
- </div>
11506
- } @if (imageUrl) {
11507
- <div id="headerSpaceHolder" #headerSpaceHolder>
11508
- <div id="bgOuterHolder" #bgOuterHolder>
11509
- <div id="bgInnerHolder" style="height: 100vh">
11510
- <div class="backgroundImage" id="backgroundImage">
11511
- <img class="picture" [src]="imageUrl" loading="lazy" />
11512
- <span id="backgroundImageOverlay" class="overlay"></span>
11513
- </div>
11514
- </div>
11515
- </div>
11516
- </div>
11517
- }
11518
- <section class="section" id="mainpage" #sectionRef>
11519
- <div #containerRef></div>
11520
- </section>
11521
- <div class="page-wrapper">
11522
- <router-outlet></router-outlet>
11523
- </div>
11524
- <!-- <footer #footerRef></footer> -->
11525
- <ng-container #footerRef></ng-container>
11502
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.5", type: RootPortalComponent, selector: "bnrc-root-portal", viewQueries: [{ propertyName: "sectionRef", first: true, predicate: ["sectionRef"], descendants: true }, { propertyName: "footerRefVcr", first: true, predicate: ["footerRef"], descendants: true, read: ViewContainerRef }], usesInheritance: true, ngImport: i0, template: `
11503
+ @if(inLocalMode){
11504
+ <div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
11505
+ <button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
11506
+ حذف اطلاعات آفلاین
11507
+ </button>
11508
+ <button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
11509
+ حذف اطلاعات آفلاین و برگشت به حالت آنلاین
11510
+ </button>
11511
+ <button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
11512
+ ارسال اطلاعات آفلاین به سرور
11513
+ </button>
11514
+ </div>
11515
+ } @if (imageUrl) {
11516
+ <div id="headerSpaceHolder" #headerSpaceHolder>
11517
+ <div id="bgOuterHolder" #bgOuterHolder>
11518
+ <div id="bgInnerHolder" style="height: 100vh">
11519
+ <div class="backgroundImage" id="backgroundImage">
11520
+ <img class="picture" [src]="imageUrl" loading="lazy" />
11521
+ <span id="backgroundImageOverlay" class="overlay"></span>
11522
+ </div>
11523
+ </div>
11524
+ </div>
11525
+ </div>
11526
+ }
11527
+ <section class="section" id="mainpage" #sectionRef>
11528
+ <div #containerRef></div>
11529
+ </section>
11530
+ <div class="page-wrapper">
11531
+ <router-outlet></router-outlet>
11532
+ </div>
11533
+ <!-- <footer #footerRef></footer> -->
11534
+ <ng-container #footerRef></ng-container>
11526
11535
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
11527
11536
  }
11528
11537
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: RootPortalComponent, decorators: [{
11529
11538
  type: Component,
11530
11539
  args: [{
11531
11540
  selector: 'bnrc-root-portal',
11532
- template: `
11533
- @if(inLocalMode){
11534
- <div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
11535
- <button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
11536
- حذف اطلاعات آفلاین
11537
- </button>
11538
- <button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
11539
- حذف اطلاعات آفلاین و برگشت به حالت آنلاین
11540
- </button>
11541
- <button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
11542
- ارسال اطلاعات آفلاین به سرور
11543
- </button>
11544
- </div>
11545
- } @if (imageUrl) {
11546
- <div id="headerSpaceHolder" #headerSpaceHolder>
11547
- <div id="bgOuterHolder" #bgOuterHolder>
11548
- <div id="bgInnerHolder" style="height: 100vh">
11549
- <div class="backgroundImage" id="backgroundImage">
11550
- <img class="picture" [src]="imageUrl" loading="lazy" />
11551
- <span id="backgroundImageOverlay" class="overlay"></span>
11552
- </div>
11553
- </div>
11554
- </div>
11555
- </div>
11556
- }
11557
- <section class="section" id="mainpage" #sectionRef>
11558
- <div #containerRef></div>
11559
- </section>
11560
- <div class="page-wrapper">
11561
- <router-outlet></router-outlet>
11562
- </div>
11563
- <!-- <footer #footerRef></footer> -->
11564
- <ng-container #footerRef></ng-container>
11541
+ template: `
11542
+ @if(inLocalMode){
11543
+ <div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
11544
+ <button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
11545
+ حذف اطلاعات آفلاین
11546
+ </button>
11547
+ <button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
11548
+ حذف اطلاعات آفلاین و برگشت به حالت آنلاین
11549
+ </button>
11550
+ <button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
11551
+ ارسال اطلاعات آفلاین به سرور
11552
+ </button>
11553
+ </div>
11554
+ } @if (imageUrl) {
11555
+ <div id="headerSpaceHolder" #headerSpaceHolder>
11556
+ <div id="bgOuterHolder" #bgOuterHolder>
11557
+ <div id="bgInnerHolder" style="height: 100vh">
11558
+ <div class="backgroundImage" id="backgroundImage">
11559
+ <img class="picture" [src]="imageUrl" loading="lazy" />
11560
+ <span id="backgroundImageOverlay" class="overlay"></span>
11561
+ </div>
11562
+ </div>
11563
+ </div>
11564
+ </div>
11565
+ }
11566
+ <section class="section" id="mainpage" #sectionRef>
11567
+ <div #containerRef></div>
11568
+ </section>
11569
+ <div class="page-wrapper">
11570
+ <router-outlet></router-outlet>
11571
+ </div>
11572
+ <!-- <footer #footerRef></footer> -->
11573
+ <ng-container #footerRef></ng-container>
11565
11574
  `,
11566
11575
  changeDetection: ChangeDetectionStrategy.OnPush
11567
11576
  }]
@@ -12959,6 +12968,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
12959
12968
  type: Input
12960
12969
  }] } });
12961
12970
 
12971
+ class AbsoluteDivBodyDirective extends BaseDirective {
12972
+ constructor(_el, renderer) {
12973
+ super(_el);
12974
+ this._el = _el;
12975
+ this.renderer = renderer;
12976
+ this.elemCreated = new EventEmitter();
12977
+ this.id = '_' + getUniqueId(4);
12978
+ // this._appendDivToBody();
12979
+ }
12980
+ ngOnInit() {
12981
+ super.ngOnInit();
12982
+ this._appendDivToBody();
12983
+ }
12984
+ _appendDivToBody() {
12985
+ const elemDiv = document.createElement('div');
12986
+ elemDiv.id = this.id;
12987
+ elemDiv.style.cssText = 'position:absolute;opacity:0;visibility:hidden;';
12988
+ document.body.appendChild(elemDiv);
12989
+ this.elem = elemDiv;
12990
+ this.elemCreated.emit(elemDiv);
12991
+ }
12992
+ _getEl() {
12993
+ const x = document.querySelector('#' + this.id);
12994
+ return x;
12995
+ }
12996
+ ngOnDestroy() {
12997
+ super.ngOnDestroy();
12998
+ this.elem?.remove();
12999
+ }
13000
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: AbsoluteDivBodyDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
13001
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: AbsoluteDivBodyDirective, selector: "[absDiv]", outputs: { elemCreated: "elemCreated" }, usesInheritance: true, ngImport: i0 }); }
13002
+ }
13003
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: AbsoluteDivBodyDirective, decorators: [{
13004
+ type: Directive,
13005
+ args: [{
13006
+ selector: '[absDiv]'
13007
+ }]
13008
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { elemCreated: [{
13009
+ type: Output
13010
+ }] } });
13011
+
12962
13012
  class PortalDynamicPageResolver {
12963
13013
  constructor(portalService) {
12964
13014
  this.portalService = portalService;
@@ -13988,7 +14038,8 @@ const directives = [
13988
14038
  RouteFormChangeDirective,
13989
14039
  DynamicStyleDirective,
13990
14040
  NowraptextDirective,
13991
- LabelmandatoryDirective
14041
+ LabelmandatoryDirective,
14042
+ AbsoluteDivBodyDirective
13992
14043
  ];
13993
14044
  const pipes = [
13994
14045
  NumeralPipe,
@@ -14243,7 +14294,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
14243
14294
  RouteFormChangeDirective,
14244
14295
  DynamicStyleDirective,
14245
14296
  NowraptextDirective,
14246
- LabelmandatoryDirective], imports: [CommonModule,
14297
+ LabelmandatoryDirective,
14298
+ AbsoluteDivBodyDirective], imports: [CommonModule,
14247
14299
  HttpClientModule,
14248
14300
  BarsaNovinRayCoreRoutingModule,
14249
14301
  BarsaSapUiFormPageModule,
@@ -14337,7 +14389,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
14337
14389
  RouteFormChangeDirective,
14338
14390
  DynamicStyleDirective,
14339
14391
  NowraptextDirective,
14340
- LabelmandatoryDirective] }); }
14392
+ LabelmandatoryDirective,
14393
+ AbsoluteDivBodyDirective] }); }
14341
14394
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BarsaNovinRayCoreModule, imports: [CommonModule,
14342
14395
  HttpClientModule,
14343
14396
  BarsaNovinRayCoreRoutingModule,
@@ -14364,5 +14417,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
14364
14417
  * Generated bundle index. Do not edit.
14365
14418
  */
14366
14419
 
14367
- export { APP_VERSION, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
14420
+ export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
14368
14421
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map