barsa-novin-ray-core 2.3.121 → 2.3.124

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.
@@ -4832,6 +4832,7 @@ class FormPanelService extends BaseComponent {
4832
4832
  if (!items) {
4833
4833
  return [];
4834
4834
  }
4835
+ let groupIndex = 10;
4835
4836
  // در صورتی که در موبایل باشد دو دکمه نمایش داده شود از دکمه های کاربر و فرآیندی
4836
4837
  // در صورتی که دکمه ی وجود نداشت فقط دکمه ذخیره نمایش داده شود
4837
4838
  // در حالتهای دیگر ابتدا دکمه های کاربری و فرآیندی و بعد دکمه های تعریف شده سیستم نمایش داده میشود.
@@ -4848,7 +4849,7 @@ class FormPanelService extends BaseComponent {
4848
4849
  const nonStringItems = newItems.filter((c) => typeof c !== 'string');
4849
4850
  const t = nonStringItems.find((c) => !c.isBuiltin && !c.IAmMenu);
4850
4851
  if (t) {
4851
- t.priority = 'high';
4852
+ t.overflowPriority = 'high';
4852
4853
  }
4853
4854
  // let nonBuiltinCount = 0;
4854
4855
  // nonStringItems.forEach((item) => {
@@ -4858,13 +4859,13 @@ class FormPanelService extends BaseComponent {
4858
4859
  // const inFooter = BarsaApi.Common.Util.TryGetValue(item, 'Data.CustomUi.Parameters.InFooter', false);
4859
4860
  // if (item.isBuiltin || inFooter) {
4860
4861
  // // سیستمی
4861
- // item.priority = 'always';
4862
+ // item.overflowPriority = 'always';
4862
4863
  // } else {
4863
4864
  // if (nonBuiltinCount > 1) {
4864
4865
  // // دکمه های کاربری که بیشتر از دو هستند
4865
- // item.priority = 'low';
4866
+ // item.overflowPriority = 'low';
4866
4867
  // } else {
4867
- // item.priority = 'low';
4868
+ // item.overflowPriority = 'low';
4868
4869
  // }
4869
4870
  // nonBuiltinCount++;
4870
4871
  // }
@@ -4872,15 +4873,16 @@ class FormPanelService extends BaseComponent {
4872
4873
  const noBuiltinItems = nonStringItems.filter((c) => typeof c === 'object' &&
4873
4874
  !c.isBuiltin &&
4874
4875
  BarsaApi.Common.Util.TryGetValue(c, 'Data.CustomUi.Parameters.InFooter', false) !== true);
4875
- noBuiltinItems.forEach((item, index) => {
4876
- index === 0 ? (item.priority = 'hight') : (item.priority = 'low');
4876
+ noBuiltinItems.forEach((item, _index) => {
4877
+ item.overflowPriority = 'high';
4878
+ item.overflowGroup = groupIndex++;
4877
4879
  });
4878
4880
  const nonBuiltinCount = noBuiltinItems.length;
4879
4881
  if (nonBuiltinCount === 0) {
4880
4882
  // اگر هیچ دکمه کاربری وجود نداشت
4881
4883
  nonStringItems.forEach((item, _) => {
4882
4884
  if (item.itemId === 'Save') {
4883
- item.priority = 'never';
4885
+ item.overflowPriority = 'never';
4884
4886
  }
4885
4887
  });
4886
4888
  }
@@ -4890,10 +4892,13 @@ class FormPanelService extends BaseComponent {
4890
4892
  const save = saveAndClose.menu.items[0];
4891
4893
  if (save) {
4892
4894
  save.isBuiltin = true;
4893
- save.priority = nonBuiltinCount === 0 ? 'never' : 'always';
4895
+ save.overflowPriority = 'low';
4896
+ save.overflowGroup = 1;
4894
4897
  newItems.push(save);
4895
4898
  if (saveAndNew) {
4896
4899
  save.IAmMenu = true;
4900
+ save.overflowPriority = 'low';
4901
+ save.overflowGroup = 1;
4897
4902
  save.menu = { items: [{ ...saveAndNew }] };
4898
4903
  newItems = newItems.filter((c) => c.itemId !== 'SaveAndNew');
4899
4904
  }
@@ -4912,13 +4917,15 @@ class FormPanelService extends BaseComponent {
4912
4917
  ];
4913
4918
  const moveNextIndex = newItems.findIndex((c) => c.itemId === 'MoveNext');
4914
4919
  if (moveNextIndex > -1) {
4915
- newItems[moveNextIndex].priority = 'always';
4920
+ newItems[moveNextIndex].overflowPriority = 'low';
4921
+ newItems[moveNextIndex].overflowGroup = 2;
4916
4922
  const mos = newItems.splice(moveNextIndex - 1, 2);
4917
4923
  newItems = [...mos, ...newItems];
4918
4924
  }
4919
4925
  const movePrevIndex = newItems.findIndex((c) => c.itemId === 'MovePrev');
4920
4926
  if (movePrevIndex > -1) {
4921
- newItems[movePrevIndex].priority = 'always';
4927
+ newItems[movePrevIndex].overflowGroup = 2;
4928
+ newItems[movePrevIndex].overflowPriority = 'low';
4922
4929
  }
4923
4930
  // check toolbaritems in footer property
4924
4931
  newItems.forEach((c) => {
@@ -5875,7 +5882,7 @@ function reportRoutes(authGuard = false) {
5875
5882
  return {
5876
5883
  path: 'report/:id',
5877
5884
  canActivate: authGuard ? [AuthGuard] : [],
5878
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CxWogBjG.mjs').then((m) => m.BarsaReportPageModule),
5885
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-Dxc9_uZn.mjs').then((m) => m.BarsaReportPageModule),
5879
5886
  resolve: {
5880
5887
  breadcrumb: ReportBreadcrumbResolver
5881
5888
  }
@@ -6972,6 +6979,7 @@ class UlvMainService {
6972
6979
  this._ulvHeightSizeTypeSource = new BehaviorSubject(UlvHeightSizeType.Default);
6973
6980
  this._ulvHeightSizeSource = new BehaviorSubject(0);
6974
6981
  this._toolbarSettingsSource = new BehaviorSubject(null);
6982
+ this._viewSettingsSource = new BehaviorSubject({});
6975
6983
  this.context$ = this._contextSource
6976
6984
  .asObservable()
6977
6985
  .pipe(takeUntil(this._onDestroy$), tap((context) => (this.context = context)), tap((context) => this._initialize(context)), tap((context) => this._addEventListener(context)))
@@ -7106,6 +7114,9 @@ class UlvMainService {
7106
7114
  });
7107
7115
  return toolbarButtons;
7108
7116
  }
7117
+ get viewSettings$() {
7118
+ return this._viewSettingsSource.asObservable();
7119
+ }
7109
7120
  get toolbarSettings$() {
7110
7121
  return this._toolbarSettingsSource.asObservable();
7111
7122
  }
@@ -7259,6 +7270,9 @@ class UlvMainService {
7259
7270
  setAccess(access) {
7260
7271
  this._commandsAccessSource.next(access);
7261
7272
  }
7273
+ setViewSettings(viewSettings) {
7274
+ this._viewSettingsSource.next(viewSettings);
7275
+ }
7262
7276
  setAllowGridColumnSort(allow) {
7263
7277
  this._gridAllowSortSource.next(allow);
7264
7278
  }
@@ -9440,6 +9454,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
9440
9454
  type: Injectable
9441
9455
  }] });
9442
9456
 
9457
+ class BaseSettingsService {
9458
+ constructor() {
9459
+ this.idb = inject(IdbService);
9460
+ }
9461
+ getSetting(key) {
9462
+ // تبدیل Promise به Observable
9463
+ return from(this.idb.get('settings', key));
9464
+ }
9465
+ saveSetting(key, value) {
9466
+ return from(this.idb.set('settings', key, value));
9467
+ }
9468
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseSettingsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
9469
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseSettingsService, providedIn: 'root' }); }
9470
+ }
9471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseSettingsService, decorators: [{
9472
+ type: Injectable,
9473
+ args: [{ providedIn: 'root' }]
9474
+ }] });
9475
+
9476
+ class CalendarSettingsService extends BaseSettingsService {
9477
+ constructor() {
9478
+ super(...arguments);
9479
+ this.CALENDAR_KEY_PREFIX = 'cal_cfg_';
9480
+ // نگهداری وضعیت فعلی برای دسترسی سریع در UI
9481
+ this.configSubject = new BehaviorSubject(null);
9482
+ }
9483
+ get config$() {
9484
+ return this.configSubject.asObservable();
9485
+ }
9486
+ /**
9487
+ * بارگذاری تنظیمات و آپدیت کردن استریم
9488
+ */
9489
+ getSetting(reportId) {
9490
+ // ۱. اول متد اصلی (پدر) را صدا می‌زنیم تا دیتا از IDB بیاید
9491
+ const key = `${this.CALENDAR_KEY_PREFIX}${reportId}`;
9492
+ return super.getSetting(key).pipe(tap$1((c) => this.configSubject.next(c)));
9493
+ }
9494
+ /**
9495
+ * ذخیره تنظیمات و اطلاع‌رسانی به تمام Subscribe کننده‌ها
9496
+ */
9497
+ saveSetting(reportId, newConfig) {
9498
+ const key = `${this.CALENDAR_KEY_PREFIX}${reportId}`;
9499
+ const updatedConfig = { ...this.configSubject.value, ...newConfig };
9500
+ return super.saveSetting(key, updatedConfig).pipe(tap$1(() => this.configSubject.next(updatedConfig)));
9501
+ }
9502
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
9503
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarSettingsService, providedIn: 'root' }); }
9504
+ }
9505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarSettingsService, decorators: [{
9506
+ type: Injectable,
9507
+ args: [{ providedIn: 'root' }]
9508
+ }] });
9509
+
9443
9510
  class FieldBaseComponent extends BaseComponent {
9444
9511
  get customFieldInfo() {
9445
9512
  return this.context.Setting.CustomFieldInfo;
@@ -9945,6 +10012,7 @@ class ReportBaseComponent extends BaseComponent {
9945
10012
  this.moDataList$ = this._ulvMainService.moDataList$.pipe(tap((items) => this._setAllChecked(items)));
9946
10013
  this.selectedCount$ = this._ulvMainService.selectedCount$;
9947
10014
  this._ulvMainService.setAllowGridColumnSort(this.context.ViewSetting?.AllowGridColumnSort);
10015
+ this._ulvMainService.setViewSettings(this.context.ViewSetting);
9948
10016
  this._ulvMainService.setAccess(this.context.Setting.Extra?.DefaultCommandsAccess);
9949
10017
  this._ulvMainService.gridSettingChangedByUser$.pipe(takeUntil(this._onDestroy$)).subscribe((c) => {
9950
10018
  const { setting, isSort, raiseEvent } = c;
@@ -12551,7 +12619,7 @@ class SplitterComponent extends BaseComponent {
12551
12619
  <circle cx="15" cy="16" r="1.5" />
12552
12620
  </svg>
12553
12621
  </div>
12554
- </div>`, isInline: true, styles: [":host{display:flex;align-items:center;justify-content:center;width:12px;cursor:col-resize;z-index:50;-webkit-user-select:none;user-select:none;position:relative}.splitter-container{height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative}.splitter-line{width:1px;height:90%;background:linear-gradient(to bottom,transparent 0%,rgba(203,213,225,1) 15%,rgba(203,213,225,1) 85%,transparent 100%);transition:all .2s}.grip-handle{position:absolute;width:24px;height:32px;background:#fff;border:1px solid #e2e8f0;border-radius:6px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000000d;transition:all .2s;color:#94a3b8}.grip-handle svg{width:14px;height:14px}:host:hover .splitter-line,.is-resizing .splitter-line{background:linear-gradient(to bottom,transparent 0%,#3b82f6 15%,#3b82f6 85%,transparent 100%);width:2px}:host:hover .grip-handle,.is-resizing .grip-handle{border-color:#3b82f6;color:#3b82f6;box-shadow:0 4px 6px -1px #3b82f633;transform:scale(1.05)}\n"] }); }
12622
+ </div>`, isInline: true, styles: [":host{display:flex;align-items:center;justify-content:center;width:12px;cursor:col-resize;z-index:50;-webkit-user-select:none;user-select:none;position:relative;background:var(--sapBackgroundColor)}.splitter-container{height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative}.splitter-line{width:1px;height:90%;background:linear-gradient(to bottom,transparent 0%,rgba(203,213,225,1) 15%,rgba(203,213,225,1) 85%,transparent 100%);transition:all .2s}.grip-handle{position:absolute;width:24px;height:32px;background:#fff;border:1px solid #e2e8f0;border-radius:6px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000000d;transition:all .2s;color:#94a3b8}.grip-handle svg{width:14px;height:14px}:host:hover .splitter-line,.is-resizing .splitter-line{background:linear-gradient(to bottom,transparent 0%,#3b82f6 15%,#3b82f6 85%,transparent 100%);width:2px}:host:hover .grip-handle,.is-resizing .grip-handle{border-color:#3b82f6;color:#3b82f6;box-shadow:0 4px 6px -1px #3b82f633;transform:scale(1.05)}\n"] }); }
12555
12623
  }
12556
12624
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SplitterComponent, decorators: [{
12557
12625
  type: Component,
@@ -12567,7 +12635,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12567
12635
  <circle cx="15" cy="16" r="1.5" />
12568
12636
  </svg>
12569
12637
  </div>
12570
- </div>`, styles: [":host{display:flex;align-items:center;justify-content:center;width:12px;cursor:col-resize;z-index:50;-webkit-user-select:none;user-select:none;position:relative}.splitter-container{height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative}.splitter-line{width:1px;height:90%;background:linear-gradient(to bottom,transparent 0%,rgba(203,213,225,1) 15%,rgba(203,213,225,1) 85%,transparent 100%);transition:all .2s}.grip-handle{position:absolute;width:24px;height:32px;background:#fff;border:1px solid #e2e8f0;border-radius:6px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000000d;transition:all .2s;color:#94a3b8}.grip-handle svg{width:14px;height:14px}:host:hover .splitter-line,.is-resizing .splitter-line{background:linear-gradient(to bottom,transparent 0%,#3b82f6 15%,#3b82f6 85%,transparent 100%);width:2px}:host:hover .grip-handle,.is-resizing .grip-handle{border-color:#3b82f6;color:#3b82f6;box-shadow:0 4px 6px -1px #3b82f633;transform:scale(1.05)}\n"] }]
12638
+ </div>`, styles: [":host{display:flex;align-items:center;justify-content:center;width:12px;cursor:col-resize;z-index:50;-webkit-user-select:none;user-select:none;position:relative;background:var(--sapBackgroundColor)}.splitter-container{height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative}.splitter-line{width:1px;height:90%;background:linear-gradient(to bottom,transparent 0%,rgba(203,213,225,1) 15%,rgba(203,213,225,1) 85%,transparent 100%);transition:all .2s}.grip-handle{position:absolute;width:24px;height:32px;background:#fff;border:1px solid #e2e8f0;border-radius:6px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000000d;transition:all .2s;color:#94a3b8}.grip-handle svg{width:14px;height:14px}:host:hover .splitter-line,.is-resizing .splitter-line{background:linear-gradient(to bottom,transparent 0%,#3b82f6 15%,#3b82f6 85%,transparent 100%);width:2px}:host:hover .grip-handle,.is-resizing .grip-handle{border-color:#3b82f6;color:#3b82f6;box-shadow:0 4px 6px -1px #3b82f633;transform:scale(1.05)}\n"] }]
12571
12639
  }], propDecorators: { emptyClass: [{
12572
12640
  type: HostBinding,
12573
12641
  args: ['class.empty-space']
@@ -12629,7 +12697,7 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
12629
12697
  </div>
12630
12698
  <bnrc-splitter ></bnrc-splitter>
12631
12699
  <!-- جزئیات -->
12632
- <div class="tw-w-full md:tw-flex-1 tw-overflow-hidden details tw-min-w-0">
12700
+ <div class="fd-dynamic-page__content tw-w-full md:tw-flex-1 !tw-overflow-hidden details tw-min-w-0 tw-p-0">
12633
12701
  <router-outlet name="details"></router-outlet>
12634
12702
  </div>
12635
12703
  </div>
@@ -12647,7 +12715,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12647
12715
  </div>
12648
12716
  <bnrc-splitter ></bnrc-splitter>
12649
12717
  <!-- جزئیات -->
12650
- <div class="tw-w-full md:tw-flex-1 tw-overflow-hidden details tw-min-w-0">
12718
+ <div class="fd-dynamic-page__content tw-w-full md:tw-flex-1 !tw-overflow-hidden details tw-min-w-0 tw-p-0">
12651
12719
  <router-outlet name="details"></router-outlet>
12652
12720
  </div>
12653
12721
  </div>
@@ -14133,7 +14201,7 @@ class DynamicUlvToolbarComponent extends BaseDynamicComponent {
14133
14201
  }
14134
14202
  }
14135
14203
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicUlvToolbarComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14136
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicUlvToolbarComponent, isStandalone: false, selector: "bnrc-dynamic-ulv-toolbar-component", inputs: { allowGridColumnSort: "allowGridColumnSort", useLayoutItemTextForControl: "useLayoutItemTextForControl", enableSearch: "enableSearch", hideTitle: "hideTitle", title: "title", icon: "icon", deviceName: "deviceName", deviceSize: "deviceSize", access: "access", hideToolbar: "hideToolbar", toolbarButtons: "toolbarButtons", contentDensity: "contentDensity", inlineEditMode: "inlineEditMode", allowInlineEdit: "allowInlineEdit", gridSetting: "gridSetting", viewCollection: "viewCollection", toolbarButtonsReportView: "toolbarButtonsReportView", reportView: "reportView", inDialog: "inDialog", isMultiSelect: "isMultiSelect", cls: "cls", hasSelected: "hasSelected", config: "config", hidden: "hidden", buttons: "buttons", moDataListCount: "moDataListCount" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14204
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicUlvToolbarComponent, isStandalone: false, selector: "bnrc-dynamic-ulv-toolbar-component", inputs: { viewSettings: "viewSettings", allowGridColumnSort: "allowGridColumnSort", useLayoutItemTextForControl: "useLayoutItemTextForControl", enableSearch: "enableSearch", hideTitle: "hideTitle", title: "title", icon: "icon", deviceName: "deviceName", deviceSize: "deviceSize", access: "access", hideToolbar: "hideToolbar", toolbarButtons: "toolbarButtons", contentDensity: "contentDensity", inlineEditMode: "inlineEditMode", allowInlineEdit: "allowInlineEdit", gridSetting: "gridSetting", viewCollection: "viewCollection", toolbarButtonsReportView: "toolbarButtonsReportView", reportView: "reportView", inDialog: "inDialog", isMultiSelect: "isMultiSelect", cls: "cls", hasSelected: "hasSelected", config: "config", hidden: "hidden", buttons: "buttons", moDataListCount: "moDataListCount" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14137
14205
  }
14138
14206
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicUlvToolbarComponent, decorators: [{
14139
14207
  type: Component,
@@ -14143,7 +14211,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
14143
14211
  changeDetection: ChangeDetectionStrategy.OnPush,
14144
14212
  standalone: false
14145
14213
  }]
14146
- }], propDecorators: { allowGridColumnSort: [{
14214
+ }], propDecorators: { viewSettings: [{
14215
+ type: Input
14216
+ }], allowGridColumnSort: [{
14147
14217
  type: Input
14148
14218
  }], useLayoutItemTextForControl: [{
14149
14219
  type: Input
@@ -16646,10 +16716,13 @@ class ColumnValueDirective extends BaseDirective {
16646
16716
  }
16647
16717
  }
16648
16718
  _setInnerHtml(value) {
16649
- if (value) {
16719
+ if (typeof value !== 'undefined') {
16650
16720
  const formattedValue = `\u202B${value}\u202C`;
16651
16721
  this._renderer2.setProperty(this._el.nativeElement, 'textContent', formattedValue);
16652
16722
  }
16723
+ else {
16724
+ this._renderer2.setProperty(this._el.nativeElement, 'textContent', '');
16725
+ }
16653
16726
  }
16654
16727
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ColumnValueDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
16655
16728
  static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: ColumnValueDirective, isStandalone: false, selector: "[columnValue]", inputs: { columnValue: "columnValue" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
@@ -18305,7 +18378,8 @@ const services = [
18305
18378
  BarsaStorageService,
18306
18379
  ServiceWorkerCommuncationService,
18307
18380
  ApplicationCtrlrService,
18308
- PushNotificationService
18381
+ PushNotificationService,
18382
+ CalendarSettingsService
18309
18383
  ];
18310
18384
  const pipes = [
18311
18385
  NumeralPipe,
@@ -18775,5 +18849,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18775
18849
  * Generated bundle index. Do not edit.
18776
18850
  */
18777
18851
 
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
18852
+ 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, PortalDynamicPageResolver 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, BaseSettingsService as bZ, CalendarSettingsService 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, MetaobjectDataModel as c$, PortalFormPageResolver as c0, PortalPageResolver as c1, PortalReportPageResolver as c2, TileGroupBreadcrumResolver as c3, LoginSettingsResolver as c4, ReportBreadcrumbResolver as c5, DateService as c6, DateHijriService as c7, DateMiladiService as c8, DateShamsiService as c9, LayoutPanelBaseComponent as cA, PageBaseComponent as cB, NumberBaseComponent as cC, GeneralControlInfoModel as cD, StringControlInfoModel as cE, RichStringControlInfoModel as cF, NumberControlInfoModel as cG, FilePictureInfoModel as cH, FileControlInfoModel as cI, CommandControlInfoModel as cJ, IconControlInfoModel as cK, PictureFileControlInfoModel as cL, GaugeControlInfoModel as cM, RelationListControlInfoModel as cN, HistoryControlInfoModel as cO, RabetehAkseTakiListiControlInfoModel as cP, RelatedReportControlInfoModel as cQ, CodeEditorControlInfoModel as cR, EnumControlInfoModel as cS, RowDataOption as cT, DateTimeControlInfoModel as cU, BoolControlInfoModel as cV, CalculateControlInfoModel as cW, SubformControlInfoModel as cX, LinearListControlInfoModel as cY, ListRelationModel as cZ, SingleRelationControlInfoModel as c_, FormNewComponent as ca, ReportContainerComponent as cb, FormComponent as cc, FieldUiComponent as cd, BarsaSapUiFormPageModule as ce, ReportNavigatorComponent as cf, BaseController as cg, ViewBase as ch, ModalRootComponent as ci, ButtonLoadingComponent as cj, UnlimitSessionComponent as ck, SplitterComponent as cl, APP_VERSION as cm, DIALOG_SERVICE as cn, FORM_DIALOG_COMPONENT as co, NOTIFICATAION_POPUP_SERVER as cp, TOAST_SERVICE as cq, NOTIFICATION_WEBWORKER_FACTORY as cr, FieldBaseComponent as cs, FormBaseComponent as ct, FormToolbarBaseComponent as cu, SystemBaseComponent as cv, ReportBaseComponent as cw, ReportItemBaseComponent as cx, ApplicationBaseComponent as cy, LayoutItemBaseComponent as cz, DynamicFormComponent as d, setOneDepthLevel as d$, MoForReportModelBase as d0, MoForReportModel as d1, ReportBaseInfo as d2, ReportExtraInfo as d3, MetaobjectRelationModel as d4, FieldInfoTypeEnum as d5, BaseReportModel as d6, DefaultCommandsAccessValue as d7, CustomCommand as d8, ReportModel as d9, BaseUlvSettingComponent as dA, TableHeaderWidthMode as dB, setTableThWidth as dC, calculateColumnContent as dD, calculateColumnWidth as dE, setColumnWidthByMaxMoContentWidth as dF, calculateMoDataListContentWidthByColumnName as dG, calculateFreeColumnSize as dH, calculateColumnWidthFitToContainer as dI, calcContextMenuWidth as dJ, RotateImage as dK, isInLocalMode as dL, getLabelWidth as dM, getColumnValueOfMoDataList as dN, throwIfAlreadyLoaded as dO, measureText2 as dP, measureText as dQ, measureTextBy as dR, genrateInlineMoId as dS, enumValueToStringSize as dT, isVersionBiggerThan as dU, compareVersions as dV, scrollToElement as dW, executeUlvCommandHandler as dX, getUniqueId as dY, getDateService as dZ, getAllItemsPerChildren as d_, ReportListModel as da, ReportFormModel as db, ReportCalendarModel as dc, ReportTreeModel as dd, ReportViewColumn as de, DefaultGridSetting as df, GridSetting as dg, ColSetting as dh, SortSetting as di, ReportField as dj, DateRanges as dk, SortDirection as dl, SelectionMode as dm, UlvHeightSizeType as dn, FilesValidationHelper as dp, BarsaApi as dq, ReportViewBaseComponent as dr, FormPropsBaseComponent as ds, LinearListHelper as dt, PageWithFormHandlerBaseComponent as du, FormPageBaseComponent as dv, FormPageComponent as dw, BaseColumnPropsComponent as dx, TilePropsComponent as dy, FormFieldReportPageComponent as dz, DynamicItemComponent as e, GetViewableExtensions as e$, isFirefox as e0, getImagePath as e1, checkPermission as e2, fixUnclosedParentheses as e3, isFunction as e4, DeviceWidth as e5, getHeaderValue as e6, elementInViewport2 as e7, PreventDefaulEvent as e8, stopPropagation as e9, createFormPanelMetaConditions as eA, getNewMoGridEditor as eB, createGridEditorFormPanel as eC, getLayoutControl as eD, getControlList as eE, shallowEqual as eF, toNumber as eG, InputNumber as eH, AffixRespondEvents as eI, isTargetWindow as eJ, getTargetRect as eK, getFieldValue as eL, availablePrefixes as eM, requestAnimationFramePolyfill as eN, ExecuteDynamicCommand as eO, ExecuteWorkflowChoiceDef as eP, getRequestAnimationFrame as eQ, cancelRequestAnimationFrame as eR, easeInOutCubic as eS, WordMimeType as eT, ImageMimeType as eU, PdfMimeType as eV, AllFilesMimeType as eW, VideoMimeType as eX, AudioMimeType as eY, MimeTypes as eZ, GetContentType as e_, getParentHeight as ea, getComponentDefined as eb, isSafari as ec, isFF as ed, getDeviceIsPhone as ee, getDeviceIsDesktop as ef, getDeviceIsTablet as eg, getDeviceIsMobile as eh, getControlSizeMode as ei, formatBytes as ej, getValidExtension as ek, getIcon as el, isImage as em, GetAllColumnsSorted as en, GetVisibleValue as eo, GroupBy as ep, FindGroup as eq, FillAllLayoutControls as er, FindToolbarItem as es, FindLayoutSettingFromLayout94 as et, GetAllHorizontalFromLayout94 as eu, getGridSettings as ev, getResetGridSettings as ew, GetDefaultMoObjectInfo as ex, getLayout94ObjectInfo as ey, getFormSettings as ez, formRoutes as f, ChangeLayoutInfoCustomUi as f0, mobile_regex as f1, number_only as f2, forbiddenValidator as f3, GetImgTags as f4, ImagetoPrint as f5, PrintImage as f6, SaveImageToFile as f7, validateAllFormFields as f8, getFocusableTagNames as f9, addCssVariableToRoot as fa, flattenTree as fb, IsDarkMode as fc, nullOrUndefinedString as fd, fromEntries as fe, bodyClick as ff, removeDynamicStyle as fg, addDynamicVariableTo as fh, AddDynamicFormStyles as fi, RemoveDynamicFormStyles as fj, ContainerComponent as fk, IntersectionStatus as fl, fromIntersectionObserver as fm, CustomRouteReuseStrategy as fn, AuthGuard as fo, RedirectHomeGuard as fp, RootPageComponent as fq, ResizableComponent as fr, ResizableDirective as fs, ResizableModule as ft, PushBannerComponent as fu, BarsaNovinRayCoreModule as fv, 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 };
18853
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-cvfUNjby.mjs.map