barsa-novin-ray-core 2.3.124 → 2.3.128

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`;
@@ -5489,9 +5529,10 @@ class ApplicationCtrlrService {
5489
5529
  this._selectedSystemId$ = new BehaviorSubject('');
5490
5530
  this._selectedSystemNavUi$ = new BehaviorSubject(null);
5491
5531
  this._selectedCommandId$ = new BehaviorSubject({});
5492
- this._isCommandGroupsSelected$ = new BehaviorSubject({});
5532
+ this._selectedCommandGroups$ = new BehaviorSubject({});
5493
5533
  this._searchNavigators$ = new BehaviorSubject({});
5494
5534
  this._selectedSystemTitle$ = new Subject();
5535
+ this._systemLocationHref$ = new BehaviorSubject({});
5495
5536
  this._isMobile = getDeviceIsMobile();
5496
5537
  this._document = inject(DOCUMENT);
5497
5538
  this._router = inject(Router);
@@ -5515,8 +5556,8 @@ class ApplicationCtrlrService {
5515
5556
  get selectedSystemNavUi$() {
5516
5557
  return this._selectedSystemNavUi$.asObservable();
5517
5558
  }
5518
- get isCommandGroupsSelected$() {
5519
- return combineLatest([this._isCommandGroupsSelected$, this._selectedSystemId$]).pipe(map$1(([isSelectedGroups, systemId]) => isSelectedGroups[systemId]));
5559
+ get selectedCommandGroups$() {
5560
+ return combineLatest([this._selectedCommandGroups$, this._selectedSystemId$]).pipe(map$1(([selectedCommandGroups, systemId]) => selectedCommandGroups[systemId]));
5520
5561
  }
5521
5562
  get selectedSystemId$() {
5522
5563
  return this._selectedSystemId$
@@ -5578,12 +5619,21 @@ class ApplicationCtrlrService {
5578
5619
  .subscribe();
5579
5620
  }
5580
5621
  systemChange(systemId) {
5622
+ const oldSystemId = this._selectedSystemId$.getValue();
5581
5623
  const systemData = BarsaApi.Ul.ApplicationCtrlr.SystemDict[systemId]?.SystemData;
5582
- this.selectedSystem(systemId);
5624
+ this.selectedSystem(systemId, false);
5583
5625
  if (!systemData) {
5584
5626
  // console.error(`system data for systemid ${systemId} not found.`);
5585
5627
  return;
5586
5628
  }
5629
+ if (oldSystemId) {
5630
+ const x = this._systemLocationHref$.getValue();
5631
+ x[oldSystemId] = window.location.href;
5632
+ this._systemLocationHref$.next(x);
5633
+ if (systemId && x[systemId] && Object.keys(x).length > 1) {
5634
+ window.location.href = x[systemId];
5635
+ }
5636
+ }
5587
5637
  if (this.deviceSize !== 's' && this.deviceSize !== 'm' && this.deviceSize !== 'l') {
5588
5638
  this.sidebarToggled(true);
5589
5639
  }
@@ -5593,17 +5643,20 @@ class ApplicationCtrlrService {
5593
5643
  selectAppTileGroup(id) {
5594
5644
  this._selectedAppTileGroup$.next(id);
5595
5645
  }
5596
- setCommandGroupsSelected(isSelected) {
5597
- const groupsSelected = this._isCommandGroupsSelected$.getValue();
5646
+ setCommandGroupsSelected(commandGroupCaption) {
5647
+ const groupsSelected = this._selectedCommandGroups$.getValue();
5598
5648
  const selectedSystemId = this._selectedSystemId$.getValue();
5599
5649
  const systemId = selectedSystemId;
5600
- groupsSelected[systemId] = isSelected;
5601
- this._isCommandGroupsSelected$.next(groupsSelected);
5650
+ groupsSelected[systemId] = commandGroupCaption;
5651
+ this._selectedCommandGroups$.next(groupsSelected);
5602
5652
  }
5603
- selectedSystem(systemId) {
5653
+ selectedSystem(systemId, openNavGroupAndItem = true) {
5604
5654
  this._selectedSystemId$.next(systemId);
5605
5655
  const selectedNavGroupId = this._selectedNavGroupId$.getValue()[systemId];
5606
5656
  const selectedNavGroupItemId = this._selectedNavGroupItemId$.getValue()[systemId];
5657
+ if (!openNavGroupAndItem) {
5658
+ return;
5659
+ }
5607
5660
  this.selectNavGroup(selectedNavGroupId, false);
5608
5661
  this.selectNavGroupItem(selectedNavGroupItemId);
5609
5662
  }
@@ -5743,6 +5796,10 @@ class ApplicationCtrlrService {
5743
5796
  // ساخت یک CommandGroup به نام System
5744
5797
  _mergeToSystemGroup(commandGroups) {
5745
5798
  const allCommands = [];
5799
+ for (const group of commandGroups) {
5800
+ !group.Caption && (group.Caption = 'Global');
5801
+ }
5802
+ return commandGroups.filter((c) => c.Commands.length);
5746
5803
  for (const group of commandGroups) {
5747
5804
  allCommands.push(...this.flattenLeafCommands(group.Commands));
5748
5805
  }
@@ -5882,7 +5939,7 @@ function reportRoutes(authGuard = false) {
5882
5939
  return {
5883
5940
  path: 'report/:id',
5884
5941
  canActivate: authGuard ? [AuthGuard] : [],
5885
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-Dxc9_uZn.mjs').then((m) => m.BarsaReportPageModule),
5942
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-DIOdzySE.mjs').then((m) => m.BarsaReportPageModule),
5886
5943
  resolve: {
5887
5944
  breadcrumb: ReportBreadcrumbResolver
5888
5945
  }
@@ -12665,6 +12722,7 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
12665
12722
  this._position = null;
12666
12723
  this.sectionClass = true;
12667
12724
  this.ismodal = false;
12725
+ this.isinsideview = false;
12668
12726
  }
12669
12727
  ngOnInit() {
12670
12728
  this.settings = BarsaApi.Common.Util.TryGetValue(this._activatedRoute, 'data._value.pageData.Component.Settings', null);
@@ -12687,15 +12745,19 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
12687
12745
  if (this._activatedRoute.snapshot.data?.pageData?.Component?.Settings?.IsRelativePage && !isModal) {
12688
12746
  this._position = 'initial';
12689
12747
  }
12748
+ const insdeideView = this._activatedRoute.snapshot.params.id;
12749
+ if (insdeideView && insdeideView.split('__').some((c) => c.startsWith('ulv'))) {
12750
+ this.isinsideview = true;
12751
+ }
12690
12752
  }
12691
12753
  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: `
