barsa-novin-ray-core 2.3.120 → 2.3.121

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.
@@ -1532,34 +1532,24 @@ function calcContextMenuWidth(contextMenuItems, disableContextMenuOverflow) {
1532
1532
  return contextMenuWidth;
1533
1533
  }
1534
1534
  function RotateImage(imgEl, media, renderer2) {
1535
- const direction = 1;
1536
- const angle = 90 * direction;
1537
- if (media.RotationAngle) {
1538
- media.RotationAngle = (media.RotationAngle + angle) % 360;
1539
- }
1540
- else {
1541
- media.RotationAngle = angle;
1542
- }
1535
+ // ۱. به‌روزرسانی زاویه
1536
+ media.RotationAngle = ((media.RotationAngle || 0) + 90) % 360;
1543
1537
  const w = imgEl.offsetWidth;
1544
1538
  const h = imgEl.offsetHeight;
1545
- let margin = (w - h) / 2;
1546
- let scaleFactor = w / h;
1547
- if (media.scaleFactor) {
1548
- scaleFactor = 1;
1549
- media.scaleFactor = null;
1550
- margin = 0;
1551
- }
1552
- else {
1553
- media.scaleFactor = scaleFactor;
1554
- }
1555
- if (scaleFactor < 1) {
1556
- renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(${scaleFactor})`);
1539
+ const isVertical = media.RotationAngle % 180 !== 0;
1540
+ if (isVertical) {
1541
+ // چون محورها چرخیده‌اند، ScaleX روی ارتفاع کانتینر و ScaleY روی عرض کانتینر اثر می‌گذارد
1542
+ const scaleX = h / w; // مقیاس افقی تصویر که حالا عمودی شده
1543
+ const scaleY = w / h; // مقیاس عمودی تصویر که حالا افقی شده
1544
+ renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(${scaleX}, ${scaleY})`);
1557
1545
  }
1558
1546
  else {
1559
- renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg)`);
1547
+ // در زوایای ۰ و ۱۸۰، تصویر به حالت عادی برمی‌گردد
1548
+ renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(1, 1)`);
1560
1549
  }
1561
- renderer2.setStyle(imgEl, 'margin-bottom', margin + 'px');
1562
- renderer2.setStyle(imgEl, 'margin-top', margin + 'px');
1550
+ // برای اطمینان از اینکه تصویر از مرکز فیت می‌شود
1551
+ renderer2.setStyle(imgEl, 'transform-origin', 'center center');
1552
+ renderer2.setStyle(imgEl, 'transition', 'transform 0.3s ease-in-out');
1563
1553
  }
