barsa-novin-ray-core 2.3.125 → 2.3.129

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.
@@ -4306,6 +4306,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
4306
4306
  }]
4307
4307
  }] });
4308
4308
 
4309
+ class ScopedCssPipe {
4310
+ transform(value, scopeId) {
4311
+ if (!value) {
4312
+ return '';
4313
+ }
4314
+ const parser = new DOMParser();
4315
+ // اضافه کردن یک wrapper موقت برای جلوگیری از جابجایی تگ‌ها به head توسط مرورگر
4316
+ const doc = parser.parseFromString(`<div>${value}</div>`, 'text/html');
4317
+ const container = doc.body.firstChild;
4318
+ const styles = container.querySelectorAll('style');
4319
+ styles.forEach((style) => {
4320
+ let css = style.textContent || '';
4321
+ // بهبود ریجکس برای هندل کردن دقیق‌تر سلکتورها
4322
+ css = css.replace(/([^\r\n,{}]+)(?=\s*{)/g, (match) => {
4323
+ const selector = match.trim();
4324
+ if (!selector || selector.startsWith('@')) {
4325
+ return selector;
4326
+ }
4327
+ // جلوگیری از تکرار در صورتی که قبلاً Scope اضافه شده باشد
4328
+ if (selector.startsWith(scopeId)) {
4329
+ return selector;
4330
+ }
4331
+ return `${scopeId} ${selector}`;
4332
+ });
4333
+ style.textContent = css;
4334
+ });
4335
+ // حالا کل محتوای داخل wrapper را برگردانید
4336
+ return container.innerHTML;
4337
+ }
4338
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ScopedCssPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4339
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: ScopedCssPipe, isStandalone: false, name: "scopedCss" }); }
4340
+ }
4341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ScopedCssPipe, decorators: [{
4342
+ type: Pipe,
4343
+ args: [{
4344
+ name: 'scopedCss',
4345
+ standalone: false
4346
+ }]
4347
+ }] });
4348
+
4309
4349
  class ApiService {
4310
4350
  constructor() {
4311
4351
  this.portalLoginUrl = `/api/auth/portal/login`;
@@ -5373,6 +5413,7 @@ function searchCommandsInApp(app, keyword) {
5373
5413
  appTitle,
5374
5414
  source: 'Command',
5375
5415
  id: command.Name || command.Key,
5416
+ canPin: true,
5376
5417
  caption: command.Caption,
5377
5418
  path: `${group.Caption || group.Name}`,
5378
5419
  original: command,
@@ -5386,6 +5427,7 @@ function searchCommandsInApp(app, keyword) {
5386
5427
  appId: app.Id,
5387
5428
  appTitle,
5388
5429
  source: 'Command',
5430
+ canPin: true,
5389
5431
  id: menu.CommandId,
5390
5432
  caption: menu.Caption,
5391
5433
  path: `${group.Caption || group.Name} > ${command.Caption}`,
@@ -5420,8 +5462,12 @@ function searchNavigatorInApp(app, keyword) {
5420
5462
  const currentPath = path ? `${path} > ${node.Caption || node.Name}` : node.Caption || node.Name || '';
5421
5463
  if (node.Caption && node.Caption.toLowerCase().includes(keyword.toLowerCase())) {
5422
5464
  let url = '';
5465
+ let canPin = false;
5466
+ let source = 'Navigator';
5423
5467
  if (!node.IsRoot && node.ReportId && node.ReportId !== '0') {
5424
5468
  url = `#/application/report/${node.FolderId}__${node.Caption}__${node.ReportId}`;
5469
+ canPin = true;
5470
+ source = 'Report';
5425
5471
  }
5426
5472
  else if (node.IsRoot) {
5427
5473
  url = `#/application/${app.Id}`;
@@ -5429,14 +5475,15 @@ function searchNavigatorInApp(app, keyword) {
5429
5475
  results.push({
5430
5476
  appId: app.Id,
5431
5477
  appTitle: root.Caption,
5432
- source: 'Navigator',
5478
+ source,
5433
5479
  id: node.Id,
5434
5480
  url,
5435
5481
  caption: node.Caption,
5436
5482
  path: currentPath,
5437
5483
  original: node,
5438
5484
  hidden: depth === 1,
5439
- depth
5485
+ depth,
5486
+ canPin
5440
5487
  });
5441
5488
  }
5442
5489
  node.Items?.forEach((child) => walk(child, currentPath, depth + 1));
@@ -5489,9 +5536,10 @@ class ApplicationCtrlrService {
5489
5536
  this._selectedSystemId$ = new BehaviorSubject('');
5490
5537
  this._selectedSystemNavUi$ = new BehaviorSubject(null);
5491
5538
  this._selectedCommandId$ = new BehaviorSubject({});
5492
- this._isCommandGroupsSelected$ = new BehaviorSubject({});
5539
+ this._selectedCommandGroups$ = new BehaviorSubject({});
5493
5540
  this._searchNavigators$ = new BehaviorSubject({});
5494
5541
  this._selectedSystemTitle$ = new Subject();
5542
+ this._systemLocationHref$ = new BehaviorSubject({});
5495
5543
  this._isMobile = getDeviceIsMobile();
5496
5544
  this._document = inject(DOCUMENT);
5497
5545
  this._router = inject(Router);
@@ -5515,8 +5563,8 @@ class ApplicationCtrlrService {
5515
5563
  get selectedSystemNavUi$() {
5516
5564
  return this._selectedSystemNavUi$.asObservable();
5517
5565
  }
5518
- get isCommandGroupsSelected$() {
5519
- return combineLatest([this._isCommandGroupsSelected$, this._selectedSystemId$]).pipe(map$1(([isSelectedGroups, systemId]) => isSelectedGroups[systemId]));
5566
+ get selectedCommandGroups$() {
5567
+ return combineLatest([this._selectedCommandGroups$, this._selectedSystemId$]).pipe(map$1(([selectedCommandGroups, systemId]) => selectedCommandGroups[systemId]));
5520
5568
  }
5521
5569
  get selectedSystemId$() {
5522
5570
  return this._selectedSystemId$
@@ -5578,12 +5626,21 @@ class ApplicationCtrlrService {
5578
5626
  .subscribe();
5579
5627
  }
5580
5628
  systemChange(systemId) {
5629
+ const oldSystemId = this._selectedSystemId$.getValue();
5581
5630
  const systemData = BarsaApi.Ul.ApplicationCtrlr.SystemDict[systemId]?.SystemData;
5582
- this.selectedSystem(systemId);
5631
+ this.selectedSystem(systemId, false);
5583
5632
  if (!systemData) {
5584
5633
  // console.error(`system data for systemid ${systemId} not found.`);
5585
5634
  return;
5586
5635
  }
5636
+ if (oldSystemId) {
5637
+ const x = this._systemLocationHref$.getValue();
5638
+ x[oldSystemId] = window.location.href;
5639
+ this._systemLocationHref$.next(x);
5640
+ if (systemId && x[systemId] && Object.keys(x).length > 1) {
5641
+ window.location.href = x[systemId];
5642
+ }
5643
+ }
5587
5644
  if (this.deviceSize !== 's' && this.deviceSize !== 'm' && this.deviceSize !== 'l') {
5588
5645
  this.sidebarToggled(true);
5589
5646
  }
@@ -5593,17 +5650,20 @@ class ApplicationCtrlrService {
5593
5650
  selectAppTileGroup(id) {
5594
5651
  this._selectedAppTileGroup$.next(id);
5595
5652
  }
5596
- setCommandGroupsSelected(isSelected) {
5597
- const groupsSelected = this._isCommandGroupsSelected$.getValue();
5653
+ setCommandGroupsSelected(commandGroupCaption) {
5654
+ const groupsSelected = this._selectedCommandGroups$.getValue();
5598
5655
  const selectedSystemId = this._selectedSystemId$.getValue();
5599
5656
  const systemId = selectedSystemId;
5600
- groupsSelected[systemId] = isSelected;
5601
- this._isCommandGroupsSelected$.next(groupsSelected);
5657
+ groupsSelected[systemId] = commandGroupCaption;
5658
+ this._selectedCommandGroups$.next(groupsSelected);
5602
5659
  }
5603
- selectedSystem(systemId) {
5660
+ selectedSystem(systemId, openNavGroupAndItem = true) {
5604
5661
  this._selectedSystemId$.next(systemId);
5605
5662
  const selectedNavGroupId = this._selectedNavGroupId$.getValue()[systemId];
5606
5663
  const selectedNavGroupItemId = this._selectedNavGroupItemId$.getValue()[systemId];
5664
+ if (!openNavGroupAndItem) {
5665
+ return;
5666
+ }
5607
5667
  this.selectNavGroup(selectedNavGroupId, false);
5608
5668
  this.selectNavGroupItem(selectedNavGroupItemId);
5609
5669
  }
@@ -5743,6 +5803,10 @@ class ApplicationCtrlrService {
5743
5803
  // ساخت یک CommandGroup به نام System
5744
5804
  _mergeToSystemGroup(commandGroups) {
5745
5805
  const allCommands = [];
5806
+ for (const group of commandGroups) {
5807
+ !group.Caption && (group.Caption = 'Global');
5808
+ }
5809
+ return commandGroups.filter((c) => c.Commands.length);
5746
5810
  for (const group of commandGroups) {
5747
5811
  allCommands.push(...this.flattenLeafCommands(group.Commands));
5748
5812
  }
@@ -5882,7 +5946,7 @@ function reportRoutes(authGuard = false) {
5882
5946
  return {
5883
5947
  path: 'report/:id',
5884
5948
  canActivate: authGuard ? [AuthGuard] : [],
5885
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-Dxc9_uZn.mjs').then((m) => m.BarsaReportPageModule),
5949
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-uCeYrvp2.mjs').then((m) => m.BarsaReportPageModule),
5886
5950
  resolve: {
5887
5951
  breadcrumb: ReportBreadcrumbResolver
5888
5952
  }
@@ -11195,9 +11259,8 @@ class ReportViewBaseComponent extends BaseComponent {
11195
11259
  .subscribe(() => this.onResize());
11196
11260
  }
11197
11261
  ngOnDestroy() {
11198
- if (this._ro) {
11199
- this._ro.disconnect();
11200
- }
11262
+ super.ngOnDestroy();
11263
+ this._ro?.disconnect();
11201
11264
  }
11202
11265
  ngOnChanges(changes) {
11203
11266
  super.ngOnChanges(changes);
@@ -12665,6 +12728,7 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
12665
12728
  this._position = null;
12666
12729
  this.sectionClass = true;
12667
12730
  this.ismodal = false;
12731
+ this.isinsideview = false;
12668
12732
  }
12669
12733
  ngOnInit() {
12670
12734
  this.settings = BarsaApi.Common.Util.TryGetValue(this._activatedRoute, 'data._value.pageData.Component.Settings', null);
@@ -12687,15 +12751,19 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
12687
12751
  if (this._activatedRoute.snapshot.data?.pageData?.Component?.Settings?.IsRelativePage && !isModal) {
12688
12752
  this._position = 'initial';
12689
12753
  }
12754
+ const insdeideView = this._activatedRoute.snapshot.params.id;
12755
+ if (insdeideView && insdeideView.split('__').some((c) => c.startsWith('ulv'))) {
12756
+ this.isinsideview = true;
12757
+ }
12690
12758
  }
12691
12759
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: MasterDetailsPageComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12692
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: MasterDetailsPageComponent, isStandalone: false, selector: "bnrc-master-details-page", host: { properties: { "style.position": "this._position", "class.section": "this.sectionClass", "class.modal": "this.ismodal" } }, providers: [RoutingService, ContainerService], usesInheritance: true, ngImport: i0, template: `
12760
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: MasterDetailsPageComponent, isStandalone: false, selector: "bnrc-master-details-page", host: { properties: { "style.position": "this._position", "class.section": "this.sectionClass", "class.modal": "this.ismodal", "class.insideview": "this.isinsideview" } }, providers: [RoutingService, ContainerService], usesInheritance: true, ngImport: i0, template: `
12693
12761
  <div class="tw-flex tw-h-full tw-w-full tw-flex-col md:tw-flex-row">
12694
12762
  <!-- لیست -->
12695
12763
  <div class="tw-w-full md:tw-w-96 master">
12696
12764
  <ng-container #containerRef></ng-container>
12697
12765
  </div>
12698
- <bnrc-splitter ></bnrc-splitter>
12766
+ <bnrc-splitter></bnrc-splitter>
12699
12767
  <!-- جزئیات -->
12700
12768
  <div class="fd-dynamic-page__content tw-w-full md:tw-flex-1 !tw-overflow-hidden details tw-min-w-0 tw-p-0">
12701
12769
  <router-outlet name="details"></router-outlet>
@@ -12713,7 +12781,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12713
12781
  <div class="tw-w-full md:tw-w-96 master">
12714
12782
  <ng-container #containerRef></ng-container>
12715
12783
  </div>
12716
- <bnrc-splitter ></bnrc-splitter>
12784
+ <bnrc-splitter></bnrc-splitter>
12717
12785
  <!-- جزئیات -->
12718
12786
  <div class="fd-dynamic-page__content tw-w-full md:tw-flex-1 !tw-overflow-hidden details tw-min-w-0 tw-p-0">
12719
12787
  <router-outlet name="details"></router-outlet>
@@ -12731,6 +12799,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12731
12799
  }], ismodal: [{
12732
12800
  type: HostBinding,
12733
12801
  args: ['class.modal']
12802
+ }], isinsideview: [{
12803
+ type: HostBinding,
12804
+ args: ['class.insideview']
12734
12805
  }] } });
12735
12806
 
12736
12807
  class PortalPageComponent extends PageWithFormHandlerBaseComponent {
@@ -12763,6 +12834,16 @@ class FillEmptySpaceDirective extends BaseDirective {
12763
12834
  if (this.disable) {
12764
12835
  return;
12765
12836
  }
12837
+ this._handleResize();
12838
+ }
12839
+ ngOnDestroy() {
12840
+ super.ngOnDestroy();
12841
+ this._ro?.disconnect();
12842
+ }
12843
+ Refresh() {
12844
+ this._setHeightOfFormContent();
12845
+ }
12846
+ _setHeight() {
12766
12847
  setTimeout(() => {
12767
12848
  this._setHeightOfFormContent();
12768
12849
  if (this.topBound === '0px') {
@@ -12770,15 +12851,30 @@ class FillEmptySpaceDirective extends BaseDirective {
12770
12851
  this._setHeightOfFormContent();
12771
12852
  }, 1000);
12772
12853
  }
12773
- });
12854
+ }, 100);
12774
12855
  }
12775
- Refresh() {
12776
- this._setHeightOfFormContent();
12856
+ _handleResize() {
12857
+ if (typeof ResizeObserver === 'undefined') {
12858
+ return;
12859
+ } // چک کردن پشتیبانی مرورگر به جای try-catch
12860
+ this._ro = new ResizeObserver((entries) => {
12861
+ const entry = entries[0];
12862
+ // چک می‌کنیم که المنت مخفی (display: none) نباشد
12863
+ if (entry && entry.contentRect.height > 0) {
12864
+ requestAnimationFrame(() => {
12865
+ this._setHeight();
12866
+ });
12867
+ }
12868
+ });
12869
+ if (this._el?.nativeElement) {
12870
+ this._ro.observe(this._el.nativeElement);
12871
+ }
12777
12872
  }
12778
12873
  _setHeightOfFormContent() {
12779
12874
  const dom = this._el.nativeElement;
12780
12875
  const bound = dom.getBoundingClientRect();
12781
12876
  this.topBound = `${bound.top}px`;
12877
+ let decrement = this.decrement;
12782
12878
  if (this.oldTopBound && this.oldTopBound === this.topBound) {
12783
12879
  return;
12784
12880
  }
@@ -12799,18 +12895,18 @@ class FillEmptySpaceDirective extends BaseDirective {
12799
12895
  if (this.containerDom) {
12800
12896
  this._height = `${this.containerDom.getBoundingClientRect().height}px`;
12801
12897
  }
12802
- if (this.decrement) {
12803
- this.decrement = ` - ${this.decrement}`;
12898
+ if (decrement) {
12899
+ decrement = ` - ${decrement}`;
12804
12900
  }
12805
12901
  else {
12806
- this.decrement = '';
12902
+ decrement = '';
12807
12903
  }
12808
12904
  if (this.dontUseTopBound) {
12809
12905
  this.topBound = '0px';
12810
12906
  }
12811
12907
  this.oldTopBound = this.topBound;
12812
12908
  if (bound) {
12813
- this._renderer2.setStyle(dom, this.setMinHeight ? 'min-height' : 'height', `calc(${this._height} - ${this.topBound}${this.decrement})`);
12909
+ this._renderer2.setStyle(dom, this.setMinHeight ? 'min-height' : 'height', `calc(${this._height} - ${this.topBound}${decrement})`);
12814
12910
  }
12815
12911
  this.heightChanged.emit();
12816
12912
  }
@@ -15197,7 +15293,7 @@ class RenderUlvViewerDirective extends BaseDirective {
15197
15293
  const { moduleName, modulePath, componentName, selector } = getComponentDefined(context, defaultSetting);
15198
15294
  this._portalService
15199
15295
  .getComponent(moduleName, modulePath, componentName, selector, this._injector)
15200
- .pipe(takeUntil(this._onDestroy$), delay(0), tap((component) => {
15296
+ .pipe(takeUntil(this._onDestroy$), tap((component) => {
15201
15297
  component.instance.id = getUniqueId(4);
15202
15298
  component.instance.context = context;
15203
15299
  component.instance.isReportPage = this.isReportPage;
@@ -17563,20 +17659,21 @@ class ReportNavigatorComponent extends BaseComponent {
17563
17659
  constructor() {
17564
17660
  super();
17565
17661
  this.minheight = '100svh';
17662
+ this.isMobile = getDeviceIsDesktop();
17566
17663
  this._activatedRoute = inject(ActivatedRoute);
17567
17664
  this._portalService = inject(PortalService);
17568
17665
  this._applicationCtrlService = inject(ApplicationCtrlrService);
17569
17666
  this._injector = inject(Injector);
17570
17667
  this._cdr = inject(ChangeDetectorRef);
17571
- this._bbb = inject(BbbTranslatePipe);
17572
17668
  this._loadingSource = new BehaviorSubject(false);
17669
+ this._routingService = inject(RoutingService, { optional: true, skipSelf: true });
17573
17670
  this.loading$ = this._loadingSource.asObservable().pipe(takeUntil(this._onDestroy$), debounceTime(200));
17574
17671
  }
17575
17672
  ngOnInit() {
17576
17673
  super.ngOnInit();
17577
17674
  this._activatedRoute.params
17578
- .pipe(takeUntil(this._onDestroy$), tap(() => this._setLoading(true)), map((params) => this._extractIds(params)), tap((c) => (c.isReportPage ? (this.minheight = 'auto') : '100vh')), tap((c) => (c.ReportId = !c.ReportId ? c.ReportId2 : c.ReportId)), tap((_c) => this.containerRef.clear()), tap((navItem) => this._applicationCtrlService.selectNavGroupItem(navItem.Id)), tap((navItem) => this._applicationCtrlService.selectedReportId(navItem.ReportId)), tap((navItem) => this._applicationCtrlService.selectReportCaption(navItem.ReportId2)), switchMap$1((navItem) => this._portalService
17579
- .renderUlvMainUi(navItem, this.containerRef, this._injector, navItem.isReportPage ? false : true)
17675
+ .pipe(takeUntil(this._onDestroy$), tap(() => this._setLoading(true)), map((params) => this._extractIds(params)), tap((c) => (c.isReportPage ? (this.minheight = 'auto') : '100vh')), tap((c) => (c.ReportId = !c.ReportId ? c.ReportId2 : c.ReportId)), tap((_c) => this.containerRef.clear()), tap((navItem) => this._applicationCtrlService.selectNavGroupItem(navItem.Id)), tap((navItem) => this._applicationCtrlService.selectedReportId(navItem.ReportId)), tap((navItem) => this._applicationCtrlService.selectReportCaption(navItem.ReportId2)), tap((navItem) => (this._navItemParams = navItem)), switchMap$1((navItem) => this._portalService
17676
+ .renderUlvMainUi(navItem, this.containerRef, this._injector, navItem.isReportPage)
17580
17677
  .pipe(catchError((_err) =>
17581
17678
  // this._location.back();
17582
17679
  // return throwError(() => new Error(err));
@@ -17592,25 +17689,61 @@ class ReportNavigatorComponent extends BaseComponent {
17592
17689
  // this._applicationCtrlService.selectNavGroupItem('');
17593
17690
  this._setActiveReport(null);
17594
17691
  }
17692
+ _setActiveReport(ulv) {
17693
+ this._ulvMainCtrlr = ulv;
17694
+ const x = BarsaApi.Ul.UlvMainCtrlr.EventEnum.SelectionChange;
17695
+ if (ulv && typeof ulv === 'object') {
17696
+ ulv.on({
17697
+ scope: this,
17698
+ [x]: this._onSelectionAdapter_SelectionChange
17699
+ });
17700
+ }
17701
+ this._ulvMainCtrlr = ulv;
17702
+ BarsaApi.Bw.App.GetActiveReport = () => {
17703
+ if (ulv === null) {
17704
+ return ulv;
17705
+ }
17706
+ return BarsaApi.Bw._wrap(ulv);
17707
+ };
17708
+ }
17595
17709
  _extractIds(params) {
17710
+ const lastText = params.id.split('__').length > 3 ? params.id.split('__')[3] : '';
17711
+ const navIdOrFieldDefId = params.id.split('__')[0];
17712
+ const reportId2OrLevelReportId = params.id.split('__').length > 1 ? params.id.split('__')[1] : '';
17713
+ const reportIdOrMoId = params.id.split('__').length > 2 ? params.id.split('__')[2] : '';
17596
17714
  return {
17597
- Id: params.id.split('__')[0],
17598
- ReportId: params.id.split('__').length > 2 ? params.id.split('__')[2] : '',
17599
- ReportId2: params.id.split('__').length > 1 ? params.id.split('__')[1] : '',
17600
- isReportPage: params.id.split('__').length > 3 ? params.id.split('__')[3] : null
17715
+ Id: navIdOrFieldDefId,
17716
+ ReportId: reportIdOrMoId,
17717
+ ReportId2: reportId2OrLevelReportId,
17718
+ isReportPage: lastText === '' || this._masterDetailsPage(lastText),
17719
+ OtherData: !lastText.startsWith('in')
17720
+ ? undefined
17721
+ : {
17722
+ FieldId: navIdOrFieldDefId,
17723
+ IsInsideViewResult: true,
17724
+ LevelReportId: reportId2OrLevelReportId,
17725
+ Mo: { Id: reportIdOrMoId, $Caption: '', $TypeDefId: lastText.replace('in', '') }
17726
+ }
17601
17727
  };
17602
17728
  }
17729
+ _masterDetailsPage(lastText) {
17730
+ return (lastText.startsWith('in') || lastText.startsWith('ulv')) && this.isMobile;
17731
+ }
17603
17732
  _setLoading(val) {
17604
17733
  this._loadingSource.next(val);
17605
17734
  this._cdr.detectChanges();
17606
17735
  }
17607
- _setActiveReport(ulv) {
17608
- BarsaApi.Bw.App.GetActiveReport = () => {
17609
- if (ulv === null) {
17610
- return ulv;
17736
+ _onSelectionAdapter_SelectionChange() {
17737
+ if (this._routingService?.masterDetails && this._ulvMainCtrlr) {
17738
+ const fieldId = this._navItemParams.ReportId2;
17739
+ const mo = this._ulvMainCtrlr.GetSelectedMetaObject();
17740
+ if (!mo) {
17741
+ return;
17611
17742
  }
17612
- return BarsaApi.Bw._wrap(ulv);
17613
- };
17743
+ const moId = `${mo.Id}`;
17744
+ const levelReportId = mo.$LevelReportId || '';
17745
+ this._routingService.navigate(['details', `${fieldId}__${levelReportId}__${moId}__in${mo.$TypeDefId}`], true, null, null);
17746
+ }
17614
17747
  }
17615
17748
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportNavigatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
17616
17749
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: ReportNavigatorComponent, isStandalone: false, selector: "bnrc-report-navigator", host: { properties: { "style.min-height": "this.minheight" } }, viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["containerRef"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: `<ng-container #containerRef></ng-container>`, isInline: true, styles: [":host{display:block;width:100%;background:var(--sapBaseColor)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
@@ -18440,7 +18573,8 @@ const pipes = [
18440
18573
  DynamicDarkColorPipe,
18441
18574
  ChunkArrayPipe,
18442
18575
  MapToChatMessagePipe,
18443
- PicturesByGroupIdPipe
18576
+ PicturesByGroupIdPipe,
18577
+ ScopedCssPipe
18444
18578
  ];
18445
18579
  const functionL1 = async function () {
18446
18580
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -18625,7 +18759,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18625
18759
  DynamicDarkColorPipe,
18626
18760
  ChunkArrayPipe,
18627
18761
  MapToChatMessagePipe,
18628
- PicturesByGroupIdPipe, PlaceHolderDirective,
18762
+ PicturesByGroupIdPipe,
18763
+ ScopedCssPipe, PlaceHolderDirective,
18629
18764
  NumbersOnlyInputDirective,
18630
18765
  RenderUlvViewerDirective,
18631
18766
  RenderUlvPaginDirective,
@@ -18768,7 +18903,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18768
18903
  DynamicDarkColorPipe,
18769
18904
  ChunkArrayPipe,
18770
18905
  MapToChatMessagePipe,
18771
- PicturesByGroupIdPipe, PlaceHolderDirective,
18906
+ PicturesByGroupIdPipe,
18907
+ ScopedCssPipe, PlaceHolderDirective,
18772
18908
  NumbersOnlyInputDirective,
18773
18909
  RenderUlvViewerDirective,
18774
18910
  RenderUlvPaginDirective,
@@ -18849,5 +18985,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18849
18985
  * Generated bundle index. Do not edit.
18850
18986
  */
18851
18987
 
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
18988
+ export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, ColumnCustomComponentPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, RemoveNewlinePipe as aA, MoValuePipe as aB, FilterPipe as aC, FilterTabPipe as aD, MoReportValueConcatPipe as aE, FilterStringPipe as aF, SortPipe as aG, BbbTranslatePipe as aH, BarsaIconDictPipe as aI, FileInfoCountPipe as aJ, ControlUiPipe as aK, VisibleValuePipe as aL, FilterToolbarControlPipe as aM, MultipleGroupByPipe as aN, PictureFieldSourcePipe as aO, FioriIconPipe as aP, CanUploadFilePipe as aQ, ListCountPipe as aR, TotalSummaryPipe as aS, MergeFieldsToColumnsPipe as aT, FindColumnByDbNamePipe as aU, FilterColumnsByDetailsPipe as aV, MoInfoUlvMoListPipe as aW, ReversePipe as aX, ColumnCustomUiPipe as aY, SanitizeTextPipe as aZ, MoInfoUlvPagingPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoReportValuePipe as as, NumeralPipe as at, GroupByPipe as au, ContextMenuPipe as av, HeaderFacetValuePipe as aw, SeperatorFixPipe as ax, ConvertToStylePipe as ay, TlbButtonsPipe as az, PortalPageSidebarComponent as b, CalendarSettingsService as b$, ColumnValuePipe as b0, ColumnIconPipe as b1, RowNumberPipe as b2, ComboRowImagePipe as b3, IsExpandedNodePipe as b4, ThImageOrIconePipe as b5, FindPreviewColumnPipe as b6, ReplacePipe as b7, FilterWorkflowInMobilePipe as b8, HideColumnsInmobilePipe as b9, UiService as bA, UlvMainService as bB, UploadService as bC, NetworkStatusService as bD, AudioRecordingService as bE, VideoRecordingService as bF, LocalStorageService as bG, IndexedDbService as bH, BarsaStorageService as bI, PromptUpdateService as bJ, NotificationService as bK, ServiceWorkerNotificationService as bL, ColumnService as bM, ServiceWorkerCommuncationService as bN, SaveScrollPositionService as bO, RoutingService as bP, GroupByService as bQ, LayoutMainContentService as bR, TabpageService as bS, InMemoryStorageService as bT, ShellbarHeightService as bU, ApplicationCtrlrService as bV, PushCheckService as bW, IdbService as bX, PushNotificationService as bY, CardViewService as bZ, BaseSettingsService as b_, StringToNumberPipe as ba, ColumnValueOfParametersPipe as bb, HideAcceptCancelButtonsPipe as bc, FilterInlineActionListPipe as bd, IsImagePipe as be, ToolbarSettingsPipe as bf, CardMediaSizePipe as bg, LabelStarTrimPipe as bh, SplitPipe as bi, DynamicDarkColorPipe as bj, ChunkArrayPipe as bk, MapToChatMessagePipe as bl, PicturesByGroupIdPipe as bm, ScopedCssPipe as bn, ApiService as bo, BreadcrumbService as bp, CustomInjector as bq, DialogParams as br, BarsaDialogService as bs, FormPanelService as bt, FormService as bu, ContainerService as bv, HorizontalLayoutService as bw, LayoutService as bx, LogService as by, PortalService as bz, BaseDynamicComponent as c, SingleRelationControlInfoModel as c$, PortalDynamicPageResolver as c0, PortalFormPageResolver as c1, PortalPageResolver as c2, PortalReportPageResolver as c3, TileGroupBreadcrumResolver as c4, LoginSettingsResolver as c5, ReportBreadcrumbResolver as c6, DateService as c7, DateHijriService as c8, DateMiladiService as c9, LayoutItemBaseComponent as cA, LayoutPanelBaseComponent as cB, PageBaseComponent as cC, NumberBaseComponent as cD, GeneralControlInfoModel as cE, StringControlInfoModel as cF, RichStringControlInfoModel as cG, NumberControlInfoModel as cH, FilePictureInfoModel as cI, FileControlInfoModel as cJ, CommandControlInfoModel as cK, IconControlInfoModel as cL, PictureFileControlInfoModel as cM, GaugeControlInfoModel as cN, RelationListControlInfoModel as cO, HistoryControlInfoModel as cP, RabetehAkseTakiListiControlInfoModel as cQ, RelatedReportControlInfoModel as cR, CodeEditorControlInfoModel as cS, EnumControlInfoModel as cT, RowDataOption as cU, DateTimeControlInfoModel as cV, BoolControlInfoModel as cW, CalculateControlInfoModel as cX, SubformControlInfoModel as cY, LinearListControlInfoModel as cZ, ListRelationModel as c_, DateShamsiService as ca, FormNewComponent as cb, ReportContainerComponent as cc, FormComponent as cd, FieldUiComponent as ce, BarsaSapUiFormPageModule as cf, ReportNavigatorComponent as cg, BaseController as ch, ViewBase as ci, ModalRootComponent as cj, ButtonLoadingComponent as ck, UnlimitSessionComponent as cl, SplitterComponent as cm, APP_VERSION as cn, DIALOG_SERVICE as co, FORM_DIALOG_COMPONENT as cp, NOTIFICATAION_POPUP_SERVER as cq, TOAST_SERVICE as cr, NOTIFICATION_WEBWORKER_FACTORY as cs, FieldBaseComponent as ct, FormBaseComponent as cu, FormToolbarBaseComponent as cv, SystemBaseComponent as cw, ReportBaseComponent as cx, ReportItemBaseComponent as cy, ApplicationBaseComponent as cz, DynamicFormComponent as d, getAllItemsPerChildren as d$, MetaobjectDataModel as d0, MoForReportModelBase as d1, MoForReportModel as d2, ReportBaseInfo as d3, ReportExtraInfo as d4, MetaobjectRelationModel as d5, FieldInfoTypeEnum as d6, BaseReportModel as d7, DefaultCommandsAccessValue as d8, CustomCommand as d9, FormFieldReportPageComponent as dA, BaseUlvSettingComponent as dB, TableHeaderWidthMode as dC, setTableThWidth as dD, calculateColumnContent as dE, calculateColumnWidth as dF, setColumnWidthByMaxMoContentWidth as dG, calculateMoDataListContentWidthByColumnName as dH, calculateFreeColumnSize as dI, calculateColumnWidthFitToContainer as dJ, calcContextMenuWidth as dK, RotateImage as dL, isInLocalMode as dM, getLabelWidth as dN, getColumnValueOfMoDataList as dO, throwIfAlreadyLoaded as dP, measureText2 as dQ, measureText as dR, measureTextBy as dS, genrateInlineMoId as dT, enumValueToStringSize as dU, isVersionBiggerThan as dV, compareVersions as dW, scrollToElement as dX, executeUlvCommandHandler as dY, getUniqueId as dZ, getDateService as d_, ReportModel as da, ReportListModel as db, ReportFormModel as dc, ReportCalendarModel as dd, ReportTreeModel as de, ReportViewColumn as df, DefaultGridSetting as dg, GridSetting as dh, ColSetting as di, SortSetting as dj, ReportField as dk, DateRanges as dl, SortDirection as dm, SelectionMode as dn, UlvHeightSizeType as dp, FilesValidationHelper as dq, BarsaApi as dr, ReportViewBaseComponent as ds, FormPropsBaseComponent as dt, LinearListHelper as du, PageWithFormHandlerBaseComponent as dv, FormPageBaseComponent as dw, FormPageComponent as dx, BaseColumnPropsComponent as dy, TilePropsComponent as dz, DynamicItemComponent as e, GetContentType as e$, setOneDepthLevel as e0, isFirefox as e1, getImagePath as e2, checkPermission as e3, fixUnclosedParentheses as e4, isFunction as e5, DeviceWidth as e6, getHeaderValue as e7, elementInViewport2 as e8, PreventDefaulEvent as e9, getFormSettings as eA, createFormPanelMetaConditions as eB, getNewMoGridEditor as eC, createGridEditorFormPanel as eD, getLayoutControl as eE, getControlList as eF, shallowEqual as eG, toNumber as eH, InputNumber as eI, AffixRespondEvents as eJ, isTargetWindow as eK, getTargetRect as eL, getFieldValue as eM, availablePrefixes as eN, requestAnimationFramePolyfill as eO, ExecuteDynamicCommand as eP, ExecuteWorkflowChoiceDef as eQ, getRequestAnimationFrame as eR, cancelRequestAnimationFrame as eS, easeInOutCubic as eT, WordMimeType as eU, ImageMimeType as eV, PdfMimeType as eW, AllFilesMimeType as eX, VideoMimeType as eY, AudioMimeType as eZ, MimeTypes as e_, stopPropagation as ea, getParentHeight as eb, getComponentDefined as ec, isSafari as ed, isFF as ee, getDeviceIsPhone as ef, getDeviceIsDesktop as eg, getDeviceIsTablet as eh, getDeviceIsMobile as ei, getControlSizeMode as ej, formatBytes as ek, getValidExtension as el, getIcon as em, isImage as en, GetAllColumnsSorted as eo, GetVisibleValue as ep, GroupBy as eq, FindGroup as er, FillAllLayoutControls as es, FindToolbarItem as et, FindLayoutSettingFromLayout94 as eu, GetAllHorizontalFromLayout94 as ev, getGridSettings as ew, getResetGridSettings as ex, GetDefaultMoObjectInfo as ey, getLayout94ObjectInfo as ez, formRoutes as f, GetViewableExtensions as f0, ChangeLayoutInfoCustomUi as f1, mobile_regex as f2, number_only as f3, forbiddenValidator as f4, GetImgTags as f5, ImagetoPrint as f6, PrintImage as f7, SaveImageToFile as f8, validateAllFormFields as f9, getFocusableTagNames as fa, addCssVariableToRoot as fb, flattenTree as fc, IsDarkMode as fd, nullOrUndefinedString as fe, fromEntries as ff, bodyClick as fg, removeDynamicStyle as fh, addDynamicVariableTo as fi, AddDynamicFormStyles as fj, RemoveDynamicFormStyles as fk, ContainerComponent as fl, IntersectionStatus as fm, fromIntersectionObserver as fn, CustomRouteReuseStrategy as fo, AuthGuard as fp, RedirectHomeGuard as fq, RootPageComponent as fr, ResizableComponent as fs, ResizableDirective as ft, ResizableModule as fu, PushBannerComponent as fv, BarsaNovinRayCoreModule as fw, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, BaseItemContentPropsComponent as j, CardBaseItemContentPropsComponent as k, BaseFormToolbaritemPropsComponent as l, DynamicFormToolbaritemComponent as m, DynamicLayoutComponent as n, DynamicTileGroupComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
18989
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-DtuYXVoL.mjs.map