12754
+ 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
12755
  <div class="tw-flex tw-h-full tw-w-full tw-flex-col md:tw-flex-row">
12694
12756
  <!-- لیست -->
12695
12757
  <div class="tw-w-full md:tw-w-96 master">
12696
12758
  <ng-container #containerRef></ng-container>
12697
12759
  </div>
12698
- <bnrc-splitter ></bnrc-splitter>
12760
+ <bnrc-splitter></bnrc-splitter>
12699
12761
  <!-- جزئیات -->
12700
12762
  <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
12763
  <router-outlet name="details"></router-outlet>
@@ -12713,7 +12775,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12713
12775
  <div class="tw-w-full md:tw-w-96 master">
12714
12776
  <ng-container #containerRef></ng-container>
12715
12777
  </div>
12716
- <bnrc-splitter ></bnrc-splitter>
12778
+ <bnrc-splitter></bnrc-splitter>
12717
12779
  <!-- جزئیات -->
12718
12780
  <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
12781
  <router-outlet name="details"></router-outlet>
@@ -12731,6 +12793,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12731
12793
  }], ismodal: [{
12732
12794
  type: HostBinding,
12733
12795
  args: ['class.modal']
12796
+ }], isinsideview: [{
12797
+ type: HostBinding,
12798
+ args: ['class.insideview']
12734
12799
  }] } });