1564
1554
  function isInLocalMode() {
1565
1555
  const offlinceActive = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsActive', false);
@@ -2393,45 +2383,45 @@ const VideoMimeType = 'video/*';
2393
2383
  const AudioMimeType = 'audio/*';
2394
2384
  const MimeTypes = {
2395
2385
  // اسناد متنی و وب
2396
- "html": "text/html",
2397
- "htm": "text/html",
2398
- "txt": "text/plain",
2399
- "text": "text/plain",
2400
- "log": "text/plain",
2401
- "conf": "text/plain",
2402
- "css": "text/css",
2403
- "js": "application/javascript",
2404
- "json": "application/json",
2405
- "xml": "application/xml",
2386
+ html: 'text/html',
2387
+ htm: 'text/html',
2388
+ txt: 'text/plain',
2389
+ text: 'text/plain',
2390
+ log: 'text/plain',
2391
+ conf: 'text/plain',
2392
+ css: 'text/css',
2393
+ js: 'application/javascript',
2394
+ json: 'application/json',
2395
+ xml: 'application/xml',
2406
2396
  // تصاویر
2407
- "jpg": "image/jpeg",
2408
- "jpeg": "image/jpeg",
2409
- "png": "image/png",
2410
- "gif": "image/gif",
2411
- "svg": "image/svg+xml",
2412
- "webp": "image/webp",
2413
- "bmp": "image/bmp",
2414
- "ico": "image/x-icon",
2397
+ jpg: 'image/jpeg',
2398
+ jpeg: 'image/jpeg',
2399
+ png: 'image/png',
2400
+ gif: 'image/gif',
2401
+ svg: 'image/svg+xml',
2402
+ webp: 'image/webp',
2403
+ bmp: 'image/bmp',
2404
+ ico: 'image/x-icon',
2415
2405
  // اسناد کاربردی
2416
- "pdf": "application/pdf",
2417
- "rtf": "application/rtf",
2406
+ pdf: 'application/pdf',
2407
+ rtf: 'application/rtf',
2418
2408
  // مایکروسافت آفیس
2419
- "doc": "application/msword",
2420
- "docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
2421
- "xls": "application/vnd.ms-excel",
2422
- "xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
2423
- "ppt": "application/vnd.ms-powerpoint",
2424
- "pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
2409
+ doc: 'application/msword',
2410
+ docx: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
2411
+ xls: 'application/vnd.ms-excel',
2412
+ xlsx: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
2413
+ ppt: 'application/vnd.ms-powerpoint',
2414
+ pptx: 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
2425
2415
  // چندرسانه‌ای (صوت و ویدیو)
2426
- "mp4": "video/mp4",
2427
- "webm": "video/webm",
2428
- "ogg": "video/ogg",
2429
- "mp3": "audio/mpeg",
2430
- "wav": "audio/wav"
2416
+ mp4: 'video/mp4',
2417
+ webm: 'video/webm',
2418
+ ogg: 'video/ogg',
2419
+ mp3: 'audio/mpeg',
2420
+ wav: 'audio/wav'
2431
2421
  };
2432
2422
  function GetContentType(fileName) {
2433
2423
  const ext = fileName.substring(fileName.lastIndexOf('.')).toLowerCase();
2434
- return MimeTypes[ext] || "application/octet-stream";
2424
+ return MimeTypes[ext] || 'application/octet-stream';
2435
2425
  }
2436
2426
  function GetViewableExtensions() {
2437
2427
  return Object.keys(MimeTypes);
@@ -4298,6 +4288,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
4298
4288
  }]
4299
4289
  }] });
4300
4290
 
