barsa-novin-ray-core 2.3.130 → 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, throttle as throttle$1, 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, 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';
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`;
@@ -4724,13 +4774,11 @@ class FormPanelService extends BaseComponent {
4724
4774
  this._activatedRoute = inject(ActivatedRoute);
4725
4775
  this.context$ = this._contextSource.asObservable().pipe(tap((context) => this._prepareContext(context)), takeUntil(this._onDestroy$));
4726
4776
  this.toolbarClick$
4727
- .pipe(throttle(() => of(1000), {
4728
- leading: true,
4729
- trailing: false
4730
- }), takeUntil(this._onDestroy$))
4731
- .subscribe((c) => {
4777
+ .pipe(exhaustMap$1((c) => {
4732
4778
  this._toolbarClick(c);
4733
- });
4779
+ return timer(1000); // ۱ ثانیه بلاک می‌شود
4780
+ }))
4781
+ .subscribe();
4734
4782
  this.searchPanelIsObject$ = this._searchPanelIsObjectSource.asObservable().pipe(takeUntil(this._onDestroy$));
4735
4783
  this.isSearchPanel$ = this._isSearchPanelSource.asObservable().pipe(takeUntil(this._onDestroy$));
4736
4784
  this.isSearcPanelInSideContent$ = this._isSearcPanelInSideContent
@@ -5958,7 +6006,7 @@ function reportRoutes(authGuard = false) {
5958
6006
  return {
5959
6007
  path: 'report/:id',
5960
6008
  canActivate: authGuard ? [AuthGuard] : [],
5961
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CdYA6Y8F.mjs').then((m) => m.BarsaReportPageModule),
6009
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-BrPpG6JE.mjs').then((m) => m.BarsaReportPageModule),
5962
6010
  resolve: {
5963
6011
  breadcrumb: ReportBreadcrumbResolver
5964
6012
  }
@@ -7922,7 +7970,7 @@ class UlvMainService {
7922
7970
  if (!menuItems) {
7923
7971
  return [];
7924
7972
  }
7925
- 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');
7926
7974
  return newItems;
7927
7975
  }
7928
7976
  _menuItemsChanged(menuItems) {
@@ -11244,7 +11292,6 @@ class ReportViewBaseComponent extends BaseComponent {
11244
11292
  if (this.access.View && !this.showOkCancelButtons) {
11245
11293
  this.canView = true;
11246
11294
  }
11247
- this.actionList = this._createActionButtons();
11248
11295
  this.elWidth = this._el.nativeElement.clientWidth;
11249
11296
  this.fitWidth = this.viewSetting?.FitWidth === true ? true : false;
11250
11297
  if (this.columns) {
@@ -11422,37 +11469,6 @@ class ReportViewBaseComponent extends BaseComponent {
11422
11469
  btn.handler(btn);
11423
11470
  }
11424
11471
  }
11425
- _createActionButtons() {
11426
- const buttons = [];
11427
- if (this.hasInlineEditButton) {
11428
- buttons.push({
11429
- glyph: 'edit',
11430
- itemId: 'Edit',
11431
- navigation: false,
11432
- role: 'presentation',
11433
- closeOnClick: true
11434
- });
11435
- }
11436
- if (this.hasInlineDeleteButton) {
11437
- buttons.push({
11438
- glyph: 'delete',
11439
- navigation: false,
11440
- itemId: 'Delete',
11441
- role: 'presentation',
11442
- closeOnClick: true
11443
- });
11444
- }
11445
- if (this.showViewButton) {
11446
- buttons.push({
11447
- glyph: this.navigationArrow,
11448
- navigation: true,
11449
- role: 'presentation',
11450
- itemId: 'Show',
11451
- closeOnClick: true
11452
- });
11453
- }
11454
- return buttons;
11455
- }
11456
11472
  _containerWidthChanged(_) { }
11457
11473
  _setRowIndicator(columns) {
11458
11474
  if (!columns?.length) {
@@ -15668,13 +15684,11 @@ class UlvCommandDirective extends BaseDirective {
15668
15684
  ngOnInit() {
15669
15685
  super.ngOnInit();
15670
15686
  this.$execute
15671
- .pipe(throttle$1(() => of(1000), {
15672
- leading: true,
15673
- trailing: false
15674
- }), takeUntil$1(this._onDestroy$))
15675
- .subscribe(() => {
15687
+ .pipe(exhaustMap(() => {
15676
15688
  executeUlvCommandHandler(this.ulvCommandHandler);
15677
- });
15689
+ return timer(1000); // ۱ ثانیه بلاک می‌شود
15690
+ }))
15691
+ .subscribe();
15678
15692
  }
15679
15693
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: UlvCommandDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
15680
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 }); }
@@ -18602,7 +18616,8 @@ const pipes = [
18602
18616
  ChunkArrayPipe,
18603
18617
  MapToChatMessagePipe,
18604
18618
  PicturesByGroupIdPipe,
18605
- ScopedCssPipe
18619
+ ScopedCssPipe,
18620
+ ReportActionListPipe
18606
18621
  ];
18607
18622
  const functionL1 = async function () {
18608
18623
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -18788,7 +18803,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18788
18803
  ChunkArrayPipe,
18789
18804
  MapToChatMessagePipe,
18790
18805
  PicturesByGroupIdPipe,
18791
- ScopedCssPipe, PlaceHolderDirective,
18806
+ ScopedCssPipe,
18807
+ ReportActionListPipe, PlaceHolderDirective,
18792
18808
  NumbersOnlyInputDirective,
18793
18809
  RenderUlvViewerDirective,
18794
18810
  RenderUlvPaginDirective,
@@ -18932,7 +18948,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18932
18948
  ChunkArrayPipe,
18933
18949
  MapToChatMessagePipe,
18934
18950
  PicturesByGroupIdPipe,
18935
- ScopedCssPipe, PlaceHolderDirective,
18951
+ ScopedCssPipe,
18952
+ ReportActionListPipe, PlaceHolderDirective,
18936
18953
  NumbersOnlyInputDirective,
18937
18954
  RenderUlvViewerDirective,
18938
18955
  RenderUlvPaginDirective,
@@ -19013,5 +19030,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
19013
19030
  * Generated bundle index. Do not edit.
19014
19031
  */
19015
19032
 
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
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