barsa-novin-ray-core 2.3.129 → 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 {
@@ -5418,7 +5427,8 @@ function searchCommandsInApp(app, keyword) {
5418
5427
  path: `${group.Caption || group.Name}`,
5419
5428
  original: command,
5420
5429
  hidden: false,
5421
- depth: 0
5430
+ depth: 0,
5431
+ folderId: ''
5422
5432
  });
5423
5433
  }
5424
5434
  for (const menu of command.Menu || []) {
@@ -5433,6 +5443,7 @@ function searchCommandsInApp(app, keyword) {
5433
5443
  path: `${group.Caption || group.Name} > ${command.Caption}`,
5434
5444
  original: menu,
5435
5445
  hidden: false,
5446
+ folderId: '',
5436
5447
  depth: 0
5437
5448
  });
5438
5449
  }
@@ -5477,6 +5488,7 @@ function searchNavigatorInApp(app, keyword) {
5477
5488
  appTitle: root.Caption,
5478
5489
  source,
5479
5490
  id: node.Id,
5491
+ folderId: node.FolderId,
5480
5492
  url,
5481
5493
  caption: node.Caption,
5482
5494
  path: currentPath,
@@ -5946,7 +5958,7 @@ function reportRoutes(authGuard = false) {
5946
5958
  return {
5947
5959
  path: 'report/:id',
5948
5960
  canActivate: authGuard ? [AuthGuard] : [],
5949
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-uCeYrvp2.mjs').then((m) => m.BarsaReportPageModule),
5961
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CdYA6Y8F.mjs').then((m) => m.BarsaReportPageModule),
5950
5962
  resolve: {
5951
5963
  breadcrumb: ReportBreadcrumbResolver
5952
5964
  }
@@ -9306,7 +9318,8 @@ class RoutingService {
9306
9318
  BarsaApi.Bw.FormHandler = this;
9307
9319
  this.oldNavigation = BarsaApi.Bw.Navigate;
9308
9320
  BarsaApi.Bw.Navigate = (navigation, isRelative, queryParams, data) => {
9309
- this._parentRoutingService?.navigate(navigation, isRelative, queryParams, data);
9321
+ const routingService = this._parentRoutingService || this;
9322
+ routingService.navigate(navigation, isRelative, queryParams, data);
9310
9323
  };
9311
9324
  }
9312
9325
  ngOnDestroy() {
@@ -9888,7 +9901,7 @@ class FormBaseComponent extends BaseComponent {
9888
9901
  this.fullscreen = !this.fullscreen;
9889
9902
  }
9890
9903
  onToolbarClick(btn) {
9891
- this._formPanelService.toolbarClick(btn);
9904
+ this._formPanelService.toolbarClick$.next(btn);
9892
9905
  }
9893
9906
  onWorkflowChoiceClick(wfChoice) {
9894
9907
  this._formPanelService.wfChoice(wfChoice);
@@ -10947,6 +10960,8 @@ class MoForReportModel extends MoForReportModelBase {
10947
10960
  }
10948
10961
  class ReportBaseInfo {
10949
10962
  }
10963
+ class FormToolbarButton {
10964
+ }
10950
10965
  class ReportExtraInfo extends ReportBaseInfo {
10951
10966
  }
10952
10967
  class MetaobjectRelationModel extends ListRelationModel {
@@ -15633,6 +15648,7 @@ class UlvCommandDirective extends BaseDirective {
15633
15648
  constructor() {
15634
15649
  super(...arguments);
15635
15650
  this.commandClick = new EventEmitter();
15651
+ this.$execute = new Subject();
15636
15652
  }
15637
15653
  onClick(event) {
15638
15654
  if (this.disable) {
@@ -15644,10 +15660,22 @@ class UlvCommandDirective extends BaseDirective {
15644
15660
  this.commandClick.emit(button);
15645
15661
  setTimeout(() => {
15646
15662
  // add settimeout because we need select row before execute row
15647
- executeUlvCommandHandler(button);
15663
+ // executeUlvCommandHandler(button);
15664
+ this.$execute.next();
15648
15665
  });
15649
15666
  return false;
15650
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
+ }
15651
15679
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: UlvCommandDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
15652
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 }); }
15653
15681
  }
@@ -18985,5 +19013,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18985
19013
  * Generated bundle index. Do not edit.
18986
19014
  */
18987
19015
 
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
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