barsa-novin-ray-core 2.3.129 → 2.3.131

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, timer, 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, 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, exhaustMap as exhaustMap$1, withLatestFrom, delay, debounceTime, distinctUntilChanged, 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';
@@ -1495,9 +1495,9 @@ function calculateColumnWidthFitToContainer(container, canView, disableContextMe
1495
1495
  const w = col.Width && col.Width > 0 ? col.Width : x;
1496
1496
  allColWidth += w;
1497
1497
  const percent = (w / containerWidth) * 100;
1498
- col.$FitContainerWidth = isMobile || col.Width === 0 ? '100%' : `${percent}%`;
1498
+ col.$FitContainerWidth = isMobile || col.Width === 0 || percent === Infinity ? '100%' : `${percent}%`;
1499
1499
  if (index === lCols.length - 1 && !hasDefinedWidth) {
1500
- col.$FitContainerWidth = 100 - remainPercent + '%';
1500
+ col.$FitContainerWidth = 100 - (remainPercent === Infinity ? 0 : remainPercent) + '%';
1501
1501
  }
1502
1502
  else {
1503
1503
  remainPercent += percent;
@@ -4346,6 +4346,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
4346
4346
  }]
4347
4347
  }] });
4348
4348
 
4349
+ class ReportActionListPipe {
4350
+ constructor() { }
4351
+ transform(inlineEditMode, canView, hideOpenIcon, hasInlineDeleteButton, showViewButton, navigationArrow
4352
+ // fileCount: number
4353
+ ) {
4354
+ return this._createActionButtons(inlineEditMode, canView, hideOpenIcon, hasInlineDeleteButton, showViewButton, navigationArrow);
4355
+ }
4356
+ _createActionButtons(inlineEditMode, canView, hideOpenIcon, hasInlineEditButton, hasInlineDeleteButton, navigationArrow) {
4357
+ const showViewButton = !inlineEditMode && canView && !hideOpenIcon;
4358
+ const buttons = [];
4359
+ if (hasInlineEditButton) {
4360
+ buttons.push({
4361
+ glyph: 'edit',
4362
+ itemId: 'Edit',
4363
+ navigation: false,
4364
+ role: 'presentation',
4365
+ closeOnClick: true
4366
+ });
4367
+ }
4368
+ if (hasInlineDeleteButton) {
4369
+ buttons.push({
4370
+ glyph: 'delete',
4371
+ navigation: false,
4372
+ itemId: 'Delete',
4373
+ role: 'presentation',
4374
+ closeOnClick: true
4375
+ });
4376
+ }
4377
+ if (showViewButton) {
4378
+ buttons.push({
4379
+ glyph: navigationArrow,
4380
+ navigation: true,
4381
+ role: 'presentation',
4382
+ itemId: 'Show',
4383
+ closeOnClick: true
4384
+ });
4385
+ }
4386
+ return buttons;
4387
+ }
4388
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportActionListPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4389
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: ReportActionListPipe, isStandalone: false, name: "reportActionList" }); }
4390
+ }
4391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportActionListPipe, decorators: [{
4392
+ type: Pipe,
4393
+ args: [{
4394
+ name: 'reportActionList',
4395
+ standalone: false
4396
+ }]
4397
+ }], ctorParameters: () => [] });
4398
+
4349
4399
  class ApiService {
4350
4400
  constructor() {
4351
4401
  this.portalLoginUrl = `/api/auth/portal/login`;
@@ -4690,6 +4740,7 @@ class FormPanelService extends BaseComponent {
4690
4740
  this._hideTitle$ = new BehaviorSubject(false);
4691
4741
  this._hidePin$ = new BehaviorSubject(false);
4692
4742
  this.ColonInLabel = true;
4743
+ this.toolbarClick$ = new Subject();
4693
4744
  this._contextSource = new BehaviorSubject(null);
4694
4745
  this._formHeightSource = new BehaviorSubject(0);
4695
4746
  this._searchPanelIsObjectSource = new BehaviorSubject(false);
@@ -4722,6 +4773,12 @@ class FormPanelService extends BaseComponent {
4722
4773
  this._router = inject(Router);
4723
4774
  this._activatedRoute = inject(ActivatedRoute);
4724
4775
  this.context$ = this._contextSource.asObservable().pipe(tap((context) => this._prepareContext(context)), takeUntil(this._onDestroy$));
4776
+ this.toolbarClick$
4777
+ .pipe(exhaustMap$1((c) => {
4778
+ this._toolbarClick(c);
4779
+ return timer(1000); // ۱ ثانیه بلاک می‌شود
4780
+ }))
4781
+ .subscribe();
4725
4782
  this.searchPanelIsObject$ = this._searchPanelIsObjectSource.asObservable().pipe(takeUntil(this._onDestroy$));
4726
4783
  this.isSearchPanel$ = this._isSearchPanelSource.asObservable().pipe(takeUntil(this._onDestroy$));
4727
4784
  this.isSearcPanelInSideContent$ = this._isSearcPanelInSideContent
@@ -4826,9 +4883,6 @@ class FormPanelService extends BaseComponent {
4826
4883
  this._layoutSource.next(null);
4827
4884
  // this._onDestroy$.next();
4828
4885
  }
4829
- toolbarClick(btn) {
4830
- btn.handler(btn, this._context);
4831
- }
4832
4886
  wfChoice(btn) {
4833
4887
  this._context.fireEvent('TransitionSelect', this._context, btn);
4834
4888
  }
@@ -5084,7 +5138,7 @@ class FormPanelService extends BaseComponent {
5084
5138
  return;
5085
5139
  }
5086
5140
  const breadCrumb = this._headerLayoutSource.getValue();
5087
- const mainChild = this._activatedRoute.children.find((c) => c.outlet === 'main');
5141
+ const mainChild = this._activatedRoute.children.find((c) => c.outlet === 'main') || this._activatedRoute;
5088
5142
  const currentParams = mainChild?.snapshot.params ?? {};
5089
5143
  const queryParamsToUpdate = {
5090
5144
  id: mo.$State === 'New' ? '0' : mo.Id,
@@ -5145,6 +5199,9 @@ class FormPanelService extends BaseComponent {
5145
5199
  this._initialize(context);
5146
5200
  this._context = context;
5147
5201
  }
5202
+ _toolbarClick(btn) {
5203
+ btn.handler(btn, this._context);
5204
+ }
5148
5205
  }
5149
5206
 
5150
5207
  class FormService {
@@ -5418,7 +5475,8 @@ function searchCommandsInApp(app, keyword) {
5418
5475
  path: `${group.Caption || group.Name}`,
5419
5476
  original: command,
5420
5477
  hidden: false,
5421
- depth: 0
5478
+ depth: 0,
5479
+ folderId: ''
5422
5480
  });
5423
5481
  }
5424
5482
  for (const menu of command.Menu || []) {
@@ -5433,6 +5491,7 @@ function searchCommandsInApp(app, keyword) {
5433
5491
  path: `${group.Caption || group.Name} > ${command.Caption}`,
5434
5492
  original: menu,
5435
5493
  hidden: false,
5494
+ folderId: '',
5436
5495
  depth: 0
5437
5496
  });
5438
5497
  }
@@ -5477,6 +5536,7 @@ function searchNavigatorInApp(app, keyword) {
5477
5536
  appTitle: root.Caption,
5478
5537
  source,
5479
5538
  id: node.Id,
5539
+ folderId: node.FolderId,
5480
5540
  url,
5481
5541
  caption: node.Caption,
5482
5542
  path: currentPath,
@@ -5946,7 +6006,7 @@ function reportRoutes(authGuard = false) {
5946
6006
  return {
5947
6007
  path: 'report/:id',
5948
6008
  canActivate: authGuard ? [AuthGuard] : [],
5949
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-uCeYrvp2.mjs').then((m) => m.BarsaReportPageModule),
6009
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-BrPpG6JE.mjs').then((m) => m.BarsaReportPageModule),
5950
6010
  resolve: {
5951
6011
  breadcrumb: ReportBreadcrumbResolver
5952
6012
  }
@@ -7910,7 +7970,7 @@ class UlvMainService {
7910
7970
  if (!menuItems) {
7911
7971
  return [];
7912
7972
  }
7913
- const newItems = menuItems.filter((c) => c.itemId !== 'Delete' && c.itemId !== 'AddToList' && c.itemId !== 'RemoveFromList');
7973
+ const newItems = menuItems.filter((c) => c.itemId !== 'Delete' && c.itemId !== 'AddToList' && c.itemId !== 'RemoveFromList' && c.itemId !== 'MoveUp' && c.itemId !== 'MoveDown');
7914
7974
  return newItems;
7915
7975
  }
7916
7976
  _menuItemsChanged(menuItems) {
@@ -9306,7 +9366,8 @@ class RoutingService {
9306
9366
  BarsaApi.Bw.FormHandler = this;
9307
9367
  this.oldNavigation = BarsaApi.Bw.Navigate;
9308
9368
  BarsaApi.Bw.Navigate = (navigation, isRelative, queryParams, data) => {
9309
- this._parentRoutingService?.navigate(navigation, isRelative, queryParams, data);
9369
+ const routingService = this._parentRoutingService || this;
9370
+ routingService.navigate(navigation, isRelative, queryParams, data);
9310
9371
  };
9311
9372
  }
9312
9373
  ngOnDestroy() {
@@ -9888,7 +9949,7 @@ class FormBaseComponent extends BaseComponent {
9888
9949
  this.fullscreen = !this.fullscreen;
9889
9950
  }
9890
9951
  onToolbarClick(btn) {
9891
- this._formPanelService.toolbarClick(btn);
9952
+ this._formPanelService.toolbarClick$.next(btn);
9892
9953
  }
9893
9954
  onWorkflowChoiceClick(wfChoice) {
9894
9955
  this._formPanelService.wfChoice(wfChoice);
@@ -10947,6 +11008,8 @@ class MoForReportModel extends MoForReportModelBase {
10947
11008
  }
10948
11009
  class ReportBaseInfo {
10949
11010
  }
11011
+ class FormToolbarButton {
11012
+ }
10950
11013
  class ReportExtraInfo extends ReportBaseInfo {
10951
11014
  }
10952
11015
  class MetaobjectRelationModel extends ListRelationModel {
@@ -11229,7 +11292,6 @@ class ReportViewBaseComponent extends BaseComponent {
11229
11292
  if (this.access.View && !this.showOkCancelButtons) {
11230
11293
  this.canView = true;
11231
11294
  }
11232
- this.actionList = this._createActionButtons();
11233
11295
  this.elWidth = this._el.nativeElement.clientWidth;
11234
11296
  this.fitWidth = this.viewSetting?.FitWidth === true ? true : false;
11235
11297
  if (this.columns) {
@@ -11407,37 +11469,6 @@ class ReportViewBaseComponent extends BaseComponent {
11407
11469
  btn.handler(btn);
11408
11470
  }
11409
11471
  }
11410
- _createActionButtons() {
11411
- const buttons = [];
11412
- if (this.hasInlineEditButton) {
11413
- buttons.push({
11414
- glyph: 'edit',
11415
- itemId: 'Edit',
11416
- navigation: false,
11417
- role: 'presentation',
11418
- closeOnClick: true
11419
- });
11420
- }
11421
- if (this.hasInlineDeleteButton) {
11422
- buttons.push({
11423
- glyph: 'delete',
11424
- navigation: false,
11425
- itemId: 'Delete',
11426
- role: 'presentation',
11427
- closeOnClick: true
11428
- });
11429
- }
11430
- if (this.showViewButton) {
11431
- buttons.push({
11432
- glyph: this.navigationArrow,
11433
- navigation: true,
11434
- role: 'presentation',
11435
- itemId: 'Show',
11436
- closeOnClick: true
11437
- });
11438
- }
11439
- return buttons;
11440
- }
11441
11472
  _containerWidthChanged(_) { }
11442
11473
  _setRowIndicator(columns) {
11443
11474
  if (!columns?.length) {
@@ -15633,6 +15664,7 @@ class UlvCommandDirective extends BaseDirective {
15633
15664
  constructor() {
15634
15665
  super(...arguments);
15635
15666
  this.commandClick = new EventEmitter();
15667
+ this.$execute = new Subject();
15636
15668
  }
15637
15669
  onClick(event) {
15638
15670
  if (this.disable) {
@@ -15644,10 +15676,20 @@ class UlvCommandDirective extends BaseDirective {
15644
15676
  this.commandClick.emit(button);
15645
15677
  setTimeout(() => {
15646
15678
  // add settimeout because we need select row before execute row
15647
- executeUlvCommandHandler(button);
15679
+ // executeUlvCommandHandler(button);
15680
+ this.$execute.next();
15648
15681
  });
15649
15682
  return false;
15650
15683
  }
15684
+ ngOnInit() {
15685
+ super.ngOnInit();
15686
+ this.$execute
15687
+ .pipe(exhaustMap(() => {
15688
+ executeUlvCommandHandler(this.ulvCommandHandler);
15689
+ return timer(1000); // ۱ ثانیه بلاک می‌شود
15690
+ }))
15691
+ .subscribe();
15692
+ }
15651
15693
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: UlvCommandDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
15652
15694
  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 }); }
15653
15695
  }
@@ -18574,7 +18616,8 @@ const pipes = [
18574
18616
  ChunkArrayPipe,
18575
18617
  MapToChatMessagePipe,
18576
18618
  PicturesByGroupIdPipe,
18577
- ScopedCssPipe
18619
+ ScopedCssPipe,
18620
+ ReportActionListPipe
18578
18621
  ];
18579
18622
  const functionL1 = async function () {
18580
18623
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -18760,7 +18803,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18760
18803
  ChunkArrayPipe,
18761
18804
  MapToChatMessagePipe,
18762
18805
  PicturesByGroupIdPipe,
18763
- ScopedCssPipe, PlaceHolderDirective,
18806
+ ScopedCssPipe,
18807
+ ReportActionListPipe, PlaceHolderDirective,
18764
18808
  NumbersOnlyInputDirective,
18765
18809
  RenderUlvViewerDirective,
18766
18810
  RenderUlvPaginDirective,
@@ -18904,7 +18948,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18904
18948
  ChunkArrayPipe,
18905
18949
  MapToChatMessagePipe,
18906
18950
  PicturesByGroupIdPipe,
18907
- ScopedCssPipe, PlaceHolderDirective,
18951
+ ScopedCssPipe,
18952
+ ReportActionListPipe, PlaceHolderDirective,
18908
18953
  NumbersOnlyInputDirective,
18909
18954
  RenderUlvViewerDirective,
18910
18955
  RenderUlvPaginDirective,
@@ -18985,5 +19030,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18985
19030
  * Generated bundle index. Do not edit.
18986
19031
  */
18987
19032
 
18988
- 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 };
18989
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-DtuYXVoL.mjs.map
19033
+ 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, BaseSettingsService 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, PortalService as bA, UiService as bB, UlvMainService as bC, UploadService as bD, NetworkStatusService as bE, AudioRecordingService as bF, VideoRecordingService as bG, LocalStorageService as bH, IndexedDbService as bI, BarsaStorageService as bJ, PromptUpdateService as bK, NotificationService as bL, ServiceWorkerNotificationService as bM, ColumnService as bN, ServiceWorkerCommuncationService as bO, SaveScrollPositionService as bP, RoutingService as bQ, GroupByService as bR, LayoutMainContentService as bS, TabpageService as bT, InMemoryStorageService as bU, ShellbarHeightService as bV, ApplicationCtrlrService as bW, PushCheckService as bX, IdbService as bY, PushNotificationService as bZ, CardViewService 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, ReportActionListPipe as bo, ApiService as bp, BreadcrumbService as bq, CustomInjector as br, DialogParams as bs, BarsaDialogService as bt, FormPanelService as bu, FormService as bv, ContainerService as bw, HorizontalLayoutService as bx, LayoutService as by, LogService as bz, BaseDynamicComponent as c, ListRelationModel as c$, CalendarSettingsService as c0, PortalDynamicPageResolver as c1, PortalFormPageResolver as c2, PortalPageResolver as c3, PortalReportPageResolver as c4, TileGroupBreadcrumResolver as c5, LoginSettingsResolver as c6, ReportBreadcrumbResolver as c7, DateService as c8, DateHijriService as c9, ApplicationBaseComponent as cA, LayoutItemBaseComponent as cB, LayoutPanelBaseComponent as cC, PageBaseComponent as cD, NumberBaseComponent as cE, GeneralControlInfoModel as cF, StringControlInfoModel as cG, RichStringControlInfoModel as cH, NumberControlInfoModel as cI, FilePictureInfoModel as cJ, FileControlInfoModel as cK, CommandControlInfoModel as cL, IconControlInfoModel as cM, PictureFileControlInfoModel as cN, GaugeControlInfoModel as cO, RelationListControlInfoModel as cP, HistoryControlInfoModel as cQ, RabetehAkseTakiListiControlInfoModel as cR, RelatedReportControlInfoModel as cS, CodeEditorControlInfoModel as cT, EnumControlInfoModel as cU, RowDataOption as cV, DateTimeControlInfoModel as cW, BoolControlInfoModel as cX, CalculateControlInfoModel as cY, SubformControlInfoModel as cZ, LinearListControlInfoModel as c_, DateMiladiService as ca, DateShamsiService as cb, FormNewComponent as cc, ReportContainerComponent as cd, FormComponent as ce, FieldUiComponent as cf, BarsaSapUiFormPageModule as cg, ReportNavigatorComponent as ch, BaseController as ci, ViewBase as cj, ModalRootComponent as ck, ButtonLoadingComponent as cl, UnlimitSessionComponent as cm, SplitterComponent as cn, APP_VERSION as co, DIALOG_SERVICE as cp, FORM_DIALOG_COMPONENT as cq, NOTIFICATAION_POPUP_SERVER as cr, TOAST_SERVICE as cs, NOTIFICATION_WEBWORKER_FACTORY as ct, FieldBaseComponent as cu, FormBaseComponent as cv, FormToolbarBaseComponent as cw, SystemBaseComponent as cx, ReportBaseComponent as cy, ReportItemBaseComponent as cz, DynamicFormComponent as d, getUniqueId as d$, SingleRelationControlInfoModel as d0, MetaobjectDataModel as d1, MoForReportModelBase as d2, MoForReportModel as d3, ReportBaseInfo as d4, FormToolbarButton as d5, ReportExtraInfo as d6, MetaobjectRelationModel as d7, FieldInfoTypeEnum as d8, BaseReportModel as d9, BaseColumnPropsComponent as dA, TilePropsComponent as dB, FormFieldReportPageComponent as dC, BaseUlvSettingComponent as dD, TableHeaderWidthMode as dE, setTableThWidth as dF, calculateColumnContent as dG, calculateColumnWidth as dH, setColumnWidthByMaxMoContentWidth as dI, calculateMoDataListContentWidthByColumnName as dJ, calculateFreeColumnSize as dK, calculateColumnWidthFitToContainer as dL, calcContextMenuWidth as dM, RotateImage as dN, isInLocalMode as dO, getLabelWidth as dP, getColumnValueOfMoDataList as dQ, throwIfAlreadyLoaded as dR, measureText2 as dS, measureText as dT, measureTextBy as dU, genrateInlineMoId as dV, enumValueToStringSize as dW, isVersionBiggerThan as dX, compareVersions as dY, scrollToElement as dZ, executeUlvCommandHandler as d_, DefaultCommandsAccessValue as da, CustomCommand as db, ReportModel as dc, ReportListModel as dd, ReportFormModel as de, ReportCalendarModel as df, ReportTreeModel as dg, ReportViewColumn as dh, DefaultGridSetting as di, GridSetting as dj, ColSetting as dk, SortSetting as dl, ReportField as dm, DateRanges as dn, SortDirection as dp, SelectionMode as dq, UlvHeightSizeType as dr, FilesValidationHelper as ds, BarsaApi as dt, ReportViewBaseComponent as du, FormPropsBaseComponent as dv, LinearListHelper as dw, PageWithFormHandlerBaseComponent as dx, FormPageBaseComponent as dy, FormPageComponent as dz, DynamicItemComponent as e, AudioMimeType as e$, getDateService as e0, getAllItemsPerChildren as e1, setOneDepthLevel as e2, isFirefox as e3, getImagePath as e4, checkPermission as e5, fixUnclosedParentheses as e6, isFunction as e7, DeviceWidth as e8, getHeaderValue as e9, GetDefaultMoObjectInfo as eA, getLayout94ObjectInfo as eB, getFormSettings as eC, createFormPanelMetaConditions as eD, getNewMoGridEditor as eE, createGridEditorFormPanel as eF, getLayoutControl as eG, getControlList as eH, shallowEqual as eI, toNumber as eJ, InputNumber as eK, AffixRespondEvents as eL, isTargetWindow as eM, getTargetRect as eN, getFieldValue as eO, availablePrefixes as eP, requestAnimationFramePolyfill as eQ, ExecuteDynamicCommand as eR, ExecuteWorkflowChoiceDef as eS, getRequestAnimationFrame as eT, cancelRequestAnimationFrame as eU, easeInOutCubic as eV, WordMimeType as eW, ImageMimeType as eX, PdfMimeType as eY, AllFilesMimeType as eZ, VideoMimeType as e_, elementInViewport2 as ea, PreventDefaulEvent as eb, stopPropagation as ec, getParentHeight as ed, getComponentDefined as ee, isSafari as ef, isFF as eg, getDeviceIsPhone as eh, getDeviceIsDesktop as ei, getDeviceIsTablet as ej, getDeviceIsMobile as ek, getControlSizeMode as el, formatBytes as em, getValidExtension as en, getIcon as eo, isImage as ep, GetAllColumnsSorted as eq, GetVisibleValue as er, GroupBy as es, FindGroup as et, FillAllLayoutControls as eu, FindToolbarItem as ev, FindLayoutSettingFromLayout94 as ew, GetAllHorizontalFromLayout94 as ex, getGridSettings as ey, getResetGridSettings as ez, formRoutes as f, MimeTypes as f0, GetContentType as f1, GetViewableExtensions as f2, ChangeLayoutInfoCustomUi as f3, mobile_regex as f4, number_only as f5, forbiddenValidator as f6, GetImgTags as f7, ImagetoPrint as f8, PrintImage as f9, SaveImageToFile as fa, validateAllFormFields as fb, getFocusableTagNames as fc, addCssVariableToRoot as fd, flattenTree as fe, IsDarkMode as ff, nullOrUndefinedString as fg, fromEntries as fh, bodyClick as fi, removeDynamicStyle as fj, addDynamicVariableTo as fk, AddDynamicFormStyles as fl, RemoveDynamicFormStyles as fm, ContainerComponent as fn, IntersectionStatus as fo, fromIntersectionObserver as fp, CustomRouteReuseStrategy as fq, AuthGuard as fr, RedirectHomeGuard as fs, RootPageComponent as ft, ResizableComponent as fu, ResizableDirective as fv, ResizableModule as fw, PushBannerComponent as fx, BarsaNovinRayCoreModule as fy, 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 };
19034
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-BO6HWC7d.mjs.map