barsa-novin-ray-core 2.3.128 → 2.3.130

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, signal, ViewContainerRef, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
3
- import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, combineLatest, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, switchMap, forkJoin, shareReplay, withLatestFrom as withLatestFrom$1, tap as tap$1, fromEvent, throwError, merge, interval, filter as filter$1, lastValueFrom, timeout, catchError as catchError$1, takeUntil as takeUntil$1, take, skip, Observable, timer, mergeWith, Subscription } from 'rxjs';
3
+ import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, combineLatest, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, switchMap, forkJoin, shareReplay, withLatestFrom as withLatestFrom$1, tap as tap$1, fromEvent, throwError, merge, interval, filter as filter$1, lastValueFrom, timeout, catchError as catchError$1, takeUntil as takeUntil$1, take, skip, Observable, timer, throttle as throttle$1, mergeWith, Subscription } from 'rxjs';
4
4
  import * as i1 from '@angular/router';
5
5
  import { Router, NavigationEnd, ActivatedRoute, RouterEvent, NavigationStart, RouterModule, RouteReuseStrategy } from '@angular/router';
6
6
  import { DomSanitizer, Title } from '@angular/platform-browser';
7
- import { filter, startWith, map, tap, takeUntil, withLatestFrom, delay, debounceTime, distinctUntilChanged, exhaustMap as exhaustMap$1, concatMap, finalize, publishReplay, refCount, shareReplay as shareReplay$1, switchMap as switchMap$1, catchError, merge as merge$1, pluck, mergeWith as mergeWith$1 } from 'rxjs/operators';
7
+ import { filter, startWith, map, tap, takeUntil, throttle, withLatestFrom, delay, debounceTime, distinctUntilChanged, exhaustMap as exhaustMap$1, concatMap, finalize, publishReplay, refCount, shareReplay as shareReplay$1, switchMap as switchMap$1, catchError, merge as merge$1, pluck, mergeWith as mergeWith$1 } from 'rxjs/operators';
8
8
  import moment from 'moment';
9
9
  import moment$1 from 'moment-hijri';
10
10
  import 'moment/locale/ar';
@@ -4690,6 +4690,7 @@ class FormPanelService extends BaseComponent {
4690
4690
  this._hideTitle$ = new BehaviorSubject(false);
4691
4691
  this._hidePin$ = new BehaviorSubject(false);
4692
4692
  this.ColonInLabel = true;
4693
+ this.toolbarClick$ = new Subject();
4693
4694
  this._contextSource = new BehaviorSubject(null);
4694
4695
  this._formHeightSource = new BehaviorSubject(0);
4695
4696
  this._searchPanelIsObjectSource = new BehaviorSubject(false);
@@ -4722,6 +4723,14 @@ class FormPanelService extends BaseComponent {
4722
4723
  this._router = inject(Router);
4723
4724
  this._activatedRoute = inject(ActivatedRoute);
4724
4725
  this.context$ = this._contextSource.asObservable().pipe(tap((context) => this._prepareContext(context)), takeUntil(this._onDestroy$));
4726
+ this.toolbarClick$
4727
+ .pipe(throttle(() => of(1000), {
4728
+ leading: true,
4729
+ trailing: false
4730
+ }), takeUntil(this._onDestroy$))
4731
+ .subscribe((c) => {
4732
+ this._toolbarClick(c);
4733
+ });
4725
4734
  this.searchPanelIsObject$ = this._searchPanelIsObjectSource.asObservable().pipe(takeUntil(this._onDestroy$));
4726
4735
  this.isSearchPanel$ = this._isSearchPanelSource.asObservable().pipe(takeUntil(this._onDestroy$));
4727
4736
  this.isSearcPanelInSideContent$ = this._isSearcPanelInSideContent
@@ -4826,9 +4835,6 @@ class FormPanelService extends BaseComponent {
4826
4835
  this._layoutSource.next(null);
4827
4836
  // this._onDestroy$.next();
4828
4837
  }
4829
- toolbarClick(btn) {
4830
- btn.handler(btn, this._context);
4831
- }
4832
4838
  wfChoice(btn) {
4833
4839
  this._context.fireEvent('TransitionSelect', this._context, btn);
4834
4840
  }
@@ -5084,7 +5090,7 @@ class FormPanelService extends BaseComponent {
5084
5090
  return;
5085
5091
  }
5086
5092
  const breadCrumb = this._headerLayoutSource.getValue();
5087
- const mainChild = this._activatedRoute.children.find((c) => c.outlet === 'main');
5093
+ const mainChild = this._activatedRoute.children.find((c) => c.outlet === 'main') || this._activatedRoute;
5088
5094
  const currentParams = mainChild?.snapshot.params ?? {};
5089
5095
  const queryParamsToUpdate = {
5090
5096
  id: mo.$State === 'New' ? '0' : mo.Id,
@@ -5145,6 +5151,9 @@ class FormPanelService extends BaseComponent {
5145
5151
  this._initialize(context);
5146
5152
  this._context = context;
5147
5153
  }
5154
+ _toolbarClick(btn) {
5155
+ btn.handler(btn, this._context);
5156
+ }
5148
5157
  }
5149
5158
 
5150
5159
  class FormService {
@@ -5413,11 +5422,13 @@ function searchCommandsInApp(app, keyword) {
5413
5422
  appTitle,
5414
5423
  source: 'Command',
5415
5424
  id: command.Name || command.Key,
5425
+ canPin: true,
5416
5426
  caption: command.Caption,
5417
5427
  path: `${group.Caption || group.Name}`,
5418
5428
  original: command,
5419
5429
  hidden: false,
5420
- depth: 0
5430
+ depth: 0,
5431
+ folderId: ''
5421
5432
  });
5422
5433
  }
5423
5434
  for (const menu of command.Menu || []) {
@@ -5426,11 +5437,13 @@ function searchCommandsInApp(app, keyword) {
5426
5437
  appId: app.Id,
5427
5438
  appTitle,
5428
5439
  source: 'Command',
5440
+ canPin: true,
5429
5441
  id: menu.CommandId,
5430
5442
  caption: menu.Caption,
5431
5443
  path: `${group.Caption || group.Name} > ${command.Caption}`,
5432
5444
  original: menu,
5433
5445
  hidden: false,
5446
+ folderId: '',
5434
5447
  depth: 0
5435
5448
  });
5436
5449
  }
