barsa-novin-ray-core 2.3.161 → 2.3.163

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,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, Injector, EnvironmentInjector, ApplicationRef, createComponent, Compiler, DOCUMENT, InjectionToken, NgZone, signal, ViewContainerRef, isDevMode, SecurityContext, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, effect, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, ErrorHandler, provideAppInitializer } from '@angular/core';
2
+ import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, Injector, EnvironmentInjector, ApplicationRef, createComponent, Compiler, DOCUMENT, InjectionToken, NgZone, signal, ViewContainerRef, isDevMode, SecurityContext, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, effect, Directive, TemplateRef, input, booleanAttribute, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, ErrorHandler, provideAppInitializer } from '@angular/core';
3
3
  import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, shareReplay, catchError, timer, combineLatest, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, switchMap, forkJoin, withLatestFrom as withLatestFrom$1, fromEvent, throwError, merge, interval, filter as filter$1, lastValueFrom, timeout, takeUntil as takeUntil$1, take, skip, Observable, tap as tap$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';
@@ -5146,7 +5146,7 @@ class DynamicComponentService {
5146
5146
  // ── entry point اصلی ────────────────────────────────────
5147
5147
  getComponentBySelector(component, elementInjector, environmentInjector) {
5148
5148
  // ۱ — اگه version داشت → URL ثابت بساز و از Module Federation لود کن
5149
- if (component.Version) {
5149
+ if (component.IsFederatedRemote && component.Version) {
5150
5150
  const entry = this.buildRemoteEntryUrl(component.Module, component.Version);
5151
5151
  return this._loadFromRemote(entry, component, elementInjector);
5152
5152
  }
@@ -6089,6 +6089,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
6089
6089
 
6090
6090
  class ApplicationCtrlrService {
6091
6091
  constructor() {
6092
+ this._hideMiniNav$ = new BehaviorSubject(false);
6092
6093
  this._selectedNavGroupItemId$ = new BehaviorSubject({});
6093
6094
  this._selectedReportId$ = new BehaviorSubject({});
6094
6095
  this._selectedReportCaption$ = new BehaviorSubject({});
@@ -6113,10 +6114,11 @@ class ApplicationCtrlrService {
6113
6114
  get appMenuItems$() {
6114
6115
  return this._appMenuItems$.asObservable();
6115
6116
  }
6117
+ get hideMiniNav$() {
6118
+ return this._hideMiniNav$.asObservable();
6119
+ }
6116
6120
  get systemCommandGroups$() {
6117
- return this._selectedSystemNavUi$
6118
- .asObservable()
6119
- .pipe(map$1((c) => (!c ? [] : c.SystemData.CommandGroups || [])));
6121
+ return this._selectedSystemNavUi$.asObservable().pipe(map$1((c) => (!c ? [] : c.SystemData.CommandGroups || [])));
6120
6122
  }
6121
6123
  get selectedCommand$() {
6122
6124
  return combineLatest([this._selectedCommandId$, this._selectedSystemId$]).pipe(map$1(([selectedCommand, systemId]) => selectedCommand[systemId]));
@@ -6162,6 +6164,9 @@ class ApplicationCtrlrService {
6162
6164
  get systemCaption$() {
6163
6165
  return this._selectedSystemTitle$.asObservable();
6164
6166
  }
6167
+ setHideMiniNav(value) {
6168
+ this._hideMiniNav$.next(value);
6169
+ }
6165
6170
  getSelectedNavGroupItemId(systemId) {
6166
6171
  return this._selectedNavGroupItemId$.getValue()[systemId];
6167
6172
  }
@@ -6513,7 +6518,7 @@ function reportRoutes(authGuard = false) {
6513
6518
  return {
6514
6519
  path: 'report/:id',
6515
6520
  canActivate: authGuard ? [AuthGuard] : [],
6516
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CX07bJeh.mjs').then((m) => m.BarsaReportPageModule),
6521
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-BfX9Hk-R.mjs').then((m) => m.BarsaReportPageModule),
6517
6522
  resolve: {
6518
6523
  breadcrumb: ReportBreadcrumbResolver
6519
6524
  }
@@ -17504,41 +17509,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
17504
17509
  }] } });
17505
17510
 
17506
17511
  class DynamicRootVariableDirective extends BaseDirective {
17507
- ngOnInit() {
17508
- super.ngOnInit();
17509
- this._addDynamicFormStyles(this.cssVariableName, this.cssVariableValue);
17510
- }
17511
- ngOnChanges(changes) {
17512
- super.ngOnChanges(changes);
17513
- const { cssVariableName, cssVariableValue } = changes;
17514
- if (cssVariableName && !cssVariableName.firstChange) {
17515
- this._removeDynamicFormStyles();
17516
- this._addDynamicFormStyles(cssVariableName.currentValue, this.cssVariableValue);
17517
- }
17518
- else if (cssVariableValue && !cssVariableValue.firstChange) {
17519
- this._removeDynamicFormStyles();
17520
- this._addDynamicFormStyles(this.cssVariableName, cssVariableValue.currentValue);
17521
- }
17522
- }
17523
- ngOnDestroy() {
17524
- super.ngOnDestroy();
17525
- this._removeDynamicFormStyles();
17512
+ constructor() {
17513
+ super(...arguments);
17514
+ this.cssVariableName = input.required(...(ngDevMode ? [{ debugName: "cssVariableName" }] : /* istanbul ignore next */ []));
17515
+ this.cssVariableValue = input.required(...(ngDevMode ? [{ debugName: "cssVariableValue" }] : /* istanbul ignore next */ []));
17516
+ this.disable = input(false, { ...(ngDevMode ? { debugName: "disable" } : /* istanbul ignore next */ {}), transform: booleanAttribute });
17517
+ /**
17518
+ * برای اجرای دستی مجدد effect توسط refresh
17519
+ */
17520
+ this._refreshVersion = signal(0, ...(ngDevMode ? [{ debugName: "_refreshVersion" }] : /* istanbul ignore next */ []));
17521
+ /**
17522
+ * با تغییر هرکدام از ورودی‌های زیر دوباره اجرا می‌شود:
17523
+ *
17524
+ * cssVariableName
17525
+ * cssVariableValue
17526
+ * disable
17527
+ * _refreshVersion
17528
+ */
17529
+ this._styleEffect = effect((onCleanup) => {
17530
+ // باعث می‌شود refresh نیز effect را مجدداً اجرا کند.
17531
+ this._refreshVersion();
17532
+ const cssVariableName = this.cssVariableName();
17533
+ const cssVariableValue = this.cssVariableValue();
17534
+ const disabled = this.disable();
17535
+ if (disabled || !cssVariableName) {
17536
+ return;
17537
+ }
17538
+ const style = addDynamicVariableTo(cssVariableName, cssVariableValue);
17539
+ /*
17540
+ * قبل از اجرای مجدد effect و همچنین هنگام destroy شدن
17541
+ * directive، استایل قبلی حذف می‌شود.
17542
+ */
17543
+ onCleanup(() => {
17544
+ removeDynamicStyle(style);
17545
+ });
17546
+ }, ...(ngDevMode ? [{ debugName: "_styleEffect" }] : /* istanbul ignore next */ []));
17526
17547
  }
17527
17548
  refresh() {
17528
- this._removeDynamicFormStyles();
17529
- this._addDynamicFormStyles(this.cssVariableName, this.cssVariableValue);
17530
- }
17531
- _addDynamicFormStyles(cssVariableName, cssVariableValue) {
17532
- if (this.disable) {
17533
- return;
17534
- }
17535
- this._style = addDynamicVariableTo(cssVariableName, cssVariableValue);
17536
- }
17537
- _removeDynamicFormStyles() {
17538
- removeDynamicStyle(this._style);
17549
+ this._refreshVersion.update(version => version + 1);
17539
17550
  }
17540
17551
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DynamicRootVariableDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
17541
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.17", type: DynamicRootVariableDirective, isStandalone: false, selector: "[cssRootVariable]", inputs: { cssVariableName: "cssVariableName", cssVariableValue: "cssVariableValue", disable: "disable" }, exportAs: ["cssRootVariable"], usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
17552
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.17", type: DynamicRootVariableDirective, isStandalone: false, selector: "[cssRootVariable]", inputs: { cssVariableName: { classPropertyName: "cssVariableName", publicName: "cssVariableName", isSignal: true, isRequired: true, transformFunction: null }, cssVariableValue: { classPropertyName: "cssVariableValue", publicName: "cssVariableValue", isSignal: true, isRequired: true, transformFunction: null }, disable: { classPropertyName: "disable", publicName: "disable", isSignal: true, isRequired: false, transformFunction: null } }, exportAs: ["cssRootVariable"], usesInheritance: true, ngImport: i0 }); }
17542
17553
  }
17543
17554
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DynamicRootVariableDirective, decorators: [{
17544
17555
  type: Directive,
@@ -17547,13 +17558,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
17547
17558
  exportAs: 'cssRootVariable',
17548
17559
  standalone: false
17549
17560
  }]
17550
- }], propDecorators: { cssVariableName: [{
17551
- type: Input
17552
- }], cssVariableValue: [{
17553
- type: Input
17554
- }], disable: [{
17555
- type: Input
17556
- }] } });
17561
+ }], propDecorators: { cssVariableName: [{ type: i0.Input, args: [{ isSignal: true, alias: "cssVariableName", required: true }] }], cssVariableValue: [{ type: i0.Input, args: [{ isSignal: true, alias: "cssVariableValue", required: true }] }], disable: [{ type: i0.Input, args: [{ isSignal: true, alias: "disable", required: false }] }] } });
17557
17562
 