12735
12800
 
12736
12801
  class PortalPageComponent extends PageWithFormHandlerBaseComponent {
@@ -15197,7 +15262,7 @@ class RenderUlvViewerDirective extends BaseDirective {
15197
15262
  const { moduleName, modulePath, componentName, selector } = getComponentDefined(context, defaultSetting);
15198
15263
  this._portalService
15199
15264
  .getComponent(moduleName, modulePath, componentName, selector, this._injector)
15200
- .pipe(takeUntil(this._onDestroy$), delay(0), tap((component) => {
15265
+ .pipe(takeUntil(this._onDestroy$), tap((component) => {
15201
15266
  component.instance.id = getUniqueId(4);
15202
15267
  component.instance.context = context;
15203
15268
  component.instance.isReportPage = this.isReportPage;
@@ -17563,20 +17628,21 @@ class ReportNavigatorComponent extends BaseComponent {
17563
17628
  constructor() {
17564
17629
  super();
17565
17630
  this.minheight = '100svh';
17631
+ this.isMobile = getDeviceIsDesktop();
17566
17632
  this._activatedRoute = inject(ActivatedRoute);
17567
17633
  this._portalService = inject(PortalService);
17568
17634
  this._applicationCtrlService = inject(ApplicationCtrlrService);
17569
17635
  this._injector = inject(Injector);
17570
17636
  this._cdr = inject(ChangeDetectorRef);
17571
- this._bbb = inject(BbbTranslatePipe);
17572
17637
  this._loadingSource = new BehaviorSubject(false);
17638
+ this._routingService = inject(RoutingService, { optional: true, skipSelf: true });
17573
17639
  this.loading$ = this._loadingSource.asObservable().pipe(takeUntil(this._onDestroy$), debounceTime(200));
17574
17640
  }
17575
17641
  ngOnInit() {
17576
17642
  super.ngOnInit();
17577
17643
  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)
17644
+ .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
17645
+ .renderUlvMainUi(navItem, this.containerRef, this._injector, navItem.isReportPage)
17580
17646
  .pipe(catchError((_err) =>
17581
17647
  // this._location.back();
17582
17648
  // return throwError(() => new Error(err));
@@ -17592,25 +17658,61 @@ class ReportNavigatorComponent extends BaseComponent {
17592
17658
  // this._applicationCtrlService.selectNavGroupItem('');
17593
17659
  this._setActiveReport(null);
17594
17660
  }
17661
+ _setActiveReport(ulv) {
17662
+ this._ulvMainCtrlr = ulv;
17663
+ const x = BarsaApi.Ul.UlvMainCtrlr.EventEnum.SelectionChange;
17664
+ if (ulv && typeof ulv === 'object') {
17665
+ ulv.on({
17666
+ scope: this,
17667
+ [x]: this._onSelectionAdapter_SelectionChange
17668
+ });
17669
+ }
17670
+ this._ulvMainCtrlr = ulv;
17671
+ BarsaApi.Bw.App.GetActiveReport = () => {
17672
+ if (ulv === null) {
17673
+ return ulv;
17674
+ }
17675
+ return BarsaApi.Bw._wrap(ulv);
17676
+ };
17677
+ }
17595
17678
  _extractIds(params) {
17679
+ const lastText = params.id.split('__').length > 3 ? params.id.split('__')[3] : '';
17680
+ const navIdOrFieldDefId = params.id.split('__')[0];
17681
+ const reportId2OrLevelReportId = params.id.split('__').length > 1 ? params.id.split('__')[1] : '';
17682
+ const reportIdOrMoId = params.id.split('__').length > 2 ? params.id.split('__')[2] : '';
17596
17683
  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
17684
+ Id: navIdOrFieldDefId,
17685
+ ReportId: reportIdOrMoId,
17686
+ ReportId2: reportId2OrLevelReportId,
17687
+ isReportPage: lastText === '' || this._masterDetailsPage(lastText),
17688
+ OtherData: !lastText.startsWith('in')
17689
+ ? undefined
17690
+ : {
17691
+ FieldId: navIdOrFieldDefId,
17692
+ IsInsideViewResult: true,
17693
+ LevelReportId: reportId2OrLevelReportId,
17694
+ Mo: { Id: reportIdOrMoId, $Caption: '', $TypeDefId: lastText.replace('in', '') }
17695
+ }
17601
17696
  };
17602
17697
  }
17698
+ _masterDetailsPage(lastText) {
17699
+ return (lastText.startsWith('in') || lastText.startsWith('ulv')) && this.isMobile;
17700
+ }
17603
17701
  _setLoading(val) {
17604
17702
  this._loadingSource.next(val);
17605
17703
  this._cdr.detectChanges();
17606
17704
  }
17607
- _setActiveReport(ulv) {
17608
- BarsaApi.Bw.App.GetActiveReport = () => {
17609
- if (ulv === null) {
17610
- return ulv;
17705
+ _onSelectionAdapter_SelectionChange() {
17706
+ if (this._routingService?.masterDetails && this._ulvMainCtrlr) {
17707
+ const fieldId = this._navItemParams.ReportId2;
17708
+ const mo = this._ulvMainCtrlr.GetSelectedMetaObject();
17709
+ if (!mo) {
17710
+ return;
17611
17711
  }
17612
- return BarsaApi.Bw._wrap(ulv);
17613
- };
17712
+ const moId = `${mo.Id}`;
17713
+ const levelReportId = mo.$LevelReportId || '';
17714
+ this._routingService.navigate(['details', `${fieldId}__${levelReportId}__${moId}__in${mo.$TypeDefId}`], true, null, null);
17715
+ }
17614
17716
  }
17615
17717
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportNavigatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
17616
17718
  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 +18542,8 @@ const pipes = [
18440
18542
  DynamicDarkColorPipe,
18441
18543
  ChunkArrayPipe,
18442
18544
  MapToChatMessagePipe,
18443
- PicturesByGroupIdPipe
18545
+ PicturesByGroupIdPipe,
18546
+ ScopedCssPipe
18444
18547
  ];
18445
18548
  const functionL1 = async function () {
18446
18549
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -18625,7 +18728,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18625
18728
  DynamicDarkColorPipe,
18626
18729
  ChunkArrayPipe,
18627
18730
  MapToChatMessagePipe,
18628
- PicturesByGroupIdPipe, PlaceHolderDirective,
18731
+ PicturesByGroupIdPipe,
18732
+ ScopedCssPipe, PlaceHolderDirective,
18629
18733
  NumbersOnlyInputDirective,
18630
18734
  RenderUlvViewerDirective,
18631
18735
  RenderUlvPaginDirective,
@@ -18768,7 +18872,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
18768
18872
  DynamicDarkColorPipe,
18769
18873
  ChunkArrayPipe,
18770
18874
  MapToChatMessagePipe,
18771
- PicturesByGroupIdPipe, PlaceHolderDirective,
18875
+ PicturesByGroupIdPipe,
18876
+ ScopedCssPipe, PlaceHolderDirective,
18772
18877
  NumbersOnlyInputDirective,
18773
18878
  RenderUlvViewerDirective,
18774
18879
  RenderUlvPaginDirective,
@@ -18849,5 +18954,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18849
18954
  * Generated bundle index. Do not edit.
18850
18955
  */
18851
18956
 
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
18957
+ 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 };
18958
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-CiIJMeoP.mjs.map