4291
+ class PicturesByGroupIdPipe {
4292
+ transform(value, groupId) {
4293
+ if (!value || !value.length) {
4294
+ return [];
4295
+ }
4296
+ return value.filter((c) => c.groupId === groupId);
4297
+ }
4298
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: PicturesByGroupIdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4299
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: PicturesByGroupIdPipe, isStandalone: false, name: "picturesByGroupId" }); }
4300
+ }
4301
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: PicturesByGroupIdPipe, decorators: [{
4302
+ type: Pipe,
4303
+ args: [{
4304
+ name: 'picturesByGroupId',
4305
+ standalone: false
4306
+ }]
4307
+ }] });
4308
+
4301
4309
  class ApiService {
4302
4310
  constructor() {
4303
4311
  this.portalLoginUrl = `/api/auth/portal/login`;
@@ -5867,7 +5875,7 @@ function reportRoutes(authGuard = false) {
5867
5875
  return {
5868
5876
  path: 'report/:id',
5869
5877
  canActivate: authGuard ? [AuthGuard] : [],
5870
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CZm3CHdl.mjs').then((m) => m.BarsaReportPageModule),
5878
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CxWogBjG.mjs').then((m) => m.BarsaReportPageModule),
5871
5879
  resolve: {
5872
5880
  breadcrumb: ReportBreadcrumbResolver
5873
5881
  }
@@ -18357,7 +18365,8 @@ const pipes = [
18357
18365
  SplitPipe,
18358
18366
  DynamicDarkColorPipe,
18359
18367
  ChunkArrayPipe,
18360
- MapToChatMessagePipe
18368
+ MapToChatMessagePipe,
18369
+ PicturesByGroupIdPipe
18361
18370
  ];
18362
18371
  const functionL1 = async function () {
18363
18372
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -18541,7 +18550,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18541
18550
  SplitPipe,
18542
18551
  DynamicDarkColorPipe,
18543
18552
  ChunkArrayPipe,
18544
- MapToChatMessagePipe, PlaceHolderDirective,
18553
+ MapToChatMessagePipe,
18554
+ PicturesByGroupIdPipe, PlaceHolderDirective,
18545
18555
  NumbersOnlyInputDirective,
18546
18556
  RenderUlvViewerDirective,
18547
18557
  RenderUlvPaginDirective,
@@ -18683,7 +18693,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18683
18693
  SplitPipe,
18684
18694
  DynamicDarkColorPipe,
18685
18695
  ChunkArrayPipe,
18686
- MapToChatMessagePipe, PlaceHolderDirective,
18696
+ MapToChatMessagePipe,
18697
+ PicturesByGroupIdPipe, PlaceHolderDirective,
18687
18698
  NumbersOnlyInputDirective,
18688
18699
  RenderUlvViewerDirective,
18689
18700
  RenderUlvPaginDirective,
@@ -18764,5 +18775,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18764
18775
  * Generated bundle index. Do not edit.
18765
18776
  */
18766
18777
 
18767
- 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, PortalReportPageResolver 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, UploadService as bA, NetworkStatusService as bB, AudioRecordingService as bC, VideoRecordingService as bD, LocalStorageService as bE, IndexedDbService as bF, BarsaStorageService as bG, PromptUpdateService as bH, NotificationService as bI, ServiceWorkerNotificationService as bJ, ColumnService as bK, ServiceWorkerCommuncationService as bL, SaveScrollPositionService as bM, RoutingService as bN, GroupByService as bO, LayoutMainContentService as bP, TabpageService as bQ, InMemoryStorageService as bR, ShellbarHeightService as bS, ApplicationCtrlrService as bT, PushCheckService as bU, IdbService as bV, PushNotificationService as bW, CardViewService as bX, PortalDynamicPageResolver as bY, PortalFormPageResolver as bZ, PortalPageResolver 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, ApiService as bm, BreadcrumbService as bn, CustomInjector as bo, DialogParams as bp, BarsaDialogService as bq, FormPanelService as br, FormService as bs, ContainerService as bt, HorizontalLayoutService as bu, LayoutService as bv, LogService as bw, PortalService as bx, UiService as by, UlvMainService as bz, BaseDynamicComponent as c, ReportBaseInfo as c$, TileGroupBreadcrumResolver as c0, LoginSettingsResolver as c1, ReportBreadcrumbResolver as c2, DateService as c3, DateHijriService as c4, DateMiladiService as c5, DateShamsiService as c6, FormNewComponent as c7, ReportContainerComponent as c8, FormComponent as c9, GeneralControlInfoModel as cA, StringControlInfoModel as cB, RichStringControlInfoModel as cC, NumberControlInfoModel as cD, FilePictureInfoModel as cE, FileControlInfoModel as cF, CommandControlInfoModel as cG, IconControlInfoModel as cH, PictureFileControlInfoModel as cI, GaugeControlInfoModel as cJ, RelationListControlInfoModel as cK, HistoryControlInfoModel as cL, RabetehAkseTakiListiControlInfoModel as cM, RelatedReportControlInfoModel as cN, CodeEditorControlInfoModel as cO, EnumControlInfoModel as cP, RowDataOption as cQ, DateTimeControlInfoModel as cR, BoolControlInfoModel as cS, CalculateControlInfoModel as cT, SubformControlInfoModel as cU, LinearListControlInfoModel as cV, ListRelationModel as cW, SingleRelationControlInfoModel as cX, MetaobjectDataModel as cY, MoForReportModelBase as cZ, MoForReportModel as c_, FieldUiComponent as ca, BarsaSapUiFormPageModule as cb, ReportNavigatorComponent as cc, BaseController as cd, ViewBase as ce, ModalRootComponent as cf, ButtonLoadingComponent as cg, UnlimitSessionComponent as ch, SplitterComponent as ci, APP_VERSION as cj, DIALOG_SERVICE as ck, FORM_DIALOG_COMPONENT as cl, NOTIFICATAION_POPUP_SERVER as cm, TOAST_SERVICE as cn, NOTIFICATION_WEBWORKER_FACTORY as co, FieldBaseComponent as cp, FormBaseComponent as cq, FormToolbarBaseComponent as cr, SystemBaseComponent as cs, ReportBaseComponent as ct, ReportItemBaseComponent as cu, ApplicationBaseComponent as cv, LayoutItemBaseComponent as cw, LayoutPanelBaseComponent as cx, PageBaseComponent as cy, NumberBaseComponent as cz, DynamicFormComponent as d, checkPermission as d$, ReportExtraInfo as d0, MetaobjectRelationModel as d1, FieldInfoTypeEnum as d2, BaseReportModel as d3, DefaultCommandsAccessValue as d4, CustomCommand as d5, ReportModel as d6, ReportListModel as d7, ReportFormModel as d8, ReportCalendarModel as d9, calculateColumnContent as dA, calculateColumnWidth as dB, setColumnWidthByMaxMoContentWidth as dC, calculateMoDataListContentWidthByColumnName as dD, calculateFreeColumnSize as dE, calculateColumnWidthFitToContainer as dF, calcContextMenuWidth as dG, RotateImage as dH, isInLocalMode as dI, getLabelWidth as dJ, getColumnValueOfMoDataList as dK, throwIfAlreadyLoaded as dL, measureText2 as dM, measureText as dN, measureTextBy as dO, genrateInlineMoId as dP, enumValueToStringSize as dQ, isVersionBiggerThan as dR, compareVersions as dS, scrollToElement as dT, executeUlvCommandHandler as dU, getUniqueId as dV, getDateService as dW, getAllItemsPerChildren as dX, setOneDepthLevel as dY, isFirefox as dZ, getImagePath as d_, ReportTreeModel as da, ReportViewColumn as db, DefaultGridSetting as dc, GridSetting as dd, ColSetting as de, SortSetting as df, ReportField as dg, DateRanges as dh, SortDirection as di, SelectionMode as dj, UlvHeightSizeType as dk, FilesValidationHelper as dl, BarsaApi as dm, ReportViewBaseComponent as dn, FormPropsBaseComponent as dp, LinearListHelper as dq, PageWithFormHandlerBaseComponent as dr, FormPageBaseComponent as ds, FormPageComponent as dt, BaseColumnPropsComponent as du, TilePropsComponent as dv, FormFieldReportPageComponent as dw, BaseUlvSettingComponent as dx, TableHeaderWidthMode as dy, setTableThWidth as dz, DynamicItemComponent as e, number_only as e$, fixUnclosedParentheses as e0, isFunction as e1, DeviceWidth as e2, getHeaderValue as e3, elementInViewport2 as e4, PreventDefaulEvent as e5, stopPropagation as e6, getParentHeight as e7, getComponentDefined as e8, isSafari as e9, getLayoutControl as eA, getControlList as eB, shallowEqual as eC, toNumber as eD, InputNumber as eE, AffixRespondEvents as eF, isTargetWindow as eG, getTargetRect as eH, getFieldValue as eI, availablePrefixes as eJ, requestAnimationFramePolyfill as eK, ExecuteDynamicCommand as eL, ExecuteWorkflowChoiceDef as eM, getRequestAnimationFrame as eN, cancelRequestAnimationFrame as eO, easeInOutCubic as eP, WordMimeType as eQ, ImageMimeType as eR, PdfMimeType as eS, AllFilesMimeType as eT, VideoMimeType as eU, AudioMimeType as eV, MimeTypes as eW, GetContentType as eX, GetViewableExtensions as eY, ChangeLayoutInfoCustomUi as eZ, mobile_regex as e_, isFF as ea, getDeviceIsPhone as eb, getDeviceIsDesktop as ec, getDeviceIsTablet as ed, getDeviceIsMobile as ee, getControlSizeMode as ef, formatBytes as eg, getValidExtension as eh, getIcon as ei, isImage as ej, GetAllColumnsSorted as ek, GetVisibleValue as el, GroupBy as em, FindGroup as en, FillAllLayoutControls as eo, FindToolbarItem as ep, FindLayoutSettingFromLayout94 as eq, GetAllHorizontalFromLayout94 as er, getGridSettings as es, getResetGridSettings as et, GetDefaultMoObjectInfo as eu, getLayout94ObjectInfo as ev, getFormSettings as ew, createFormPanelMetaConditions as ex, getNewMoGridEditor as ey, createGridEditorFormPanel as ez, formRoutes as f, forbiddenValidator as f0, GetImgTags as f1, ImagetoPrint as f2, PrintImage as f3, SaveImageToFile as f4, validateAllFormFields as f5, getFocusableTagNames as f6, addCssVariableToRoot as f7, flattenTree as f8, IsDarkMode as f9, nullOrUndefinedString as fa, fromEntries as fb, bodyClick as fc, removeDynamicStyle as fd, addDynamicVariableTo as fe, AddDynamicFormStyles as ff, RemoveDynamicFormStyles as fg, ContainerComponent as fh, IntersectionStatus as fi, fromIntersectionObserver as fj, CustomRouteReuseStrategy as fk, AuthGuard as fl, RedirectHomeGuard as fm, RootPageComponent as fn, ResizableComponent as fo, ResizableDirective as fp, ResizableModule as fq, PushBannerComponent as fr, BarsaNovinRayCoreModule as fs, 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 };
18768
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-g1_aRXQb.mjs.map
18778
+ 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, PortalPageResolver 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, UlvMainService as bA, UploadService as bB, NetworkStatusService as bC, AudioRecordingService as bD, VideoRecordingService as bE, LocalStorageService as bF, IndexedDbService as bG, BarsaStorageService as bH, PromptUpdateService as bI, NotificationService as bJ, ServiceWorkerNotificationService as bK, ColumnService as bL, ServiceWorkerCommuncationService as bM, SaveScrollPositionService as bN, RoutingService as bO, GroupByService as bP, LayoutMainContentService as bQ, TabpageService as bR, InMemoryStorageService as bS, ShellbarHeightService as bT, ApplicationCtrlrService as bU, PushCheckService as bV, IdbService as bW, PushNotificationService as bX, CardViewService as bY, PortalDynamicPageResolver as bZ, PortalFormPageResolver 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, ApiService as bn, BreadcrumbService as bo, CustomInjector as bp, DialogParams as bq, BarsaDialogService as br, FormPanelService as bs, FormService as bt, ContainerService as bu, HorizontalLayoutService as bv, LayoutService as bw, LogService as bx, PortalService as by, UiService as bz, BaseDynamicComponent as c, MoForReportModel as c$, PortalReportPageResolver as c0, TileGroupBreadcrumResolver as c1, LoginSettingsResolver as c2, ReportBreadcrumbResolver as c3, DateService as c4, DateHijriService as c5, DateMiladiService as c6, DateShamsiService as c7, FormNewComponent as c8, ReportContainerComponent as c9, NumberBaseComponent as cA, GeneralControlInfoModel as cB, StringControlInfoModel as cC, RichStringControlInfoModel as cD, NumberControlInfoModel as cE, FilePictureInfoModel as cF, FileControlInfoModel as cG, CommandControlInfoModel as cH, IconControlInfoModel as cI, PictureFileControlInfoModel as cJ, GaugeControlInfoModel as cK, RelationListControlInfoModel as cL, HistoryControlInfoModel as cM, RabetehAkseTakiListiControlInfoModel as cN, RelatedReportControlInfoModel as cO, CodeEditorControlInfoModel as cP, EnumControlInfoModel as cQ, RowDataOption as cR, DateTimeControlInfoModel as cS, BoolControlInfoModel as cT, CalculateControlInfoModel as cU, SubformControlInfoModel as cV, LinearListControlInfoModel as cW, ListRelationModel as cX, SingleRelationControlInfoModel as cY, MetaobjectDataModel as cZ, MoForReportModelBase as c_, FormComponent as ca, FieldUiComponent as cb, BarsaSapUiFormPageModule as cc, ReportNavigatorComponent as cd, BaseController as ce, ViewBase as cf, ModalRootComponent as cg, ButtonLoadingComponent as ch, UnlimitSessionComponent as ci, SplitterComponent as cj, APP_VERSION as ck, DIALOG_SERVICE as cl, FORM_DIALOG_COMPONENT as cm, NOTIFICATAION_POPUP_SERVER as cn, TOAST_SERVICE as co, NOTIFICATION_WEBWORKER_FACTORY as cp, FieldBaseComponent as cq, FormBaseComponent as cr, FormToolbarBaseComponent as cs, SystemBaseComponent as ct, ReportBaseComponent as cu, ReportItemBaseComponent as cv, ApplicationBaseComponent as cw, LayoutItemBaseComponent as cx, LayoutPanelBaseComponent as cy, PageBaseComponent as cz, DynamicFormComponent as d, getImagePath as d$, ReportBaseInfo as d0, ReportExtraInfo as d1, MetaobjectRelationModel as d2, FieldInfoTypeEnum as d3, BaseReportModel as d4, DefaultCommandsAccessValue as d5, CustomCommand as d6, ReportModel as d7, ReportListModel as d8, ReportFormModel as d9, setTableThWidth as dA, calculateColumnContent as dB, calculateColumnWidth as dC, setColumnWidthByMaxMoContentWidth as dD, calculateMoDataListContentWidthByColumnName as dE, calculateFreeColumnSize as dF, calculateColumnWidthFitToContainer as dG, calcContextMenuWidth as dH, RotateImage as dI, isInLocalMode as dJ, getLabelWidth as dK, getColumnValueOfMoDataList as dL, throwIfAlreadyLoaded as dM, measureText2 as dN, measureText as dO, measureTextBy as dP, genrateInlineMoId as dQ, enumValueToStringSize as dR, isVersionBiggerThan as dS, compareVersions as dT, scrollToElement as dU, executeUlvCommandHandler as dV, getUniqueId as dW, getDateService as dX, getAllItemsPerChildren as dY, setOneDepthLevel as dZ, isFirefox as d_, ReportCalendarModel as da, ReportTreeModel as db, ReportViewColumn as dc, DefaultGridSetting as dd, GridSetting as de, ColSetting as df, SortSetting as dg, ReportField as dh, DateRanges as di, SortDirection as dj, SelectionMode as dk, UlvHeightSizeType as dl, FilesValidationHelper as dm, BarsaApi as dn, ReportViewBaseComponent as dp, FormPropsBaseComponent as dq, LinearListHelper as dr, PageWithFormHandlerBaseComponent as ds, FormPageBaseComponent as dt, FormPageComponent as du, BaseColumnPropsComponent as dv, TilePropsComponent as dw, FormFieldReportPageComponent as dx, BaseUlvSettingComponent as dy, TableHeaderWidthMode as dz, DynamicItemComponent as e, mobile_regex as e$, checkPermission as e0, fixUnclosedParentheses as e1, isFunction as e2, DeviceWidth as e3, getHeaderValue as e4, elementInViewport2 as e5, PreventDefaulEvent as e6, stopPropagation as e7, getParentHeight as e8, getComponentDefined as e9, createGridEditorFormPanel as eA, getLayoutControl as eB, getControlList as eC, shallowEqual as eD, toNumber as eE, InputNumber as eF, AffixRespondEvents as eG, isTargetWindow as eH, getTargetRect as eI, getFieldValue as eJ, availablePrefixes as eK, requestAnimationFramePolyfill as eL, ExecuteDynamicCommand as eM, ExecuteWorkflowChoiceDef as eN, getRequestAnimationFrame as eO, cancelRequestAnimationFrame as eP, easeInOutCubic as eQ, WordMimeType as eR, ImageMimeType as eS, PdfMimeType as eT, AllFilesMimeType as eU, VideoMimeType as eV, AudioMimeType as eW, MimeTypes as eX, GetContentType as eY, GetViewableExtensions as eZ, ChangeLayoutInfoCustomUi as e_, isSafari as ea, isFF as eb, getDeviceIsPhone as ec, getDeviceIsDesktop as ed, getDeviceIsTablet as ee, getDeviceIsMobile as ef, getControlSizeMode as eg, formatBytes as eh, getValidExtension as ei, getIcon as ej, isImage as ek, GetAllColumnsSorted as el, GetVisibleValue as em, GroupBy as en, FindGroup as eo, FillAllLayoutControls as ep, FindToolbarItem as eq, FindLayoutSettingFromLayout94 as er, GetAllHorizontalFromLayout94 as es, getGridSettings as et, getResetGridSettings as eu, GetDefaultMoObjectInfo as ev, getLayout94ObjectInfo as ew, getFormSettings as ex, createFormPanelMetaConditions as ey, getNewMoGridEditor as ez, formRoutes as f, number_only as f0, forbiddenValidator as f1, GetImgTags as f2, ImagetoPrint as f3, PrintImage as f4, SaveImageToFile as f5, validateAllFormFields as f6, getFocusableTagNames as f7, addCssVariableToRoot as f8, flattenTree as f9, IsDarkMode as fa, nullOrUndefinedString as fb, fromEntries as fc, bodyClick as fd, removeDynamicStyle as fe, addDynamicVariableTo as ff, AddDynamicFormStyles as fg, RemoveDynamicFormStyles as fh, ContainerComponent as fi, IntersectionStatus as fj, fromIntersectionObserver as fk, CustomRouteReuseStrategy as fl, AuthGuard as fm, RedirectHomeGuard as fn, RootPageComponent as fo, ResizableComponent as fp, ResizableDirective as fq, ResizableModule as fr, PushBannerComponent as fs, BarsaNovinRayCoreModule as ft, 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 };
18779
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-DJYYSeb5.mjs.map