@@ -5460,8 +5473,12 @@ function searchNavigatorInApp(app, keyword) {
5460
5473
  const currentPath = path ? `${path} > ${node.Caption || node.Name}` : node.Caption || node.Name || '';
5461
5474
  if (node.Caption && node.Caption.toLowerCase().includes(keyword.toLowerCase())) {
5462
5475
  let url = '';
5476
+ let canPin = false;
5477
+ let source = 'Navigator';
5463
5478
  if (!node.IsRoot && node.ReportId && node.ReportId !== '0') {
5464
5479
  url = `#/application/report/${node.FolderId}__${node.Caption}__${node.ReportId}`;
5480
+ canPin = true;
5481
+ source = 'Report';
5465
5482
  }
5466
5483
  else if (node.IsRoot) {
5467
5484
  url = `#/application/${app.Id}`;
@@ -5469,14 +5486,16 @@ function searchNavigatorInApp(app, keyword) {
5469
5486
  results.push({
5470
5487
  appId: app.Id,
5471
5488
  appTitle: root.Caption,
5472
- source: 'Navigator',
5489
+ source,
5473
5490
  id: node.Id,
5491
+ folderId: node.FolderId,
5474
5492
  url,
5475
5493
  caption: node.Caption,
5476
5494
  path: currentPath,
5477
5495
  original: node,
5478
5496
  hidden: depth === 1,
5479
- depth
5497
+ depth,
5498
+ canPin
5480
5499
  });
5481
5500
  }
5482
5501
  node.Items?.forEach((child) => walk(child, currentPath, depth + 1));
@@ -5939,7 +5958,7 @@ function reportRoutes(authGuard = false) {
5939
5958
  return {
5940
5959
  path: 'report/:id',
5941
5960
  canActivate: authGuard ? [AuthGuard] : [],
5942
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-DIOdzySE.mjs').then((m) => m.BarsaReportPageModule),
5961
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CdYA6Y8F.mjs').then((m) => m.BarsaReportPageModule),
5943
5962
  resolve: {
5944
5963
  breadcrumb: ReportBreadcrumbResolver
5945
5964
  }
@@ -9299,7 +9318,8 @@ class RoutingService {
9299
9318
  BarsaApi.Bw.FormHandler = this;
9300
9319
  this.oldNavigation = BarsaApi.Bw.Navigate;
9301
9320
  BarsaApi.Bw.Navigate = (navigation, isRelative, queryParams, data) => {
9302
- this._parentRoutingService?.navigate(navigation, isRelative, queryParams, data);
9321
+ const routingService = this._parentRoutingService || this;
9322
+ routingService.navigate(navigation, isRelative, queryParams, data);
9303
9323
  };
9304
9324
  }
9305
9325
  ngOnDestroy() {
@@ -9881,7 +9901,7 @@ class FormBaseComponent extends BaseComponent {
9881
9901
  this.fullscreen = !this.fullscreen;
9882
9902
  }
9883
9903
  onToolbarClick(btn) {
9884
- this._formPanelService.toolbarClick(btn);
9904
+ this._formPanelService.toolbarClick$.next(btn);
9885
9905
  }
9886
9906
  onWorkflowChoiceClick(wfChoice) {
9887
9907
  this._formPanelService.wfChoice(wfChoice);
@@ -10940,6 +10960,8 @@ class MoForReportModel extends MoForReportModelBase {
10940
10960
  }
10941
10961
  class ReportBaseInfo {
10942
10962
  }
10963
+ class FormToolbarButton {
10964
+ }
10943
10965
  class ReportExtraInfo extends ReportBaseInfo {
10944
10966
  }
10945
10967
  class MetaobjectRelationModel extends ListRelationModel {
@@ -11252,9 +11274,8 @@ class ReportViewBaseComponent extends BaseComponent {
11252
11274
  .subscribe(() => this.onResize());
11253
11275
  }
11254
11276
  ngOnDestroy() {
11255
- if (this._ro) {
11256
- this._ro.disconnect();
11257
- }
11277
+ super.ngOnDestroy();
11278
+ this._ro?.disconnect();
11258
11279
  }
11259
11280
  ngOnChanges(changes) {
11260
11281
  super.ngOnChanges(changes);
@@ -12828,6 +12849,16 @@ class FillEmptySpaceDirective extends BaseDirective {
12828
12849
  if (this.disable) {
12829
12850
  return;
12830
12851
  }
12852
+ this._handleResize();
12853
+ }
12854
+ ngOnDestroy() {
12855
+ super.ngOnDestroy();
12856
+ this._ro?.disconnect();
12857
+ }
12858
+ Refresh() {
12859
+ this._setHeightOfFormContent();
12860
+ }
12861
+ _setHeight() {
12831
12862
  setTimeout(() => {
12832
12863
  this._setHeightOfFormContent();
12833
12864
  if (this.topBound === '0px') {
@@ -12835,15 +12866,30 @@ class FillEmptySpaceDirective extends BaseDirective {
12835
12866
  this._setHeightOfFormContent();
12836
12867
  }, 1000);
12837
12868
  }
12838
- });
12869
+ }, 100);
12839
12870
  }
12840
- Refresh() {
12841
- this._setHeightOfFormContent();
12871
+ _handleResize() {
12872
+ if (typeof ResizeObserver === 'undefined') {
12873
+ return;
12874
+ } // چک کردن پشتیبانی مرورگر به جای try-catch
12875
+ this._ro = new ResizeObserver((entries) => {
12876
+ const entry = entries[0];
12877
+ // چک می‌کنیم که المنت مخفی (display: none) نباشد
12878
+ if (entry && entry.contentRect.height > 0) {
12879
+ requestAnimationFrame(() => {
12880
+ this._setHeight();
12881
+ });
12882
+ }
12883
+ });
12884
+ if (this._el?.nativeElement) {
12885
+ this._ro.observe(this._el.nativeElement);
12886
+ }
12842
12887
  }
12843
12888
  _setHeightOfFormContent() {
12844
12889
  const dom = this._el.nativeElement;
12845
12890
  const bound = dom.getBoundingClientRect();
12846
12891
  this.topBound = `${bound.top}px`;
12892
+ let decrement = this.decrement;
12847
12893
  if (this.oldTopBound && this.oldTopBound === this.topBound) {
12848
12894
  return;
12849
12895
  }
@@ -12864,18 +12910,18 @@ class FillEmptySpaceDirective extends BaseDirective {
12864
12910
  if (this.containerDom) {
12865
12911
  this._height = `${this.containerDom.getBoundingClientRect().height}px`;
12866
12912
  }
12867
- if (this.decrement) {
12868
- this.decrement = ` - ${this.decrement}`;
12913
+ if (decrement) {
12914
+ decrement = ` - ${decrement}`;
12869
12915
  }
12870
12916
  else {
12871
- this.decrement = '';
12917
+ decrement = '';
12872
12918
  }
12873
12919
  if (this.dontUseTopBound) {
12874
12920
  this.topBound = '0px';
12875
12921
  }
12876
12922
  this.oldTopBound = this.topBound;
12877
12923
  if (bound) {
12878
- this._renderer2.setStyle(dom, this.setMinHeight ? 'min-height' : 'height', `calc(${this._height} - ${this.topBound}${this.decrement})`);
12924
+ this._renderer2.setStyle(dom, this.setMinHeight ? 'min-height' : 'height', `calc(${this._height} - ${this.topBound}${decrement})`);
12879
12925
  }
12880
12926
  this.heightChanged.emit();
12881
12927
  }
@@ -15602,6 +15648,7 @@ class UlvCommandDirective extends BaseDirective {
15602
15648
  constructor() {
15603
15649
  super(...arguments);
15604
15650
  this.commandClick = new EventEmitter();
15651
+ this.$execute = new Subject();
15605
15652
  }
15606
15653
  onClick(event) {
15607
15654
  if (this.disable) {
@@ -15613,10 +15660,22 @@ class UlvCommandDirective extends BaseDirective {
15613
15660
  this.commandClick.emit(button);
15614
15661
  setTimeout(() => {
15615
15662
  // add settimeout because we need select row before execute row
15616
- executeUlvCommandHandler(button);
15663
+ // executeUlvCommandHandler(button);
15664
+ this.$execute.next();
15617
15665
  });
15618
15666
  return false;
15619
15667
  }
15668
+ ngOnInit() {
15669
+ super.ngOnInit();
15670
+ this.$execute
15671
+ .pipe(throttle$1(() => of(1000), {
15672
+ leading: true,
15673
+ trailing: false
15674
+ }), takeUntil$1(this._onDestroy$))
15675
+ .subscribe(() => {
15676
+ executeUlvCommandHandler(this.ulvCommandHandler);
15677
+ });
15678
+ }
15620
15679
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: UlvCommandDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
15621
15680
  static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: UlvCommandDirective, isStandalone: false, selector: "[ulvCommandHandler]", inputs: { ulvCommandHandler: "ulvCommandHandler", disable: "disable" }, outputs: { commandClick: "commandClick" }, host: { listeners: { "click": "onClick($event)" } }, usesInheritance: true, ngImport: i0 }); }
15622
15681
  }
@@ -18954,5 +19013,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18954
19013
  * Generated bundle index. Do not edit.
18955
19014
  */
18956
19015
 
18957
- export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, ColumnCustomComponentPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, RemoveNewlinePipe as aA, MoValuePipe as aB, FilterPipe as aC, FilterTabPipe as aD, MoReportValueConcatPipe as aE, FilterStringPipe as aF, SortPipe as aG, BbbTranslatePipe as aH, BarsaIconDictPipe as aI, FileInfoCountPipe as aJ, ControlUiPipe as aK, VisibleValuePipe as aL, FilterToolbarControlPipe as aM, MultipleGroupByPipe as aN, PictureFieldSourcePipe as aO, FioriIconPipe as aP, CanUploadFilePipe as aQ, ListCountPipe as aR, TotalSummaryPipe as aS, MergeFieldsToColumnsPipe as aT, FindColumnByDbNamePipe as aU, FilterColumnsByDetailsPipe as aV, MoInfoUlvMoListPipe as aW, ReversePipe as aX, ColumnCustomUiPipe as aY, SanitizeTextPipe as aZ, MoInfoUlvPagingPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoReportValuePipe as as, NumeralPipe as at, GroupByPipe as au, ContextMenuPipe as av, HeaderFacetValuePipe as aw, SeperatorFixPipe as ax, ConvertToStylePipe as ay, TlbButtonsPipe as az, PortalPageSidebarComponent as b, CalendarSettingsService as b$, ColumnValuePipe as b0, ColumnIconPipe as b1, RowNumberPipe as b2, ComboRowImagePipe as b3, IsExpandedNodePipe as b4, ThImageOrIconePipe as b5, FindPreviewColumnPipe as b6, ReplacePipe as b7, FilterWorkflowInMobilePipe as b8, HideColumnsInmobilePipe as b9, UiService as bA, UlvMainService as bB, UploadService as bC, NetworkStatusService as bD, AudioRecordingService as bE, VideoRecordingService as bF, LocalStorageService as bG, IndexedDbService as bH, BarsaStorageService as bI, PromptUpdateService as bJ, NotificationService as bK, ServiceWorkerNotificationService as bL, ColumnService as bM, ServiceWorkerCommuncationService as bN, SaveScrollPositionService as bO, RoutingService as bP, GroupByService as bQ, LayoutMainContentService as bR, TabpageService as bS, InMemoryStorageService as bT, ShellbarHeightService as bU, ApplicationCtrlrService as bV, PushCheckService as bW, IdbService as bX, PushNotificationService as bY, CardViewService as bZ, BaseSettingsService as b_, StringToNumberPipe as ba, ColumnValueOfParametersPipe as bb, HideAcceptCancelButtonsPipe as bc, FilterInlineActionListPipe as bd, IsImagePipe as be, ToolbarSettingsPipe as bf, CardMediaSizePipe as bg, LabelStarTrimPipe as bh, SplitPipe as bi, DynamicDarkColorPipe as bj, ChunkArrayPipe as bk, MapToChatMessagePipe as bl, PicturesByGroupIdPipe as bm, ScopedCssPipe as bn, ApiService as bo, BreadcrumbService as bp, CustomInjector as bq, DialogParams as br, BarsaDialogService as bs, FormPanelService as bt, FormService as bu, ContainerService as bv, HorizontalLayoutService as bw, LayoutService as bx, LogService as by, PortalService as bz, BaseDynamicComponent as c, SingleRelationControlInfoModel as c$, PortalDynamicPageResolver as c0, PortalFormPageResolver as c1, PortalPageResolver as c2, PortalReportPageResolver as c3, TileGroupBreadcrumResolver as c4, LoginSettingsResolver as c5, ReportBreadcrumbResolver as c6, DateService as c7, DateHijriService as c8, DateMiladiService as c9, LayoutItemBaseComponent as cA, LayoutPanelBaseComponent as cB, PageBaseComponent as cC, NumberBaseComponent as cD, GeneralControlInfoModel as cE, StringControlInfoModel as cF, RichStringControlInfoModel as cG, NumberControlInfoModel as cH, FilePictureInfoModel as cI, FileControlInfoModel as cJ, CommandControlInfoModel as cK, IconControlInfoModel as cL, PictureFileControlInfoModel as cM, GaugeControlInfoModel as cN, RelationListControlInfoModel as cO, HistoryControlInfoModel as cP, RabetehAkseTakiListiControlInfoModel as cQ, RelatedReportControlInfoModel as cR, CodeEditorControlInfoModel as cS, EnumControlInfoModel as cT, RowDataOption as cU, DateTimeControlInfoModel as cV, BoolControlInfoModel as cW, CalculateControlInfoModel as cX, SubformControlInfoModel as cY, LinearListControlInfoModel as cZ, ListRelationModel as c_, DateShamsiService as ca, FormNewComponent as cb, ReportContainerComponent as cc, FormComponent as cd, FieldUiComponent as ce, BarsaSapUiFormPageModule as cf, ReportNavigatorComponent as cg, BaseController as ch, ViewBase as ci, ModalRootComponent as cj, ButtonLoadingComponent as ck, UnlimitSessionComponent as cl, SplitterComponent as cm, APP_VERSION as cn, DIALOG_SERVICE as co, FORM_DIALOG_COMPONENT as cp, NOTIFICATAION_POPUP_SERVER as cq, TOAST_SERVICE as cr, NOTIFICATION_WEBWORKER_FACTORY as cs, FieldBaseComponent as ct, FormBaseComponent as cu, FormToolbarBaseComponent as cv, SystemBaseComponent as cw, ReportBaseComponent as cx, ReportItemBaseComponent as cy, ApplicationBaseComponent as cz, DynamicFormComponent as d, getAllItemsPerChildren as d$, MetaobjectDataModel as d0, MoForReportModelBase as d1, MoForReportModel as d2, ReportBaseInfo as d3, ReportExtraInfo as d4, MetaobjectRelationModel as d5, FieldInfoTypeEnum as d6, BaseReportModel as d7, DefaultCommandsAccessValue as d8, CustomCommand as d9, FormFieldReportPageComponent as dA, BaseUlvSettingComponent as dB, TableHeaderWidthMode as dC, setTableThWidth as dD, calculateColumnContent as dE, calculateColumnWidth as dF, setColumnWidthByMaxMoContentWidth as dG, calculateMoDataListContentWidthByColumnName as dH, calculateFreeColumnSize as dI, calculateColumnWidthFitToContainer as dJ, calcContextMenuWidth as dK, RotateImage as dL, isInLocalMode as dM, getLabelWidth as dN, getColumnValueOfMoDataList as dO, throwIfAlreadyLoaded as dP, measureText2 as dQ, measureText as dR, measureTextBy as dS, genrateInlineMoId as dT, enumValueToStringSize as dU, isVersionBiggerThan as dV, compareVersions as dW, scrollToElement as dX, executeUlvCommandHandler as dY, getUniqueId as dZ, getDateService as d_, ReportModel as da, ReportListModel as db, ReportFormModel as dc, ReportCalendarModel as dd, ReportTreeModel as de, ReportViewColumn as df, DefaultGridSetting as dg, GridSetting as dh, ColSetting as di, SortSetting as dj, ReportField as dk, DateRanges as dl, SortDirection as dm, SelectionMode as dn, UlvHeightSizeType as dp, FilesValidationHelper as dq, BarsaApi as dr, ReportViewBaseComponent as ds, FormPropsBaseComponent as dt, LinearListHelper as du, PageWithFormHandlerBaseComponent as dv, FormPageBaseComponent as dw, FormPageComponent as dx, BaseColumnPropsComponent as dy, TilePropsComponent as dz, DynamicItemComponent as e, GetContentType as e$, setOneDepthLevel as e0, isFirefox as e1, getImagePath as e2, checkPermission as e3, fixUnclosedParentheses as e4, isFunction as e5, DeviceWidth as e6, getHeaderValue as e7, elementInViewport2 as e8, PreventDefaulEvent as e9, getFormSettings as eA, createFormPanelMetaConditions as eB, getNewMoGridEditor as eC, createGridEditorFormPanel as eD, getLayoutControl as eE, getControlList as eF, shallowEqual as eG, toNumber as eH, InputNumber as eI, AffixRespondEvents as eJ, isTargetWindow as eK, getTargetRect as eL, getFieldValue as eM, availablePrefixes as eN, requestAnimationFramePolyfill as eO, ExecuteDynamicCommand as eP, ExecuteWorkflowChoiceDef as eQ, getRequestAnimationFrame as eR, cancelRequestAnimationFrame as eS, easeInOutCubic as eT, WordMimeType as eU, ImageMimeType as eV, PdfMimeType as eW, AllFilesMimeType as eX, VideoMimeType as eY, AudioMimeType as eZ, MimeTypes as e_, stopPropagation as ea, getParentHeight as eb, getComponentDefined as ec, isSafari as ed, isFF as ee, getDeviceIsPhone as ef, getDeviceIsDesktop as eg, getDeviceIsTablet as eh, getDeviceIsMobile as ei, getControlSizeMode as ej, formatBytes as ek, getValidExtension as el, getIcon as em, isImage as en, GetAllColumnsSorted as eo, GetVisibleValue as ep, GroupBy as eq, FindGroup as er, FillAllLayoutControls as es, FindToolbarItem as et, FindLayoutSettingFromLayout94 as eu, GetAllHorizontalFromLayout94 as ev, getGridSettings as ew, getResetGridSettings as ex, GetDefaultMoObjectInfo as ey, getLayout94ObjectInfo as ez, formRoutes as f, GetViewableExtensions as f0, ChangeLayoutInfoCustomUi as f1, mobile_regex as f2, number_only as f3, forbiddenValidator as f4, GetImgTags as f5, ImagetoPrint as f6, PrintImage as f7, SaveImageToFile as f8, validateAllFormFields as f9, getFocusableTagNames as fa, addCssVariableToRoot as fb, flattenTree as fc, IsDarkMode as fd, nullOrUndefinedString as fe, fromEntries as ff, bodyClick as fg, removeDynamicStyle as fh, addDynamicVariableTo as fi, AddDynamicFormStyles as fj, RemoveDynamicFormStyles as fk, ContainerComponent as fl, IntersectionStatus as fm, fromIntersectionObserver as fn, CustomRouteReuseStrategy as fo, AuthGuard as fp, RedirectHomeGuard as fq, RootPageComponent as fr, ResizableComponent as fs, ResizableDirective as ft, ResizableModule as fu, PushBannerComponent as fv, BarsaNovinRayCoreModule as fw, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, BaseItemContentPropsComponent as j, CardBaseItemContentPropsComponent as k, BaseFormToolbaritemPropsComponent as l, DynamicFormToolbaritemComponent as m, DynamicLayoutComponent as n, DynamicTileGroupComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
18958
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-CiIJMeoP.mjs.map
19016
+ export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, ColumnCustomComponentPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, RemoveNewlinePipe as aA, MoValuePipe as aB, FilterPipe as aC, FilterTabPipe as aD, MoReportValueConcatPipe as aE, FilterStringPipe as aF, SortPipe as aG, BbbTranslatePipe as aH, BarsaIconDictPipe as aI, FileInfoCountPipe as aJ, ControlUiPipe as aK, VisibleValuePipe as aL, FilterToolbarControlPipe as aM, MultipleGroupByPipe as aN, PictureFieldSourcePipe as aO, FioriIconPipe as aP, CanUploadFilePipe as aQ, ListCountPipe as aR, TotalSummaryPipe as aS, MergeFieldsToColumnsPipe as aT, FindColumnByDbNamePipe as aU, FilterColumnsByDetailsPipe as aV, MoInfoUlvMoListPipe as aW, ReversePipe as aX, ColumnCustomUiPipe as aY, SanitizeTextPipe as aZ, MoInfoUlvPagingPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoReportValuePipe as as, NumeralPipe as at, GroupByPipe as au, ContextMenuPipe as av, HeaderFacetValuePipe as aw, SeperatorFixPipe as ax, ConvertToStylePipe as ay, TlbButtonsPipe as az, PortalPageSidebarComponent as b, CalendarSettingsService as b$, ColumnValuePipe as b0, ColumnIconPipe as b1, RowNumberPipe as b2, ComboRowImagePipe as b3, IsExpandedNodePipe as b4, ThImageOrIconePipe as b5, FindPreviewColumnPipe as b6, ReplacePipe as b7, FilterWorkflowInMobilePipe as b8, HideColumnsInmobilePipe as b9, UiService as bA, UlvMainService as bB, UploadService as bC, NetworkStatusService as bD, AudioRecordingService as bE, VideoRecordingService as bF, LocalStorageService as bG, IndexedDbService as bH, BarsaStorageService as bI, PromptUpdateService as bJ, NotificationService as bK, ServiceWorkerNotificationService as bL, ColumnService as bM, ServiceWorkerCommuncationService as bN, SaveScrollPositionService as bO, RoutingService as bP, GroupByService as bQ, LayoutMainContentService as bR, TabpageService as bS, InMemoryStorageService as bT, ShellbarHeightService as bU, ApplicationCtrlrService as bV, PushCheckService as bW, IdbService as bX, PushNotificationService as bY, CardViewService as bZ, BaseSettingsService as b_, StringToNumberPipe as ba, ColumnValueOfParametersPipe as bb, HideAcceptCancelButtonsPipe as bc, FilterInlineActionListPipe as bd, IsImagePipe as be, ToolbarSettingsPipe as bf, CardMediaSizePipe as bg, LabelStarTrimPipe as bh, SplitPipe as bi, DynamicDarkColorPipe as bj, ChunkArrayPipe as bk, MapToChatMessagePipe as bl, PicturesByGroupIdPipe as bm, ScopedCssPipe as bn, ApiService as bo, BreadcrumbService as bp, CustomInjector as bq, DialogParams as br, BarsaDialogService as bs, FormPanelService as bt, FormService as bu, ContainerService as bv, HorizontalLayoutService as bw, LayoutService as bx, LogService as by, PortalService as bz, BaseDynamicComponent as c, SingleRelationControlInfoModel as c$, PortalDynamicPageResolver as c0, PortalFormPageResolver as c1, PortalPageResolver as c2, PortalReportPageResolver as c3, TileGroupBreadcrumResolver as c4, LoginSettingsResolver as c5, ReportBreadcrumbResolver as c6, DateService as c7, DateHijriService as c8, DateMiladiService as c9, LayoutItemBaseComponent as cA, LayoutPanelBaseComponent as cB, PageBaseComponent as cC, NumberBaseComponent as cD, GeneralControlInfoModel as cE, StringControlInfoModel as cF, RichStringControlInfoModel as cG, NumberControlInfoModel as cH, FilePictureInfoModel as cI, FileControlInfoModel as cJ, CommandControlInfoModel as cK, IconControlInfoModel as cL, PictureFileControlInfoModel as cM, GaugeControlInfoModel as cN, RelationListControlInfoModel as cO, HistoryControlInfoModel as cP, RabetehAkseTakiListiControlInfoModel as cQ, RelatedReportControlInfoModel as cR, CodeEditorControlInfoModel as cS, EnumControlInfoModel as cT, RowDataOption as cU, DateTimeControlInfoModel as cV, BoolControlInfoModel as cW, CalculateControlInfoModel as cX, SubformControlInfoModel as cY, LinearListControlInfoModel as cZ, ListRelationModel as c_, DateShamsiService as ca, FormNewComponent as cb, ReportContainerComponent as cc, FormComponent as cd, FieldUiComponent as ce, BarsaSapUiFormPageModule as cf, ReportNavigatorComponent as cg, BaseController as ch, ViewBase as ci, ModalRootComponent as cj, ButtonLoadingComponent as ck, UnlimitSessionComponent as cl, SplitterComponent as cm, APP_VERSION as cn, DIALOG_SERVICE as co, FORM_DIALOG_COMPONENT as cp, NOTIFICATAION_POPUP_SERVER as cq, TOAST_SERVICE as cr, NOTIFICATION_WEBWORKER_FACTORY as cs, FieldBaseComponent as ct, FormBaseComponent as cu, FormToolbarBaseComponent as cv, SystemBaseComponent as cw, ReportBaseComponent as cx, ReportItemBaseComponent as cy, ApplicationBaseComponent as cz, DynamicFormComponent as d, getDateService as d$, MetaobjectDataModel as d0, MoForReportModelBase as d1, MoForReportModel as d2, ReportBaseInfo as d3, FormToolbarButton as d4, ReportExtraInfo as d5, MetaobjectRelationModel as d6, FieldInfoTypeEnum as d7, BaseReportModel as d8, DefaultCommandsAccessValue as d9, TilePropsComponent as dA, FormFieldReportPageComponent as dB, BaseUlvSettingComponent as dC, TableHeaderWidthMode as dD, setTableThWidth as dE, calculateColumnContent as dF, calculateColumnWidth as dG, setColumnWidthByMaxMoContentWidth as dH, calculateMoDataListContentWidthByColumnName as dI, calculateFreeColumnSize as dJ, calculateColumnWidthFitToContainer as dK, calcContextMenuWidth as dL, RotateImage as dM, isInLocalMode as dN, getLabelWidth as dO, getColumnValueOfMoDataList as dP, throwIfAlreadyLoaded as dQ, measureText2 as dR, measureText as dS, measureTextBy as dT, genrateInlineMoId as dU, enumValueToStringSize as dV, isVersionBiggerThan as dW, compareVersions as dX, scrollToElement as dY, executeUlvCommandHandler as dZ, getUniqueId as d_, CustomCommand as da, ReportModel as db, ReportListModel as dc, ReportFormModel as dd, ReportCalendarModel as de, ReportTreeModel as df, ReportViewColumn as dg, DefaultGridSetting as dh, GridSetting as di, ColSetting as dj, SortSetting as dk, ReportField as dl, DateRanges as dm, SortDirection as dn, SelectionMode as dp, UlvHeightSizeType as dq, FilesValidationHelper as dr, BarsaApi as ds, ReportViewBaseComponent as dt, FormPropsBaseComponent as du, LinearListHelper as dv, PageWithFormHandlerBaseComponent as dw, FormPageBaseComponent as dx, FormPageComponent as dy, BaseColumnPropsComponent as dz, DynamicItemComponent as e, MimeTypes as e$, getAllItemsPerChildren as e0, setOneDepthLevel as e1, isFirefox as e2, getImagePath as e3, checkPermission as e4, fixUnclosedParentheses as e5, isFunction as e6, DeviceWidth as e7, getHeaderValue as e8, elementInViewport2 as e9, getLayout94ObjectInfo as eA, getFormSettings as eB, createFormPanelMetaConditions as eC, getNewMoGridEditor as eD, createGridEditorFormPanel as eE, getLayoutControl as eF, getControlList as eG, shallowEqual as eH, toNumber as eI, InputNumber as eJ, AffixRespondEvents as eK, isTargetWindow as eL, getTargetRect as eM, getFieldValue as eN, availablePrefixes as eO, requestAnimationFramePolyfill as eP, ExecuteDynamicCommand as eQ, ExecuteWorkflowChoiceDef as eR, getRequestAnimationFrame as eS, cancelRequestAnimationFrame as eT, easeInOutCubic as eU, WordMimeType as eV, ImageMimeType as eW, PdfMimeType as eX, AllFilesMimeType as eY, VideoMimeType as eZ, AudioMimeType as e_, PreventDefaulEvent as ea, stopPropagation as eb, getParentHeight as ec, getComponentDefined as ed, isSafari as ee, isFF as ef, getDeviceIsPhone as eg, getDeviceIsDesktop as eh, getDeviceIsTablet as ei, getDeviceIsMobile as ej, getControlSizeMode as ek, formatBytes as el, getValidExtension as em, getIcon as en, isImage as eo, GetAllColumnsSorted as ep, GetVisibleValue as eq, GroupBy as er, FindGroup as es, FillAllLayoutControls as et, FindToolbarItem as eu, FindLayoutSettingFromLayout94 as ev, GetAllHorizontalFromLayout94 as ew, getGridSettings as ex, getResetGridSettings as ey, GetDefaultMoObjectInfo as ez, formRoutes as f, GetContentType as f0, GetViewableExtensions as f1, ChangeLayoutInfoCustomUi as f2, mobile_regex as f3, number_only as f4, forbiddenValidator as f5, GetImgTags as f6, ImagetoPrint as f7, PrintImage as f8, SaveImageToFile as f9, validateAllFormFields as fa, getFocusableTagNames as fb, addCssVariableToRoot as fc, flattenTree as fd, IsDarkMode as fe, nullOrUndefinedString as ff, fromEntries as fg, bodyClick as fh, removeDynamicStyle as fi, addDynamicVariableTo as fj, AddDynamicFormStyles as fk, RemoveDynamicFormStyles as fl, ContainerComponent as fm, IntersectionStatus as fn, fromIntersectionObserver as fo, CustomRouteReuseStrategy as fp, AuthGuard as fq, RedirectHomeGuard as fr, RootPageComponent as fs, ResizableComponent as ft, ResizableDirective as fu, ResizableModule as fv, PushBannerComponent as fw, BarsaNovinRayCoreModule as fx, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, BaseItemContentPropsComponent as j, CardBaseItemContentPropsComponent as k, BaseFormToolbaritemPropsComponent as l, DynamicFormToolbaritemComponent as m, DynamicLayoutComponent as n, DynamicTileGroupComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
19017
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-1rIPnDjF.mjs.map