17558
17563
  class HorizontalResponsiveDirective extends BaseDirective {
17559
17564
  ngOnInit() {
@@ -20389,4 +20394,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
20389
20394
  */
20390
20395
 
20391
20396
  export { ColSetting as $, APP_VERSION as A, BaseModule as B, BaseFormToolbaritemPropsComponent as C, DynamicComponentService as D, BaseItemContentPropsComponent as E, BaseReportModel as F, BaseSettingsService as G, BaseUlvSettingComponent as H, BaseViewContentPropsComponent as I, BaseViewItemPropsComponent as J, BaseViewPropsComponent as K, BbbTranslatePipe as L, BodyClickDirective as M, BoolControlInfoModel as N, BreadcrumbService as O, ButtonLoadingComponent as P, CalculateControlInfoModel as Q, ReportEmptyPageComponent as R, CalendarSettingsStore as S, CanUploadFilePipe as T, CardBaseItemContentPropsComponent as U, CardDynamicItemComponent as V, CardMediaSizePipe as W, CardViewService as X, ChangeLayoutInfoCustomUi as Y, ChunkArrayPipe as Z, CodeEditorControlInfoModel as _, AbsoluteDivBodyDirective as a, FilePictureInfoModel as a$, ColumnCustomComponentPipe as a0, ColumnCustomUiPipe as a1, ColumnIconPipe as a2, ColumnRendererBase as a3, ColumnRendererViewBase as a4, ColumnResizerDirective as a5, ColumnService as a6, ColumnValueDirective as a7, ColumnValueOfParametersPipe as a8, ColumnValuePipe as a9, DynamicFormComponent as aA, DynamicFormToolbaritemComponent as aB, DynamicItemComponent as aC, DynamicLayoutComponent as aD, DynamicRootVariableDirective as aE, DynamicStyleDirective as aF, DynamicUlvPagingComponent as aG, DynamicUlvToolbarComponent as aH, EllapsisTextDirective as aI, EllipsifyDirective as aJ, EmptyPageComponent as aK, EmptyPageWithRouterAndRouterOutletComponent as aL, EntitySettingsStore as aM, EnumCaptionPipe as aN, EnumControlInfoModel as aO, ExecuteDynamicCommand as aP, ExecuteWorkflowChoiceDef as aQ, ExistsColumnsPipe as aR, FORM_DIALOG_COMPONENT as aS, FieldBaseComponent as aT, FieldBaseController as aU, FieldDirective as aV, FieldInfoTypeEnum as aW, FieldUiComponent as aX, FieldViewBase as aY, FileControlInfoModel as aZ, FileInfoCountPipe as a_, ComboRowImagePipe as aa, CommandControlInfoModel as ab, ContainerComponent as ac, ContainerService as ad, ContextMenuPipe as ae, ControlUiPipe as af, ConvertToStylePipe as ag, CopyDirective as ah, CountDownDirective as ai, CustomCommand as aj, CustomInjector as ak, CustomRouteReuseStrategy as al, DEFAULT_REPORT_LAYOUT_POLICY as am, DIALOG_SERVICE as an, DateHijriService as ao, DateMiladiService as ap, DateRanges as aq, DateService as ar, DateShamsiService as as, DateTimeControlInfoModel as at, DefaultCommandsAccessValue as au, DefaultGridSetting as av, DeviceWidth as aw, DialogParams as ax, DynamicCommandDirective as ay, DynamicDarkColorPipe as az, AddDynamicFormStyles as b, LabelStarTrimPipe as b$, FilesValidationHelper as b0, FillAllLayoutControls as b1, FillEmptySpaceDirective as b2, FilterColumnsByDetailsPipe as b3, FilterInlineActionListPipe as b4, FilterPipe as b5, FilterStringPipe as b6, FilterTabPipe as b7, FilterToolbarControlPipe as b8, FilterWorkflowInMobilePipe as b9, GetImgTags as bA, GetViewableExtensions as bB, GetVisibleValue as bC, GridSetting as bD, GroupBy as bE, GroupByPipe as bF, GroupByService as bG, HeaderFacetValuePipe as bH, HideAcceptCancelButtonsPipe as bI, HideColumnsInmobilePipe as bJ, HistoryControlInfoModel as bK, HorizontalLayoutService as bL, HorizontalResponsiveDirective as bM, IconControlInfoModel as bN, IdbService as bO, ImageLazyDirective as bP, ImageMimeType as bQ, ImagetoPrint as bR, InMemoryStorageService as bS, IndexedDbService as bT, InputNumber as bU, IntersectionObserverDirective as bV, IntersectionStatus as bW, IsDarkMode as bX, IsExpandedNodePipe as bY, IsImagePipe as bZ, ItemsRendererDirective as b_, FindColumnByDbNamePipe as ba, FindColumnsPipe as bb, FindGroup as bc, FindLayoutSettingFromLayout94 as bd, FindPreviewColumnPipe as be, FindToolbarItem as bf, FioriIconPipe as bg, FormBaseComponent as bh, FormCloseDirective as bi, FormComponent as bj, FormFieldReportPageComponent as bk, FormNewComponent as bl, FormPageBaseComponent as bm, FormPageComponent as bn, FormPanelService as bo, FormPropsBaseComponent as bp, FormService as bq, FormToolbarBaseComponent as br, FormToolbarButton as bs, GaugeControlInfoModel as bt, GeneralControlInfoModel as bu, GetAllColumnsSorted as bv, GetAllHorizontalFromLayout94 as bw, GetContentType as bx, GetCssVariableValuePipe as by, GetDefaultMoObjectInfo as bz, AffixRespondEvents as c, PushCheckService as c$, LabelmandatoryDirective as c0, LayoutItemBaseComponent as c1, LayoutMainContentService as c2, LayoutPanelBaseComponent as c3, LayoutService as c4, LeafletLongPressDirective as c5, LinearListControlInfoModel as c6, LinearListHelper as c7, ListCountPipe as c8, ListRelationModel as c9, NotificationService as cA, NowraptextDirective as cB, NumberBaseComponent as cC, NumberControlInfoModel as cD, NumbersOnlyInputDirective as cE, NumeralPipe as cF, OverflowTextDirective as cG, PageBaseComponent as cH, PageWithFormHandlerBaseComponent as cI, PdfMimeType as cJ, PictureFieldSourcePipe as cK, PictureFileControlInfoModel as cL, PicturesByGroupIdPipe as cM, PlaceHolderDirective as cN, PortalDynamicPageResolver as cO, PortalFormPageResolver as cP, PortalPageComponent as cQ, PortalPageResolver as cR, PortalPageSidebarComponent as cS, PortalReportPageResolver as cT, PortalService as cU, PreventDefaulEvent as cV, PreventDefaultDirective as cW, PrintFilesDirective as cX, PrintImage as cY, PromptUpdateService as cZ, PushBannerComponent as c_, LoadExternalFilesDirective as ca, LocalStorageService as cb, LogService as cc, LoginSettingsResolver as cd, MapToChatMessagePipe as ce, MasterDetailsPageComponent as cf, MeasureFormTitleWidthDirective as cg, MergeFieldsToColumnsPipe as ch, MetaobjectDataModel as ci, MetaobjectRelationModel as cj, MimeTypes as ck, MoForReportModel as cl, MoForReportModelBase as cm, MoInfoUlvMoListPipe as cn, MoInfoUlvPagingPipe as co, MoLinkerDirective as cp, MoReportValueConcatPipe as cq, MoReportValuePipe as cr, MoValuePipe as cs, MobileDirective as ct, ModalRootComponent as cu, MultipleGroupByPipe as cv, NOTIFICATAION_POPUP_SERVER as cw, NOTIFICATION_WEBWORKER_FACTORY as cx, NetworkStatusService as cy, NotFoundComponent as cz, AllFilesMimeType as d, SimpleTemplateEngine as d$, PushNotificationService as d0, REPORT_GRID_VIEWPORT_CLASS as d1, REPORT_TYPE_DEFAULT_POLICIES as d2, RUNTIME_NAV_STATE_SCHEMA_V1 as d3, RabetehAkseTakiListiControlInfoModel as d4, RedirectHomeGuard as d5, RelatedReportControlInfoModel as d6, RelationListControlInfoModel as d7, RemoveDynamicFormStyles as d8, RemoveNewlinePipe as d9, ReversePipe as dA, RichStringControlInfoModel as dB, RootPageComponent as dC, RootPortalComponent as dD, RotateImage as dE, RouteFormChangeDirective as dF, RoutingService as dG, RowDataOption as dH, RowNumberPipe as dI, RowState as dJ, RuntimeNavStateCacheService as dK, SafeBottomDirective as dL, SanitizeTextPipe as dM, SaveImageDirective as dN, SaveImageToFile as dO, SaveScrollPositionService as dP, ScopedCssPipe as dQ, ScrollLayoutContextHolder as dR, ScrollPersistDirective as dS, ScrollToSelectedDirective as dT, SelectionMode as dU, SeperatorFixPipe as dV, ServiceWorkerCommuncationService as dW, ServiceWorkerNotificationService as dX, ShellbarHeightService as dY, ShortcutHandlerDirective as dZ, ShortcutRegisterDirective as d_, RenderUlvDirective as da, RenderUlvPaginDirective as db, RenderUlvViewerDirective as dc, ReplacePipe as dd, ReportActionListPipe as de, ReportBaseComponent as df, ReportBaseInfo as dg, ReportBreadcrumbResolver as dh, ReportCalendarModel as di, ReportContainerComponent as dj, ReportExtraInfo as dk, ReportField as dl, ReportFormModel as dm, ReportItemBaseComponent as dn, ReportListModel as dp, ReportModel as dq, ReportNavigatorComponent as dr, ReportTreeModel as ds, ReportViewBaseComponent as dt, ReportViewColumn as du, ResizableComponent as dv, ResizableDirective as dw, ResizableModule as dx, ResizeHandlerDirective as dy, ResizeObserverDirective as dz, AnchorScrollDirective as e, forbiddenValidator as e$, SimplebarDirective as e0, SingleRelationControlInfoModel as e1, SortDirection as e2, SortPipe as e3, SortSetting as e4, SplideSliderDirective as e5, SplitPipe as e6, SplitterComponent as e7, StopPropagationDirective as e8, StringControlInfoModel as e9, WebOtpDirective as eA, WordMimeType as eB, WorfkflowwChoiceCommandDirective as eC, addCssVariableToRoot as eD, addDynamicVariableTo as eE, availablePrefixes as eF, bodyClick as eG, buildRuntimeNavStateCacheKey as eH, calcContextMenuWidth as eI, calculateColumnContent as eJ, calculateColumnWidth as eK, calculateColumnWidthFitToContainer as eL, calculateFreeColumnSize as eM, calculateMoDataListContentWidthByColumnName as eN, cancelRequestAnimationFrame as eO, checkPermission as eP, compareVersions as eQ, contextDefaultsFromEnvironment as eR, createFormPanelMetaConditions as eS, createGridEditorFormPanel as eT, easeInOutCubic as eU, elementInViewport2 as eV, enumValueToStringSize as eW, executeUlvCommandHandler as eX, extractLayoutPolicyFromView as eY, fixUnclosedParentheses as eZ, flattenTree as e_, StringToNumberPipe as ea, SubformControlInfoModel as eb, SystemBaseComponent as ec, TEMPLATE_ENGINE as ed, TOAST_SERVICE as ee, TableHeaderWidthMode as ef, TableResizerDirective as eg, TabpageService as eh, ThImageOrIconePipe as ei, TileGroupBreadcrumResolver as ej, TilePropsComponent as ek, TlbButtonsPipe as el, ToolbarSettingsPipe as em, TooltipDirective as en, TotalSummaryPipe as eo, UiService as ep, UlvCommandDirective as eq, UlvHeightSizeType as er, UlvMainService as es, UnlimitSessionComponent as et, UntilInViewDirective as eu, UploadService as ev, VideoMimeType as ew, VideoRecordingService as ex, ViewBase as ey, VisibleValuePipe as ez, formRoutes as f, toNumber as f$, formatBytes as f0, fromEntries as f1, fromIntersectionObserver as f2, genrateInlineMoId as f3, getAllItemsPerChildren as f4, getColumnValueOfMoDataList as f5, getComponentDefined as f6, getControlList as f7, getControlSizeMode as f8, getDateService as f9, isImage as fA, isInLocalMode as fB, isSafari as fC, isTargetWindow as fD, isVersionBiggerThan as fE, measureText as fF, measureText2 as fG, measureTextBy as fH, mobile_regex as fI, multilevelSort as fJ, nullOrUndefinedString as fK, number_only as fL, removeDynamicStyle as fM, requestAnimationFramePolyfill as fN, resolveFinalScroll as fO, resolveReportLayoutPolicy as fP, scrollLayoutModeToContextEnvironment as fQ, scrollToElement as fR, searchEx as fS, setColumnWidthByMaxMoContentWidth as fT, setOneDepthLevel as fU, setTableThWidth as fV, shallowEqual as fW, sort as fX, sortEx as fY, stopPropagation as fZ, throwIfAlreadyLoaded as f_, getDeviceIsDesktop as fa, getDeviceIsMobile as fb, getDeviceIsPhone as fc, getDeviceIsTablet as fd, getFieldValue as fe, getFocusableTagNames as ff, getFormSettings as fg, getGridSettings as fh, getHeaderValue as fi, getIcon as fj, getImagePath as fk, getLabelWidth as fl, getLayout94ObjectInfo as fm, getLayoutControl as fn, getNestedValue as fo, getNewMoGridEditor as fp, getParentHeight as fq, getReportTypeDefaultPolicy as fr, getRequestAnimationFrame as fs, getResetGridSettings as ft, getTargetRect as fu, getUniqueId as fv, getValidExtension as fw, isFF as fx, isFirefox as fy, isFunction as fz, ApiService as g, validateAllFormFields as g0, ApplicationBaseComponent as h, ApplicationCtrlrService as i, AttrRtlDirective as j, AudioMimeType as k, AudioRecordingService as l, AuthGuard as m, BarsaApi as n, BarsaDialogService as o, BarsaIconDictPipe as p, BarsaNovinRayCoreModule as q, reportRoutes as r, BarsaReadonlyDirective as s, BarsaSapUiFormPageModule as t, BarsaStorageService as u, BaseColumnPropsComponent as v, BaseComponent as w, BaseController as x, BaseDirective as y, BaseDynamicComponent as z };
20392
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-CGEy-PGS.mjs.map
20397
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-CGp55b2N.mjs.map