barsa-novin-ray-core 3.0.2 → 3.0.4

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, signal, ChangeDetectorRef, effect, Injector, EnvironmentInjector, ApplicationRef, createComponent, InjectionToken, Compiler, DOCUMENT as DOCUMENT$1, NgZone, ViewContainerRef, isDevMode, SecurityContext, EventEmitter, Renderer2, HostBinding, Output, HostListener, ViewChild, Directive, TemplateRef, input, booleanAttribute, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, ErrorHandler, provideAppInitializer } from '@angular/core';
2
+ import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, signal, ChangeDetectorRef, effect, Injector, EnvironmentInjector, ApplicationRef, createComponent, InjectionToken, Compiler, afterNextRender, DOCUMENT as DOCUMENT$1, NgZone, ViewContainerRef, isDevMode, SecurityContext, EventEmitter, Renderer2, HostBinding, Output, HostListener, ViewChild, 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, EMPTY, 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';
@@ -1699,15 +1699,23 @@ function calculateMoDataListContentWidthByColumnName(moDataList, column) {
1699
1699
  });
1700
1700
  return Math.ceil(maxWidth);
1701
1701
  }
1702
- function calculateFreeColumnSize(columns) {
1702
+ function calculateFreeColumnSize(columns, containerWidth = 0) {
1703
1703
  let allColWidth = 0;
1704
1704
  const visibleColumns = columns.filter((c) => !c.Hidden);
1705
- visibleColumns.forEach((col, index) => {
1705
+ visibleColumns.forEach((col) => {
1706
1706
  const x = setColumnCaptionWidth(col);
1707
1707
  const w = col.Width && col.Width > 0 ? col.Width : x;
1708
1708
  allColWidth += w;
1709
- col.$Width = index === visibleColumns.length - 1 ? '100%' : `${w}px`;
1709
+ col.$Width = `${w}px`;
1710
1710
  });
1711
+ // اگه مجموعِ عرضِ طبیعیِ ستون‌ها از کانتینر کمتره، یه فضای خالیِ زشت بعد از آخرین ستون می‌مونه؛
1712
+ // فقط توی همین حالت (نه وقتی ستون‌ها زیادن و قراره اسکرولِ افقی بخوره) آخرین ستون رو کش می‌دیم
1713
+ // که فضای باقی‌مونده رو پر کنه. وگرنه (خیلی ستون/اسکرول لازم) عرضِ طبیعیِ خودش رو نگه می‌داره،
1714
+ // چون 100% باعث می‌شه از عرضِ جدولِ از قبل سرریزشده هم بیشتر بزنه بیرون.
1715
+ const lastColumn = visibleColumns[visibleColumns.length - 1];
1716
+ if (lastColumn && containerWidth > 0 && allColWidth < containerWidth) {
1717
+ lastColumn.$Width = '100%';
1718
+ }
1711
1719
  return [...columns];
1712
1720
  }
1713
1721
  function calculateColumnWidthFitToContainer(container, canView, disableContextMenuOverflow, contextMenuItems, columns) {
@@ -5939,7 +5947,8 @@ class FormPanelService extends BaseComponent {
5939
5947
  this.context = context;
5940
5948
  this._context = context;
5941
5949
  const isModal = BarsaApi.Common.Util.TryGetValue(this, '_context.Setting.IsModal', false);
5942
- if (this._context?.IsSubForm || isModal || this._isModal.getValue()) {
5950
+ const disableRefreshRoute = BarsaApi.Common.Util.TryGetValue(this, '_context.Setting.DisableRefreshRoute', false);
5951
+ if (disableRefreshRoute || this._context?.IsSubForm || isModal || this._isModal.getValue()) {
5943
5952
  return;
5944
5953
  }
5945
5954
  const mo = this._moSource.getValue();
@@ -6029,6 +6038,175 @@ class FormService {
6029
6038
  }
6030
6039
  }
6031
6040
 
6041
+ /** Default CSS viewport wrapper class for report bodies (table, calendar, �) */
6042
+ const REPORT_GRID_VIEWPORT_CLASS = 'report-grid-wrapper';
6043
+ const DEFAULT_REPORT_LAYOUT_POLICY = Object.freeze({
6044
+ layout: 'inline',
6045
+ scroll: 'inherit'
6046
+ });
6047
+ /** Per-selector defaults (extend in app code if needed). Keys match `UiReportViewBase.UiComponent.Selector`. */
6048
+ const REPORT_TYPE_DEFAULT_POLICIES = Object.freeze({
6049
+ 'bsu-ui-calendar': { layout: 'fill', scroll: 'self' }
6050
+ });
6051
+ function scrollLayoutModeToContextEnvironment(mode) {
6052
+ switch (mode) {
6053
+ case 'nested':
6054
+ return { scrollContainerDepth: 1, shell: 'page' };
6055
+ case 'isolated':
6056
+ return { scrollContainerDepth: 0, shell: 'page', viewportIsolation: true };
6057
+ default:
6058
+ return { scrollContainerDepth: 0, shell: 'page' };
6059
+ }
6060
+ }
6061
+ function contextDefaultsFromEnvironment(env) {
6062
+ if (env.scrollContainerDepth > 0) {
6063
+ return { scroll: 'inherit', layout: 'inline' };
6064
+ }
6065
+ return {};
6066
+ }
6067
+ function mergePolicyLayers(...layers) {
6068
+ let layout;
6069
+ let scroll;
6070
+ for (const layer of layers) {
6071
+ if (!layer) {
6072
+ continue;
6073
+ }
6074
+ if (layer.layout !== undefined) {
6075
+ layout = layer.layout;
6076
+ }
6077
+ if (layer.scroll !== undefined) {
6078
+ scroll = layer.scroll;
6079
+ }
6080
+ }
6081
+ return {
6082
+ layout: layout ?? DEFAULT_REPORT_LAYOUT_POLICY.layout,
6083
+ scroll: scroll ?? DEFAULT_REPORT_LAYOUT_POLICY.scroll
6084
+ };
6085
+ }
6086
+ /**
6087
+ * Final scroll arbitration (pure). Call after merge so registry/explicit `self` wins over nested inherit defaults.
6088
+ */
6089
+ function resolveFinalScroll(merged, env) {
6090
+ if (merged.scroll === 'self') {
6091
+ return 'self';
6092
+ }
6093
+ if (env.scrollContainerDepth > 0) {
6094
+ return 'inherit';
6095
+ }
6096
+ return 'self';
6097
+ }
6098
+ /**
6099
+ * Pure, framework-agnostic policy resolution. Later layers in `extraPartials` override earlier ones.
6100
+ * Order: DEFAULT, contextDefaults(env), registryDefault, ...extraPartials (each partial last-wins on its own keys).
6101
+ */
6102
+ function resolveReportLayoutPolicy(env, registryDefault, ...extraPartials) {
6103
+ const merged = mergePolicyLayers({ layout: DEFAULT_REPORT_LAYOUT_POLICY.layout, scroll: DEFAULT_REPORT_LAYOUT_POLICY.scroll }, contextDefaultsFromEnvironment(env), registryDefault, ...extraPartials);
6104
+ const scroll = resolveFinalScroll(merged, env);
6105
+ return Object.freeze({
6106
+ layout: merged.layout,
6107
+ scroll
6108
+ });
6109
+ }
6110
+ function getReportTypeDefaultPolicy(selector) {
6111
+ if (!selector) {
6112
+ return undefined;
6113
+ }
6114
+ return REPORT_TYPE_DEFAULT_POLICIES[selector];
6115
+ }
6116
+ /** Optional metadata path on view settings (low-code / future designer) */
6117
+ function extractLayoutPolicyFromView(view) {
6118
+ const s = view?.UiComponent?.Settings;
6119
+ const raw = s?.['ReportLayoutPolicy'];
6120
+ return raw;
6121
+ }
6122
+
6123
+ /**
6124
+ * قرارداد DOM برای «رکورد انتخاب‌شده» داخل بدنه‌ی گزارش.
6125
+ * سطرهای جدول این ویژگی را از `[attr.aria-selected]="isChecked"` می‌گیرند، و `isChecked`
6126
+ * خودش از `MetaobjectDataModel.$IsChecked` می‌آید — یعنی همان منبع حقیقتِ انتخاب که چون
6127
+ * ویوِ گزارش هنگام بازشدن فرم فقط detach می‌شود (نه destroy)، زنده می‌ماند.
6128
+ */
6129
+ const REPORT_SELECTED_RECORD_SELECTOR = '[aria-selected="true"]';
6130
+ /** حاشیه‌ی تحمل برای مقایسه‌های پیکسلی (گرد‌کردنِ subpixel مرورگر). */
6131
+ const PIXEL_TOLERANCE = 1;
6132
+ /** مرز قراردادی بدنه‌ی گزارش داخل یک هاست مشخص. */
6133
+ function findReportViewport(host) {
6134
+ return host?.querySelector(`.${REPORT_GRID_VIEWPORT_CLASS}`) ?? null;
6135
+ }
6136
+ /**
6137
+ * scroll owner مؤثر را از `from` تا `boundary` (شاملِ خودِ boundary) پیدا می‌کند.
6138
+ *
6139
+ * مرز قراردادی همیشه خودش owner نیست: در گزارش جدولی، هاست `.report-view` به‌دلیل
6140
+ * `overflow-x: auto` یک `overflow-y` مؤثر پیدا می‌کند و چون ارتفاع پیکسلی می‌گیرد، خودِ
6141
+ * آن اسکرول می‌شود در حالی که wrapper بالادستش `scrollHeight === clientHeight` می‌ماند.
6142
+ */
6143
+ function findReportScrollOwner(from, boundary) {
6144
+ let current = from;
6145
+ while (current) {
6146
+ if (_isVerticallyScrollable(current)) {
6147
+ return current;
6148
+ }
6149
+ if (current === boundary) {
6150
+ return null;
6151
+ }
6152
+ current = current.parentElement;
6153
+ }
6154
+ return null;
6155
+ }
6156
+ /** آیا رکورد کاملاً داخل ناحیه‌ی قابل‌مشاهده‌ی owner خودش است؟ */
6157
+ function isRecordVisible(owner, record) {
6158
+ const ownerRect = owner.getBoundingClientRect();
6159
+ const recordRect = record.getBoundingClientRect();
6160
+ return (recordRect.top >= ownerRect.top - PIXEL_TOLERANCE &&
6161
+ recordRect.bottom <= ownerRect.bottom + PIXEL_TOLERANCE);
6162
+ }
6163
+ /**
6164
+ * رکورد انتخاب‌شده را داخل scroll owner خودش وسط‌چین می‌کند و برمی‌گرداند که آیا در
6165
+ * نتیجه دیده می‌شود یا نه.
6166
+ *
6167
+ * عمداً از `scrollIntoView` استفاده نمی‌شود: آن متد همه‌ی اجداد اسکرول‌شونده (از جمله
6168
+ * صفحه‌ی بیرونی) را جابه‌جا می‌کند، در حالی که این جریان فقط اجازه دارد اسکرولِ داخلِ مرز
6169
+ * قراردادی گزارش را تغییر دهد.
6170
+ *
6171
+ * هیچ ورودیِ نامعتبری (null، عنصر detach‌شده، نبودِ لنگر، نبودِ owner) throw نمی‌کند.
6172
+ */
6173
+ function revealSelectedRecord(viewport) {
6174
+ if (!viewport?.isConnected) {
6175
+ return false;
6176
+ }
6177
+ const record = viewport.querySelector(REPORT_SELECTED_RECORD_SELECTOR);
6178
+ if (!record?.isConnected) {
6179
+ return false;
6180
+ }
6181
+ const owner = findReportScrollOwner(record, viewport);
6182
+ if (!owner) {
6183
+ return false;
6184
+ }
6185
+ const maxScrollTop = owner.scrollHeight - owner.clientHeight;
6186
+ if (maxScrollTop <= 0) {
6187
+ return false;
6188
+ }
6189
+ const offsetInsideOwner = record.getBoundingClientRect().top - owner.getBoundingClientRect().top;
6190
+ const centered = owner.scrollTop + offsetInsideOwner - (owner.clientHeight - record.offsetHeight) / 2;
6191
+ owner.scrollTop = Math.min(Math.max(centered, 0), maxScrollTop);
6192
+ return isRecordVisible(owner, record);
6193
+ }
6194
+ function _isVerticallyScrollable(el) {
6195
+ if (el.scrollHeight - el.clientHeight <= PIXEL_TOLERANCE) {
6196
+ return false;
6197
+ }
6198
+ const overflowY = el.ownerDocument?.defaultView?.getComputedStyle(el).overflowY;
6199
+ return overflowY === 'auto' || overflowY === 'scroll' || overflowY === 'overlay';
6200
+ }
6201
+
6202
+ /**
6203
+ * حداکثر فریم‌هایی که بعد از insert برای تثبیت layout صبر می‌کنیم.
6204
+ * دلیل وجودش: در لحظه‌ی insert، DOM فرمِ در حال نابودی هنوز حذف نشده و ارتفاع گزارش
6205
+ * تثبیت نشده است؛ ضمن اینکه async pipeهای ویوِ detach‌شده در اولین change detection
6206
+ * مقادیر جدید ارتفاع را تحویل می‌دهند. به‌جای یک delay عددیِ دلخواه، چند فریمِ محدود
6207
+ * retry می‌کنیم و به‌محض دیده‌شدنِ رکورد متوقف می‌شویم.
6208
+ */
6209
+ const MAX_REVEAL_FRAMES = 3;
6032
6210
  class ContainerService {
6033
6211
  constructor() {
6034
6212
  this.detachParent = true;
@@ -6038,9 +6216,16 @@ class ContainerService {
6038
6216
  this._parentService = inject(ContainerService, { skipSelf: true, optional: true });
6039
6217
  this._scrollTop = 0;
6040
6218
  this._el = inject(ElementRef);
6219
+ this._injector = inject(Injector);
6220
+ /** مرز قراردادی گزارشی که هنگام detach زنده بود؛ لنگرِ بازیابی بعد از insert. */
6221
+ this._reportViewport = null;
6222
+ this._revealFrame = 0;
6223
+ this._destroyed = false;
6041
6224
  }
6042
6225
  /** Inserted by Angular inject() migration for backwards compatibility */
6043
6226
  ngOnDestroy() {
6227
+ this._destroyed = true;
6228
+ this._resetScrollState();
6044
6229
  this._onDestroy$.next();
6045
6230
  this._onDestroy$.complete();
6046
6231
  if (this._parentService && this.detachParent) {
@@ -6055,10 +6240,22 @@ class ContainerService {
6055
6240
  }
6056
6241
  }
6057
6242
  detach() {
6243
+ // هر detach با state تمیز شروع می‌شود تا مقدار اسکرولِ detachِ قبلی نشت نکند.
6244
+ this._resetScrollState();
6058
6245
  this._setScrollPosition();
6246
+ this._reportViewport = findReportViewport(this._el?.nativeElement);
6059
6247
  this.state = 'detach';
6060
6248
  this._viewRef = this._viewContainerRef.detach();
6061
6249
  }
6250
+ _resetScrollState() {
6251
+ this._scrollTop = 0;
6252
+ this._elDomScrollbar = null;
6253
+ this._reportViewport = null;
6254
+ if (this._revealFrame) {
6255
+ cancelAnimationFrame(this._revealFrame);
6256
+ this._revealFrame = 0;
6257
+ }
6258
+ }
6062
6259
  _setScrollPosition() {
6063
6260
  const elDom = this._el.nativeElement;
6064
6261
  if (elDom) {
@@ -6083,10 +6280,36 @@ class ContainerService {
6083
6280
  }
6084
6281
  }
6085
6282
  }
6283
+ /**
6284
+ * بازگرداندن گزارش به رکوردی که کاربر بازش کرده بود.
6285
+ * لنگر (رکورد `$IsChecked`) چون روی داده است و ویو فقط detach شده، زنده مانده؛ پس
6286
+ * برخلاف بازیابیِ عدد پیکسلی نیازی به گرفتنِ snapshot در «لحظه‌ی درست» نداریم.
6287
+ */
6288
+ _scheduleSelectedRecordReveal() {
6289
+ const viewport = this._reportViewport;
6290
+ if (!viewport || this._destroyed) {
6291
+ return;
6292
+ }
6293
+ afterNextRender(() => this._revealSelectedRecord(viewport, MAX_REVEAL_FRAMES), {
6294
+ injector: this._injector
6295
+ });
6296
+ }
6297
+ _revealSelectedRecord(viewport, remainingFrames) {
6298
+ // ممکن است بین زمان‌بندی و اجرا، سرویس نابود شده یا detach جدیدی رخ داده باشد.
6299
+ if (this._destroyed || this._reportViewport !== viewport || !viewport.isConnected) {
6300
+ return;
6301
+ }
6302
+ if (revealSelectedRecord(viewport) || remainingFrames <= 0) {
6303
+ this._revealFrame = 0;
6304
+ return;
6305
+ }
6306
+ this._revealFrame = requestAnimationFrame(() => this._revealSelectedRecord(viewport, remainingFrames - 1));
6307
+ }
6086
6308
  insert() {
6087
6309
  if (this._viewRef) {
6088
6310
  this._viewContainerRef.insert(this._viewRef);
6089
6311
  this._restoreScrollPostion();
6312
+ this._scheduleSelectedRecordReveal();
6090
6313
  }
6091
6314
  else {
6092
6315
  this.addModules.next();
@@ -6836,7 +7059,7 @@ function reportRoutes(authGuard = false) {
6836
7059
  return {
6837
7060
  path: 'report/:id',
6838
7061
  canActivate: authGuard ? [AuthGuard] : [],
6839
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-DFDfT3fn.mjs').then((m) => m.BarsaReportPageModule),
7062
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-DTXjxvrk.mjs').then((m) => m.BarsaReportPageModule),
6840
7063
  // pageData را صریحاً null می‌کنیم تا صفحه‌ی گزارش، pageDataِ صفحه‌ی والد (مثل home) را
6841
7064
  // به ارث نبرد؛ در غیر این صورت PageBaseComponent.getData$ ماژول‌های صفحه‌ی والد را هم
6842
7065
  // داخل صفحه‌ی گزارش رندر می‌کند (مثلاً shellbar). نگاه کن به CustomRouteReuseStrategy.
@@ -20183,88 +20406,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImpor
20183
20406
  }]
20184
20407
  }] });
20185
20408
 
20186
- /** Default CSS viewport wrapper class for report bodies (table, calendar, �) */
20187
- const REPORT_GRID_VIEWPORT_CLASS = 'report-grid-wrapper';
20188
- const DEFAULT_REPORT_LAYOUT_POLICY = Object.freeze({
20189
- layout: 'inline',
20190
- scroll: 'inherit'
20191
- });
20192
- /** Per-selector defaults (extend in app code if needed). Keys match `UiReportViewBase.UiComponent.Selector`. */
20193
- const REPORT_TYPE_DEFAULT_POLICIES = Object.freeze({
20194
- 'bsu-ui-calendar': { layout: 'fill', scroll: 'self' }
20195
- });
20196
- function scrollLayoutModeToContextEnvironment(mode) {
20197
- switch (mode) {
20198
- case 'nested':
20199
- return { scrollContainerDepth: 1, shell: 'page' };
20200
- case 'isolated':
20201
- return { scrollContainerDepth: 0, shell: 'page', viewportIsolation: true };
20202
- default:
20203
- return { scrollContainerDepth: 0, shell: 'page' };
20204
- }
20205
- }
20206
- function contextDefaultsFromEnvironment(env) {
20207
- if (env.scrollContainerDepth > 0) {
20208
- return { scroll: 'inherit', layout: 'inline' };
20209
- }
20210
- return {};
20211
- }
20212
- function mergePolicyLayers(...layers) {
20213
- let layout;
20214
- let scroll;
20215
- for (const layer of layers) {
20216
- if (!layer) {
20217
- continue;
20218
- }
20219
- if (layer.layout !== undefined) {
20220
- layout = layer.layout;
20221
- }
20222
- if (layer.scroll !== undefined) {
20223
- scroll = layer.scroll;
20224
- }
20225
- }
20226
- return {
20227
- layout: layout ?? DEFAULT_REPORT_LAYOUT_POLICY.layout,
20228
- scroll: scroll ?? DEFAULT_REPORT_LAYOUT_POLICY.scroll
20229
- };
20230
- }
20231
- /**
20232
- * Final scroll arbitration (pure). Call after merge so registry/explicit `self` wins over nested inherit defaults.
20233
- */
20234
- function resolveFinalScroll(merged, env) {
20235
- if (merged.scroll === 'self') {
20236
- return 'self';
20237
- }
20238
- if (env.scrollContainerDepth > 0) {
20239
- return 'inherit';
20240
- }
20241
- return 'self';
20242
- }
20243
- /**
20244
- * Pure, framework-agnostic policy resolution. Later layers in `extraPartials` override earlier ones.
20245
- * Order: DEFAULT, contextDefaults(env), registryDefault, ...extraPartials (each partial last-wins on its own keys).
20246
- */
20247
- function resolveReportLayoutPolicy(env, registryDefault, ...extraPartials) {
20248
- const merged = mergePolicyLayers({ layout: DEFAULT_REPORT_LAYOUT_POLICY.layout, scroll: DEFAULT_REPORT_LAYOUT_POLICY.scroll }, contextDefaultsFromEnvironment(env), registryDefault, ...extraPartials);
20249
- const scroll = resolveFinalScroll(merged, env);
20250
- return Object.freeze({
20251
- layout: merged.layout,
20252
- scroll
20253
- });
20254
- }
20255
- function getReportTypeDefaultPolicy(selector) {
20256
- if (!selector) {
20257
- return undefined;
20258
- }
20259
- return REPORT_TYPE_DEFAULT_POLICIES[selector];
20260
- }
20261
- /** Optional metadata path on view settings (low-code / future designer) */
20262
- function extractLayoutPolicyFromView(view) {
20263
- const s = view?.UiComponent?.Settings;
20264
- const raw = s?.['ReportLayoutPolicy'];
20265
- return raw;
20266
- }
20267
-
20268
20409
  class NoInternetComponent extends BaseComponent {
20269
20410
  /** Inserted by Angular inject() migration for backwards compatibility */
20270
20411
  constructor() {
@@ -21272,5 +21413,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImpor
21272
21413
  * Generated bundle index. Do not edit.
21273
21414
  */
21274
21415
 
21275
- 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, FileControlInfoModel 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, DynamicCommandDirective as aA, DynamicDarkColorPipe as aB, DynamicFormComponent as aC, DynamicFormToolbaritemComponent as aD, DynamicItemComponent as aE, DynamicLayoutComponent as aF, DynamicRootVariableDirective as aG, DynamicStyleDirective as aH, DynamicUlvPagingComponent as aI, DynamicUlvToolbarComponent as aJ, EllapsisTextDirective as aK, EllipsifyDirective as aL, EmptyPageComponent as aM, EmptyPageWithRouterAndRouterOutletComponent as aN, EntitySettingsStore as aO, EnumCaptionPipe as aP, EnumControlInfoModel as aQ, ExecuteDynamicCommand as aR, ExecuteWorkflowChoiceDef as aS, ExistsColumnsPipe as aT, FORM_DIALOG_COMPONENT as aU, FieldBaseComponent as aV, FieldBaseController as aW, FieldDirective as aX, FieldInfoTypeEnum as aY, FieldUiComponent as aZ, FieldViewBase 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, CustomUiRegistryService as am, DEFAULT_OBJECT_ICON as an, DEFAULT_REPORT_LAYOUT_POLICY as ao, DIALOG_SERVICE as ap, DateHijriService as aq, DateMiladiService as ar, DateRanges as as, DateService as at, DateShamsiService as au, DateTimeControlInfoModel as av, DefaultCommandsAccessValue as aw, DefaultGridSetting as ax, DeviceWidth as ay, DialogParams as az, AddDynamicFormStyles as b, IsImagePipe as b$, FileInfoCountPipe as b0, FilePictureInfoModel as b1, FilesValidationHelper as b2, FillAllLayoutControls as b3, FillEmptySpaceDirective as b4, FilterColumnsByDetailsPipe as b5, FilterInlineActionListPipe as b6, FilterPipe as b7, FilterStringPipe as b8, FilterTabPipe as b9, GetCssVariableValuePipe as bA, GetDefaultMoObjectInfo as bB, GetImgTags as bC, GetViewableExtensions as bD, GetVisibleValue as bE, GridSetting as bF, GroupBy as bG, GroupByPipe as bH, GroupByService as bI, HeaderFacetValuePipe as bJ, HideAcceptCancelButtonsPipe as bK, HideColumnsInmobilePipe as bL, HistoryControlInfoModel as bM, HorizontalLayoutService as bN, HorizontalResponsiveDirective as bO, IconControlInfoModel as bP, IdbService as bQ, ImageLazyDirective as bR, ImageMimeType as bS, ImagetoPrint as bT, InMemoryStorageService as bU, IndexedDbService as bV, InputNumber as bW, IntersectionObserverDirective as bX, IntersectionStatus as bY, IsDarkMode as bZ, IsExpandedNodePipe as b_, FilterToolbarControlPipe as ba, FilterWorkflowInMobilePipe as bb, FindColumnByDbNamePipe as bc, FindColumnsPipe as bd, FindGroup as be, FindLayoutSettingFromLayout94 as bf, FindPreviewColumnPipe as bg, FindToolbarItem as bh, FioriIconPipe as bi, FormBaseComponent as bj, FormCloseDirective as bk, FormComponent as bl, FormFieldReportPageComponent as bm, FormNewComponent as bn, FormPageBaseComponent as bo, FormPageComponent as bp, FormPanelService as bq, FormPropsBaseComponent as br, FormService as bs, FormToolbarBaseComponent as bt, FormToolbarButton as bu, GaugeControlInfoModel as bv, GeneralControlInfoModel as bw, GetAllColumnsSorted as bx, GetAllHorizontalFromLayout94 as by, GetContentType as bz, AffixRespondEvents as c, PrintFilesDirective as c$, ItemsRendererDirective as c0, LabelStarTrimPipe as c1, LabelmandatoryDirective as c2, LayoutItemBaseComponent as c3, LayoutMainContentService as c4, LayoutPanelBaseComponent as c5, LayoutService as c6, LeafletLongPressDirective as c7, LinearListControlInfoModel as c8, LinearListHelper as c9, NOTIFICATAION_POPUP_SERVER as cA, NOTIFICATION_WEBWORKER_FACTORY as cB, NetworkStatusService as cC, NotFoundComponent as cD, NotificationService as cE, NowraptextDirective as cF, NumberBaseComponent as cG, NumberControlInfoModel as cH, NumbersOnlyInputDirective as cI, NumeralPipe as cJ, OverflowTextDirective as cK, PageBaseComponent as cL, PageWithFormHandlerBaseComponent as cM, PdfMimeType as cN, PictureFieldSourcePipe as cO, PictureFileControlInfoModel as cP, PicturesByGroupIdPipe as cQ, PlaceHolderDirective as cR, PortalDynamicPageResolver as cS, PortalFormPageResolver as cT, PortalPageComponent as cU, PortalPageResolver as cV, PortalPageSidebarComponent as cW, PortalReportPageResolver as cX, PortalService as cY, PreventDefaulEvent as cZ, PreventDefaultDirective as c_, ListCountPipe as ca, ListRelationModel as cb, LoadExternalFilesDirective as cc, LocalStorageService as cd, LogService as ce, LoginSettingsResolver as cf, MapToChatMessagePipe as cg, MasterDetailsPageComponent as ch, MeasureFormTitleWidthDirective as ci, MergeFieldsToColumnsPipe as cj, MetaobjectDataModel as ck, MetaobjectRelationModel as cl, MimeTypes as cm, MoForReportModel as cn, MoForReportModelBase as co, MoIconPipe as cp, MoInfoUlvMoListPipe as cq, MoInfoUlvPagingPipe as cr, MoLinkerDirective as cs, MoReportValueConcatPipe as ct, MoReportValuePipe as cu, MoValuePipe as cv, MobileDirective as cw, ModalRootComponent as cx, MultipleGroupByPipe as cy, NATIVE_FEDERATION_RUNTIME as cz, AllFilesMimeType as d, ScrollToSelectedDirective as d$, PrintImage as d0, PromptUpdateService as d1, PushBannerComponent as d2, PushCheckService as d3, PushNotificationService as d4, REPORT_GRID_VIEWPORT_CLASS as d5, REPORT_TYPE_DEFAULT_POLICIES as d6, RUNTIME_NAV_STATE_SCHEMA_V1 as d7, RabetehAkseTakiListiControlInfoModel as d8, ReadableTextColorPipe as d9, ReportViewBaseComponent as dA, ReportViewColumn as dB, ResizableComponent as dC, ResizableDirective as dD, ResizableModule as dE, ResizeHandlerDirective as dF, ResizeObserverDirective as dG, ResponsiveGridColsDirective as dH, ReversePipe as dI, RichStringControlInfoModel as dJ, RootPageComponent as dK, RootPortalComponent as dL, RotateImage as dM, RouteFormChangeDirective as dN, RoutingService as dO, RowDataOption as dP, RowNumberPipe as dQ, RowState as dR, RuntimeNavStateCacheService as dS, SafeBottomDirective as dT, SanitizeTextPipe as dU, SaveImageDirective as dV, SaveImageToFile as dW, SaveScrollPositionService as dX, ScopedCssPipe as dY, ScrollLayoutContextHolder as dZ, ScrollPersistDirective as d_, RedirectHomeGuard as da, RelatedReportControlInfoModel as db, RelationListControlInfoModel as dc, RelativeDatePipe as dd, RelativeTimeService as de, RemoveDynamicFormStyles as df, RemoveNewlinePipe as dg, RenderUlvDirective as dh, RenderUlvPaginDirective as di, RenderUlvViewerDirective as dj, ReplacePipe as dk, ReportActionListPipe as dl, ReportBaseComponent as dm, ReportBaseInfo as dn, ReportBreadcrumbResolver as dp, ReportCalendarModel as dq, ReportContainerComponent as dr, ReportExtraInfo as ds, ReportField as dt, ReportFormModel as du, ReportItemBaseComponent as dv, ReportListModel as dw, ReportModel as dx, ReportNavigatorComponent as dy, ReportTreeModel as dz, AnchorScrollDirective as e, createGridEditorFormPanel as e$, SelectionMode as e0, SeperatorFixPipe as e1, ServiceWorkerCommuncationService as e2, ServiceWorkerNotificationService as e3, ShellbarHeightService as e4, ShortcutHandlerDirective as e5, ShortcutRegisterDirective as e6, SimpleTemplateEngine as e7, SimplebarDirective as e8, SingleRelationControlInfoModel as e9, UlvMainService as eA, UnlimitSessionComponent as eB, UntilInViewDirective as eC, UploadService as eD, VideoMimeType as eE, VideoRecordingService as eF, ViewBase as eG, VisibleValuePipe as eH, WebOtpDirective as eI, WordMimeType as eJ, WorfkflowwChoiceCommandDirective as eK, addCssVariableToRoot as eL, addDynamicVariableTo as eM, availablePrefixes as eN, bodyClick as eO, buildRuntimeNavStateCacheKey as eP, calcContextMenuWidth as eQ, calculateColumnContent as eR, calculateColumnWidth as eS, calculateColumnWidthFitToContainer as eT, calculateFreeColumnSize as eU, calculateMoDataListContentWidthByColumnName as eV, cancelRequestAnimationFrame as eW, checkPermission as eX, compareVersions as eY, contextDefaultsFromEnvironment as eZ, createFormPanelMetaConditions as e_, SortDirection as ea, SortPipe as eb, SortSetting as ec, SplideSliderDirective as ed, SplitPipe as ee, SplitterComponent as ef, StopPropagationDirective as eg, StringControlInfoModel as eh, StringToNumberPipe as ei, SubformControlInfoModel as ej, SystemBaseComponent as ek, TEMPLATE_ENGINE as el, TOAST_SERVICE as em, TableHeaderWidthMode as en, TableResizerDirective as eo, TabpageService as ep, ThImageOrIconePipe as eq, TileGroupBreadcrumResolver as er, TilePropsComponent as es, TlbButtonsPipe as et, ToolbarSettingsPipe as eu, TooltipDirective as ev, TotalSummaryPipe as ew, UiService as ex, UlvCommandDirective as ey, UlvHeightSizeType as ez, formRoutes as f, scrollToElement as f$, easeInOutCubic as f0, elementInViewport2 as f1, enumValueToStringSize as f2, executeUlvCommandHandler as f3, extractLayoutPolicyFromView as f4, fixUnclosedParentheses as f5, flattenTree as f6, forbiddenValidator as f7, formatBytes as f8, fromEntries as f9, getRequestAnimationFrame as fA, getResetGridSettings as fB, getTargetRect as fC, getUniqueId as fD, getValidExtension as fE, hhmmToMs as fF, isFF as fG, isFirefox as fH, isFunction as fI, isIOS as fJ, isImage as fK, isInLocalMode as fL, isSafari as fM, isTargetWindow as fN, isVersionBiggerThan as fO, measureText as fP, measureText2 as fQ, measureTextBy as fR, mobile_regex as fS, multilevelSort as fT, nullOrUndefinedString as fU, number_only as fV, removeDynamicStyle as fW, requestAnimationFramePolyfill as fX, resolveFinalScroll as fY, resolveReportLayoutPolicy as fZ, scrollLayoutModeToContextEnvironment as f_, fromIntersectionObserver as fa, genrateInlineMoId as fb, getAllItemsPerChildren as fc, getColumnValueOfMoDataList as fd, getComponentDefined as fe, getControlList as ff, getControlSizeMode as fg, getDateService as fh, getDeviceIsDesktop as fi, getDeviceIsMobile as fj, getDeviceIsPhone as fk, getDeviceIsTablet as fl, getFieldValue as fm, getFocusableTagNames as fn, getFormSettings as fo, getGridSettings as fp, getHeaderValue as fq, getIcon as fr, getImagePath as fs, getLabelWidth as ft, getLayout94ObjectInfo as fu, getLayoutControl as fv, getNestedValue as fw, getNewMoGridEditor as fx, getParentHeight as fy, getReportTypeDefaultPolicy as fz, ApiService as g, searchEx as g0, setColumnWidthByMaxMoContentWidth as g1, setOneDepthLevel as g2, setTableThWidth as g3, shallowEqual as g4, shouldUseFreeColumnSize as g5, sort as g6, sortEx as g7, stopPropagation as g8, throwIfAlreadyLoaded as g9, toNumber as ga, toRelativeDate as gb, validateAllFormFields as gc, 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 };
21276
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-CakmZXPX.mjs.map
21416
+ 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, FileControlInfoModel 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, DynamicCommandDirective as aA, DynamicDarkColorPipe as aB, DynamicFormComponent as aC, DynamicFormToolbaritemComponent as aD, DynamicItemComponent as aE, DynamicLayoutComponent as aF, DynamicRootVariableDirective as aG, DynamicStyleDirective as aH, DynamicUlvPagingComponent as aI, DynamicUlvToolbarComponent as aJ, EllapsisTextDirective as aK, EllipsifyDirective as aL, EmptyPageComponent as aM, EmptyPageWithRouterAndRouterOutletComponent as aN, EntitySettingsStore as aO, EnumCaptionPipe as aP, EnumControlInfoModel as aQ, ExecuteDynamicCommand as aR, ExecuteWorkflowChoiceDef as aS, ExistsColumnsPipe as aT, FORM_DIALOG_COMPONENT as aU, FieldBaseComponent as aV, FieldBaseController as aW, FieldDirective as aX, FieldInfoTypeEnum as aY, FieldUiComponent as aZ, FieldViewBase 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, CustomUiRegistryService as am, DEFAULT_OBJECT_ICON as an, DEFAULT_REPORT_LAYOUT_POLICY as ao, DIALOG_SERVICE as ap, DateHijriService as aq, DateMiladiService as ar, DateRanges as as, DateService as at, DateShamsiService as au, DateTimeControlInfoModel as av, DefaultCommandsAccessValue as aw, DefaultGridSetting as ax, DeviceWidth as ay, DialogParams as az, AddDynamicFormStyles as b, IsImagePipe as b$, FileInfoCountPipe as b0, FilePictureInfoModel as b1, FilesValidationHelper as b2, FillAllLayoutControls as b3, FillEmptySpaceDirective as b4, FilterColumnsByDetailsPipe as b5, FilterInlineActionListPipe as b6, FilterPipe as b7, FilterStringPipe as b8, FilterTabPipe as b9, GetCssVariableValuePipe as bA, GetDefaultMoObjectInfo as bB, GetImgTags as bC, GetViewableExtensions as bD, GetVisibleValue as bE, GridSetting as bF, GroupBy as bG, GroupByPipe as bH, GroupByService as bI, HeaderFacetValuePipe as bJ, HideAcceptCancelButtonsPipe as bK, HideColumnsInmobilePipe as bL, HistoryControlInfoModel as bM, HorizontalLayoutService as bN, HorizontalResponsiveDirective as bO, IconControlInfoModel as bP, IdbService as bQ, ImageLazyDirective as bR, ImageMimeType as bS, ImagetoPrint as bT, InMemoryStorageService as bU, IndexedDbService as bV, InputNumber as bW, IntersectionObserverDirective as bX, IntersectionStatus as bY, IsDarkMode as bZ, IsExpandedNodePipe as b_, FilterToolbarControlPipe as ba, FilterWorkflowInMobilePipe as bb, FindColumnByDbNamePipe as bc, FindColumnsPipe as bd, FindGroup as be, FindLayoutSettingFromLayout94 as bf, FindPreviewColumnPipe as bg, FindToolbarItem as bh, FioriIconPipe as bi, FormBaseComponent as bj, FormCloseDirective as bk, FormComponent as bl, FormFieldReportPageComponent as bm, FormNewComponent as bn, FormPageBaseComponent as bo, FormPageComponent as bp, FormPanelService as bq, FormPropsBaseComponent as br, FormService as bs, FormToolbarBaseComponent as bt, FormToolbarButton as bu, GaugeControlInfoModel as bv, GeneralControlInfoModel as bw, GetAllColumnsSorted as bx, GetAllHorizontalFromLayout94 as by, GetContentType as bz, AffixRespondEvents as c, PrintFilesDirective as c$, ItemsRendererDirective as c0, LabelStarTrimPipe as c1, LabelmandatoryDirective as c2, LayoutItemBaseComponent as c3, LayoutMainContentService as c4, LayoutPanelBaseComponent as c5, LayoutService as c6, LeafletLongPressDirective as c7, LinearListControlInfoModel as c8, LinearListHelper as c9, NOTIFICATAION_POPUP_SERVER as cA, NOTIFICATION_WEBWORKER_FACTORY as cB, NetworkStatusService as cC, NotFoundComponent as cD, NotificationService as cE, NowraptextDirective as cF, NumberBaseComponent as cG, NumberControlInfoModel as cH, NumbersOnlyInputDirective as cI, NumeralPipe as cJ, OverflowTextDirective as cK, PageBaseComponent as cL, PageWithFormHandlerBaseComponent as cM, PdfMimeType as cN, PictureFieldSourcePipe as cO, PictureFileControlInfoModel as cP, PicturesByGroupIdPipe as cQ, PlaceHolderDirective as cR, PortalDynamicPageResolver as cS, PortalFormPageResolver as cT, PortalPageComponent as cU, PortalPageResolver as cV, PortalPageSidebarComponent as cW, PortalReportPageResolver as cX, PortalService as cY, PreventDefaulEvent as cZ, PreventDefaultDirective as c_, ListCountPipe as ca, ListRelationModel as cb, LoadExternalFilesDirective as cc, LocalStorageService as cd, LogService as ce, LoginSettingsResolver as cf, MapToChatMessagePipe as cg, MasterDetailsPageComponent as ch, MeasureFormTitleWidthDirective as ci, MergeFieldsToColumnsPipe as cj, MetaobjectDataModel as ck, MetaobjectRelationModel as cl, MimeTypes as cm, MoForReportModel as cn, MoForReportModelBase as co, MoIconPipe as cp, MoInfoUlvMoListPipe as cq, MoInfoUlvPagingPipe as cr, MoLinkerDirective as cs, MoReportValueConcatPipe as ct, MoReportValuePipe as cu, MoValuePipe as cv, MobileDirective as cw, ModalRootComponent as cx, MultipleGroupByPipe as cy, NATIVE_FEDERATION_RUNTIME as cz, AllFilesMimeType as d, ScrollPersistDirective as d$, PrintImage as d0, PromptUpdateService as d1, PushBannerComponent as d2, PushCheckService as d3, PushNotificationService as d4, REPORT_GRID_VIEWPORT_CLASS as d5, REPORT_SELECTED_RECORD_SELECTOR as d6, REPORT_TYPE_DEFAULT_POLICIES as d7, RUNTIME_NAV_STATE_SCHEMA_V1 as d8, RabetehAkseTakiListiControlInfoModel as d9, ReportTreeModel as dA, ReportViewBaseComponent as dB, ReportViewColumn as dC, ResizableComponent as dD, ResizableDirective as dE, ResizableModule as dF, ResizeHandlerDirective as dG, ResizeObserverDirective as dH, ResponsiveGridColsDirective as dI, ReversePipe as dJ, RichStringControlInfoModel as dK, RootPageComponent as dL, RootPortalComponent as dM, RotateImage as dN, RouteFormChangeDirective as dO, RoutingService as dP, RowDataOption as dQ, RowNumberPipe as dR, RowState as dS, RuntimeNavStateCacheService as dT, SafeBottomDirective as dU, SanitizeTextPipe as dV, SaveImageDirective as dW, SaveImageToFile as dX, SaveScrollPositionService as dY, ScopedCssPipe as dZ, ScrollLayoutContextHolder as d_, ReadableTextColorPipe as da, RedirectHomeGuard as db, RelatedReportControlInfoModel as dc, RelationListControlInfoModel as dd, RelativeDatePipe as de, RelativeTimeService as df, RemoveDynamicFormStyles as dg, RemoveNewlinePipe as dh, RenderUlvDirective as di, RenderUlvPaginDirective as dj, RenderUlvViewerDirective as dk, ReplacePipe as dl, ReportActionListPipe as dm, ReportBaseComponent as dn, ReportBaseInfo as dp, ReportBreadcrumbResolver as dq, ReportCalendarModel as dr, ReportContainerComponent as ds, ReportExtraInfo as dt, ReportField as du, ReportFormModel as dv, ReportItemBaseComponent as dw, ReportListModel as dx, ReportModel as dy, ReportNavigatorComponent as dz, AnchorScrollDirective as e, createFormPanelMetaConditions as e$, ScrollToSelectedDirective as e0, SelectionMode as e1, SeperatorFixPipe as e2, ServiceWorkerCommuncationService as e3, ServiceWorkerNotificationService as e4, ShellbarHeightService as e5, ShortcutHandlerDirective as e6, ShortcutRegisterDirective as e7, SimpleTemplateEngine as e8, SimplebarDirective as e9, UlvHeightSizeType as eA, UlvMainService as eB, UnlimitSessionComponent as eC, UntilInViewDirective as eD, UploadService as eE, VideoMimeType as eF, VideoRecordingService as eG, ViewBase as eH, VisibleValuePipe as eI, WebOtpDirective as eJ, WordMimeType as eK, WorfkflowwChoiceCommandDirective as eL, addCssVariableToRoot as eM, addDynamicVariableTo as eN, availablePrefixes as eO, bodyClick as eP, buildRuntimeNavStateCacheKey as eQ, calcContextMenuWidth as eR, calculateColumnContent as eS, calculateColumnWidth as eT, calculateColumnWidthFitToContainer as eU, calculateFreeColumnSize as eV, calculateMoDataListContentWidthByColumnName as eW, cancelRequestAnimationFrame as eX, checkPermission as eY, compareVersions as eZ, contextDefaultsFromEnvironment as e_, SingleRelationControlInfoModel as ea, SortDirection as eb, SortPipe as ec, SortSetting as ed, SplideSliderDirective as ee, SplitPipe as ef, SplitterComponent as eg, StopPropagationDirective as eh, StringControlInfoModel as ei, StringToNumberPipe as ej, SubformControlInfoModel as ek, SystemBaseComponent as el, TEMPLATE_ENGINE as em, TOAST_SERVICE as en, TableHeaderWidthMode as eo, TableResizerDirective as ep, TabpageService as eq, ThImageOrIconePipe as er, TileGroupBreadcrumResolver as es, TilePropsComponent as et, TlbButtonsPipe as eu, ToolbarSettingsPipe as ev, TooltipDirective as ew, TotalSummaryPipe as ex, UiService as ey, UlvCommandDirective as ez, formRoutes as f, requestAnimationFramePolyfill as f$, createGridEditorFormPanel as f0, easeInOutCubic as f1, elementInViewport2 as f2, enumValueToStringSize as f3, executeUlvCommandHandler as f4, extractLayoutPolicyFromView as f5, findReportScrollOwner as f6, findReportViewport as f7, fixUnclosedParentheses as f8, flattenTree as f9, getNewMoGridEditor as fA, getParentHeight as fB, getReportTypeDefaultPolicy as fC, getRequestAnimationFrame as fD, getResetGridSettings as fE, getTargetRect as fF, getUniqueId as fG, getValidExtension as fH, hhmmToMs as fI, isFF as fJ, isFirefox as fK, isFunction as fL, isIOS as fM, isImage as fN, isInLocalMode as fO, isRecordVisible as fP, isSafari as fQ, isTargetWindow as fR, isVersionBiggerThan as fS, measureText as fT, measureText2 as fU, measureTextBy as fV, mobile_regex as fW, multilevelSort as fX, nullOrUndefinedString as fY, number_only as fZ, removeDynamicStyle as f_, forbiddenValidator as fa, formatBytes as fb, fromEntries as fc, fromIntersectionObserver as fd, genrateInlineMoId as fe, getAllItemsPerChildren as ff, getColumnValueOfMoDataList as fg, getComponentDefined as fh, getControlList as fi, getControlSizeMode as fj, getDateService as fk, getDeviceIsDesktop as fl, getDeviceIsMobile as fm, getDeviceIsPhone as fn, getDeviceIsTablet as fo, getFieldValue as fp, getFocusableTagNames as fq, getFormSettings as fr, getGridSettings as fs, getHeaderValue as ft, getIcon as fu, getImagePath as fv, getLabelWidth as fw, getLayout94ObjectInfo as fx, getLayoutControl as fy, getNestedValue as fz, ApiService as g, resolveFinalScroll as g0, resolveReportLayoutPolicy as g1, revealSelectedRecord as g2, scrollLayoutModeToContextEnvironment as g3, scrollToElement as g4, searchEx as g5, setColumnWidthByMaxMoContentWidth as g6, setOneDepthLevel as g7, setTableThWidth as g8, shallowEqual as g9, shouldUseFreeColumnSize as ga, sort as gb, sortEx as gc, stopPropagation as gd, throwIfAlreadyLoaded as ge, toNumber as gf, toRelativeDate as gg, validateAllFormFields as gh, 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 };
21417
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-BjEjlM4v.mjs.map