barsa-novin-ray-core 2.3.142 → 2.3.144

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.
@@ -120,6 +120,9 @@ class BaseComponent {
120
120
  get el() {
121
121
  return this._el;
122
122
  }
123
+ get onDestroy$() {
124
+ return this._onDestroy$;
125
+ }
123
126
  ngAfterContentInit() {
124
127
  if (!BarsaApi.Common.Debug?.Data?.CustomUi) {
125
128
  return;
@@ -5398,9 +5401,12 @@ class FormPanelService extends BaseComponent {
5398
5401
  vid: this._viewSource.getValue()?.TypeViewId,
5399
5402
  bc: breadCrumb ? breadCrumb : mo.$State === 'New' ? mo.$TypeDefName : mo.$Caption
5400
5403
  };
5404
+ const normalize = (v) => (v === 'undefined' || v === 'null' ? undefined : v);
5405
+ const currentRepId = normalize(currentParams.repid);
5406
+ const isSameReport = currentRepId == null || currentRepId === queryParamsToUpdate.repid;
5401
5407
  if (currentParams.id === queryParamsToUpdate.id &&
5402
5408
  currentParams.tyid === queryParamsToUpdate.tyid &&
5403
- (currentParams.repid === queryParamsToUpdate.repid || typeof currentParams.repid === 'undefined') &&
5409
+ isSameReport &&
5404
5410
  currentParams.vid === queryParamsToUpdate.vid) {
5405
5411
  return;
5406
5412
  }
@@ -5869,7 +5875,7 @@ class ApplicationCtrlrService {
5869
5875
  get systemCommandGroups$() {
5870
5876
  return this._selectedSystemNavUi$
5871
5877
  .asObservable()
5872
- .pipe(map$1((c) => (!c ? [] : this._mergeToSystemGroup(c.SystemData.CommandGroups) || [])));
5878
+ .pipe(map$1((c) => (!c ? [] : c.SystemData.CommandGroups || [])));
5873
5879
  }
5874
5880
  get selectedCommand$() {
5875
5881
  return combineLatest([this._selectedCommandId$, this._selectedSystemId$]).pipe(map$1(([selectedCommand, systemId]) => selectedCommand[systemId]));
@@ -6265,7 +6271,7 @@ function reportRoutes(authGuard = false) {
6265
6271
  return {
6266
6272
  path: 'report/:id',
6267
6273
  canActivate: authGuard ? [AuthGuard] : [],
6268
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CYc_aLhI.mjs').then((m) => m.BarsaReportPageModule),
6274
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-BnBF1-gh.mjs').then((m) => m.BarsaReportPageModule),
6269
6275
  resolve: {
6270
6276
  breadcrumb: ReportBreadcrumbResolver
6271
6277
  }
@@ -10542,7 +10548,9 @@ class ReportBaseComponent extends BaseComponent {
10542
10548
  this.deviceSize$
10543
10549
  .pipe(takeUntil(this._onDestroy$), tap((deviceSize) => this._deviceSizeChanged(deviceSize)))
10544
10550
  .subscribe();
10545
- this._portalService.windowResize$.pipe(takeUntil(this._onDestroy$)).subscribe(() => this._windowResized());
10551
+ merge(this._portalService.windowResize$, timer(1000))
10552
+ .pipe(takeUntil(this._onDestroy$))
10553
+ .subscribe(() => this._windowResized());
10546
10554
  this.context?.fireEvent('afterrender', this);
10547
10555
  }
10548
10556
  ngOnDestroy() {
@@ -12622,11 +12630,12 @@ class TilePropsComponent extends BaseComponent {
12622
12630
  super(...arguments);
12623
12631
  this.hideClick = new EventEmitter();
12624
12632
  this.renameClick = new EventEmitter();
12633
+ this.changeGroupClick = new EventEmitter();
12625
12634
  this._renderer2 = inject(Renderer2);
12626
12635
  this._cdr = inject(ChangeDetectorRef);
12627
12636
  }
12628
12637
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TilePropsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12629
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: TilePropsComponent, isStandalone: false, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", groupType: "groupType", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12638
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: TilePropsComponent, isStandalone: false, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", groupType: "groupType", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick", changeGroupClick: "changeGroupClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12630
12639
  }
12631
12640
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TilePropsComponent, decorators: [{
12632
12641
  type: Component,
@@ -12660,6 +12669,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12660
12669
  type: Output
12661
12670
  }], renameClick: [{
12662
12671
  type: Output
12672
+ }], changeGroupClick: [{
12673
+ type: Output
12663
12674
  }] } });
12664
12675
 
12665
12676
  class FormFieldReportPageComponent extends BaseComponent {
@@ -13008,7 +13019,7 @@ class SplitterComponent extends BaseComponent {
13008
13019
  <circle cx="15" cy="16" r="1.5" />
13009
13020
  </svg>
13010
13021
  </div>
13011
- </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"] }); }
13022
+ </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:17px;height:20px;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"] }); }
13012
13023
  }
13013
13024
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SplitterComponent, decorators: [{
13014
13025
  type: Component,
@@ -13024,7 +13035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13024
13035
  <circle cx="15" cy="16" r="1.5" />
13025
13036
  </svg>
13026
13037
  </div>
13027
- </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"] }]
13038
+ </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:17px;height:20px;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"] }]
13028
13039
  }], propDecorators: { emptyClass: [{
13029
13040
  type: HostBinding,
13030
13041
  args: ['class.empty-space']
@@ -13102,7 +13113,7 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
13102
13113
  </div>
13103
13114
  <router-outlet></router-outlet>
13104
13115
  <router-outlet name="dialog"></router-outlet>
13105
- `, isInline: true, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i1.RouterOutlet, selector: "router-outlet", inputs: ["name", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: SplitterComponent, selector: "bnrc-splitter", inputs: ["minWidth", "maxWidth", "config"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13116
+ `, isInline: true, styles: [":host{display:block;height:100%}\n"], dependencies: [{ kind: "directive", type: i1.RouterOutlet, selector: "router-outlet", inputs: ["name", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: SplitterComponent, selector: "bnrc-splitter", inputs: ["minWidth", "maxWidth", "config"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13106
13117
  }
13107
13118
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: MasterDetailsPageComponent, decorators: [{
13108
13119
  type: Component,
@@ -13120,7 +13131,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13120
13131
  </div>
13121
13132
  <router-outlet></router-outlet>
13122
13133
  <router-outlet name="dialog"></router-outlet>
13123
- `, providers: [RoutingService, ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, styles: [":host{display:block}\n"] }]
13134
+ `, providers: [RoutingService, ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, styles: [":host{display:block;height:100%}\n"] }]
13124
13135
  }], propDecorators: { _position: [{
13125
13136
  type: HostBinding,
13126
13137
  args: ['style.position']
@@ -14571,66 +14582,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
14571
14582
  type: Input
14572
14583
  }] } });
14573
14584
 
14574
- class DynamicTileGroupComponent extends BaseDynamicComponent {
14575
- constructor() {
14576
- super(...arguments);
14577
- this.tilesDropped = new EventEmitter();
14578
- this.hideAppTileClick = new EventEmitter();
14579
- this.renameAppTileClick = new EventEmitter();
14580
- this.toggleGroup = new EventEmitter();
14581
- this.resetGroup = new EventEmitter();
14582
- this.deleteGroup = new EventEmitter();
14583
- }
14584
- ngOnChanges(changes) {
14585
- super.ngOnChanges(changes);
14586
- const { appTileGroup } = changes;
14587
- if (appTileGroup && !appTileGroup.firstChange) {
14588
- this._renderComponentInstance();
14589
- }
14590
- }
14591
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicTileGroupComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14592
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicTileGroupComponent, isStandalone: false, selector: "bnrc-dynamic-tile-group,[dynamictilegroup]", inputs: { appTileGroup: "appTileGroup", tabRef: "tabRef", stackContent: "stackContent", cssStyles: "cssStyles", edit: "edit", rtl: "rtl", isAppTileSubGroup: "isAppTileSubGroup", deviceSize: "deviceSize", isLast: "isLast" }, outputs: { tilesDropped: "tilesDropped", hideAppTileClick: "hideAppTileClick", renameAppTileClick: "renameAppTileClick", toggleGroup: "toggleGroup", resetGroup: "resetGroup", deleteGroup: "deleteGroup" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14593
- }
14594
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicTileGroupComponent, decorators: [{
14595
- type: Component,
14596
- args: [{
14597
- selector: 'bnrc-dynamic-tile-group,[dynamictilegroup]',
14598
- template: `<ng-container #componentContainer></ng-container>`,
14599
- changeDetection: ChangeDetectionStrategy.OnPush,
14600
- standalone: false
14601
- }]
14602
- }], propDecorators: { appTileGroup: [{
14603
- type: Input
14604
- }], tabRef: [{
14605
- type: Input
14606
- }], stackContent: [{
14607
- type: Input
14608
- }], cssStyles: [{
14609
- type: Input
14610
- }], edit: [{
14611
- type: Input
14612
- }], rtl: [{
14613
- type: Input
14614
- }], isAppTileSubGroup: [{
14615
- type: Input
14616
- }], deviceSize: [{
14617
- type: Input
14618
- }], isLast: [{
14619
- type: Input
14620
- }], tilesDropped: [{
14621
- type: Output
14622
- }], hideAppTileClick: [{
14623
- type: Output
14624
- }], renameAppTileClick: [{
14625
- type: Output
14626
- }], toggleGroup: [{
14627
- type: Output
14628
- }], resetGroup: [{
14629
- type: Output
14630
- }], deleteGroup: [{
14631
- type: Output
14632
- }] } });
14633
-
14634
14585
  class DynamicUlvToolbarComponent extends BaseDynamicComponent {
14635
14586
  constructor() {
14636
14587
  super(...arguments);
@@ -18815,7 +18766,6 @@ const components = [
18815
18766
  FormFieldReportPageComponent,
18816
18767
  ButtonLoadingComponent,
18817
18768
  UnlimitSessionComponent,
18818
- DynamicTileGroupComponent,
18819
18769
  PushBannerComponent,
18820
18770
  ReportNavigatorComponent,
18821
18771
  SplitterComponent
@@ -19093,7 +19043,6 @@ class BarsaNovinRayCoreModule extends BaseModule {
19093
19043
  FormFieldReportPageComponent,
19094
19044
  ButtonLoadingComponent,
19095
19045
  UnlimitSessionComponent,
19096
- DynamicTileGroupComponent,
19097
19046
  PushBannerComponent,
19098
19047
  ReportNavigatorComponent,
19099
19048
  SplitterComponent, NumeralPipe,
@@ -19238,7 +19187,6 @@ class BarsaNovinRayCoreModule extends BaseModule {
19238
19187
  FormFieldReportPageComponent,
19239
19188
  ButtonLoadingComponent,
19240
19189
  UnlimitSessionComponent,
19241
- DynamicTileGroupComponent,
19242
19190
  PushBannerComponent,
19243
19191
  ReportNavigatorComponent,
19244
19192
  SplitterComponent, NumeralPipe,
@@ -19382,5 +19330,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
19382
19330
  * Generated bundle index. Do not edit.
19383
19331
  */
19384
19332
 
19385
- export { PreventDefaultDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, IntersectionObserverDirective as G, ItemsRendererDirective as H, ImageLazyDirective as I, NumbersOnlyInputDirective as J, PlaceHolderDirective as K, RenderUlvViewerDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, RenderUlvPaginDirective as O, PortalPageComponent as P, UntilInViewDirective as Q, ReportEmptyPageComponent as R, CopyDirective as S, TableResizerDirective as T, UlvCommandDirective as U, EllapsisTextDirective as V, WorfkflowwChoiceCommandDirective as W, FillEmptySpaceDirective as X, FormCloseDirective as Y, MobileDirective as Z, BodyClickDirective as _, EmptyPageComponent as a, MoInfoUlvPagingPipe as a$, StopPropagationDirective as a0, CountDownDirective as a1, RouteFormChangeDirective as a2, DynamicStyleDirective as a3, NowraptextDirective as a4, LabelmandatoryDirective as a5, AbsoluteDivBodyDirective as a6, LoadExternalFilesDirective as a7, RenderUlvDirective as a8, PrintFilesDirective as a9, TlbButtonsPipe as aA, RemoveNewlinePipe as aB, MoValuePipe as aC, FilterPipe as aD, FilterTabPipe as aE, MoReportValueConcatPipe as aF, FilterStringPipe as aG, SortPipe as aH, BbbTranslatePipe as aI, BarsaIconDictPipe as aJ, FileInfoCountPipe as aK, ControlUiPipe as aL, VisibleValuePipe as aM, FilterToolbarControlPipe as aN, MultipleGroupByPipe as aO, PictureFieldSourcePipe as aP, FioriIconPipe as aQ, CanUploadFilePipe as aR, ListCountPipe as aS, TotalSummaryPipe as aT, MergeFieldsToColumnsPipe as aU, FindColumnByDbNamePipe as aV, FilterColumnsByDetailsPipe as aW, MoInfoUlvMoListPipe as aX, ReversePipe as aY, ColumnCustomUiPipe as aZ, SanitizeTextPipe as a_, SaveImageDirective as aa, WebOtpDirective as ab, SplideSliderDirective as ac, DynamicRootVariableDirective as ad, HorizontalResponsiveDirective as ae, MeasureFormTitleWidthDirective as af, OverflowTextDirective as ag, ShortcutRegisterDirective as ah, ShortcutHandlerDirective as ai, BarsaReadonlyDirective as aj, ResizeObserverDirective as ak, ColumnValueDirective as al, ScrollToSelectedDirective as am, ScrollPersistDirective as an, TooltipDirective as ao, SimplebarDirective as ap, LeafletLongPressDirective as aq, ResizeHandlerDirective as ar, SafeBottomDirective as as, MoReportValuePipe as at, NumeralPipe as au, GroupByPipe as av, ContextMenuPipe as aw, HeaderFacetValuePipe as ax, SeperatorFixPipe as ay, ConvertToStylePipe as az, PortalPageSidebarComponent as b, CardViewService as b$, ColumnCustomComponentPipe as b0, ColumnValuePipe as b1, ColumnIconPipe as b2, RowNumberPipe as b3, ComboRowImagePipe as b4, IsExpandedNodePipe as b5, ThImageOrIconePipe as b6, FindPreviewColumnPipe as b7, ReplacePipe as b8, FilterWorkflowInMobilePipe as b9, LogService as bA, PortalService as bB, UiService as bC, UlvMainService as bD, UploadService as bE, NetworkStatusService as bF, AudioRecordingService as bG, VideoRecordingService as bH, LocalStorageService as bI, IndexedDbService as bJ, BarsaStorageService as bK, PromptUpdateService as bL, NotificationService as bM, ServiceWorkerNotificationService as bN, ColumnService as bO, ServiceWorkerCommuncationService as bP, SaveScrollPositionService as bQ, RoutingService as bR, GroupByService as bS, LayoutMainContentService as bT, TabpageService as bU, InMemoryStorageService as bV, ShellbarHeightService as bW, ApplicationCtrlrService as bX, PushCheckService as bY, IdbService as bZ, PushNotificationService as b_, HideColumnsInmobilePipe as ba, StringToNumberPipe as bb, ColumnValueOfParametersPipe as bc, HideAcceptCancelButtonsPipe as bd, FilterInlineActionListPipe as be, IsImagePipe as bf, ToolbarSettingsPipe as bg, CardMediaSizePipe as bh, LabelStarTrimPipe as bi, SplitPipe as bj, DynamicDarkColorPipe as bk, ChunkArrayPipe as bl, MapToChatMessagePipe as bm, PicturesByGroupIdPipe as bn, ScopedCssPipe as bo, ReportActionListPipe as bp, ApiService as bq, BreadcrumbService as br, CustomInjector as bs, DialogParams as bt, BarsaDialogService as bu, FormPanelService as bv, FormService as bw, ContainerService as bx, HorizontalLayoutService as by, LayoutService as bz, BaseDynamicComponent as c, ReportExtraInfo as c$, BaseSettingsService as c0, CalendarSettingsService as c1, SimpleTemplateEngine as c2, TEMPLATE_ENGINE as c3, PortalDynamicPageResolver as c4, PortalFormPageResolver as c5, PortalPageResolver as c6, PortalReportPageResolver as c7, TileGroupBreadcrumResolver as c8, LoginSettingsResolver as c9, RichStringControlInfoModel as cA, NumberControlInfoModel as cB, FilePictureInfoModel as cC, FileControlInfoModel as cD, CommandControlInfoModel as cE, IconControlInfoModel as cF, PictureFileControlInfoModel as cG, GaugeControlInfoModel as cH, RelationListControlInfoModel as cI, HistoryControlInfoModel as cJ, RabetehAkseTakiListiControlInfoModel as cK, RelatedReportControlInfoModel as cL, CodeEditorControlInfoModel as cM, EnumControlInfoModel as cN, RowDataOption as cO, DateTimeControlInfoModel as cP, BoolControlInfoModel as cQ, CalculateControlInfoModel as cR, SubformControlInfoModel as cS, LinearListControlInfoModel as cT, ListRelationModel as cU, SingleRelationControlInfoModel as cV, MetaobjectDataModel as cW, MoForReportModelBase as cX, MoForReportModel as cY, ReportBaseInfo as cZ, FormToolbarButton as c_, ReportBreadcrumbResolver as ca, DateService as cb, DateHijriService as cc, DateMiladiService as cd, DateShamsiService as ce, FormNewComponent as cf, ReportContainerComponent as cg, FormComponent as ch, FieldUiComponent as ci, BarsaSapUiFormPageModule as cj, ReportNavigatorComponent as ck, BaseController as cl, FieldBaseController as cm, ViewBase as cn, ModalRootComponent as co, ButtonLoadingComponent as cp, UnlimitSessionComponent as cq, SplitterComponent as cr, APP_VERSION as cs, DIALOG_SERVICE as ct, FORM_DIALOG_COMPONENT as cu, NOTIFICATAION_POPUP_SERVER as cv, TOAST_SERVICE as cw, NOTIFICATION_WEBWORKER_FACTORY as cx, GeneralControlInfoModel as cy, StringControlInfoModel as cz, DynamicFormComponent as d, measureTextBy as d$, MetaobjectRelationModel as d0, FieldInfoTypeEnum as d1, BaseReportModel as d2, DefaultCommandsAccessValue as d3, CustomCommand as d4, ReportModel as d5, ReportListModel as d6, ReportFormModel as d7, ReportCalendarModel as d8, ReportTreeModel as d9, FormPropsBaseComponent as dA, LinearListHelper as dB, PageWithFormHandlerBaseComponent as dC, FormPageBaseComponent as dD, FormPageComponent as dE, BaseColumnPropsComponent as dF, TilePropsComponent as dG, FormFieldReportPageComponent as dH, ColumnRendererBase as dI, ColumnRendererViewBase as dJ, BaseUlvSettingComponent as dK, TableHeaderWidthMode as dL, setTableThWidth as dM, calculateColumnContent as dN, calculateColumnWidth as dO, setColumnWidthByMaxMoContentWidth as dP, calculateMoDataListContentWidthByColumnName as dQ, calculateFreeColumnSize as dR, calculateColumnWidthFitToContainer as dS, calcContextMenuWidth as dT, RotateImage as dU, isInLocalMode as dV, getLabelWidth as dW, getColumnValueOfMoDataList as dX, throwIfAlreadyLoaded as dY, measureText2 as dZ, measureText as d_, ReportViewColumn as da, DefaultGridSetting as db, GridSetting as dc, ColSetting as dd, SortSetting as de, ReportField as df, DateRanges as dg, SortDirection as dh, SelectionMode as di, UlvHeightSizeType as dj, FieldBaseComponent as dk, FieldViewBase as dl, FormBaseComponent as dm, FormToolbarBaseComponent as dn, SystemBaseComponent as dp, ReportBaseComponent as dq, ReportItemBaseComponent as dr, ApplicationBaseComponent as ds, LayoutItemBaseComponent as dt, LayoutPanelBaseComponent as du, PageBaseComponent as dv, NumberBaseComponent as dw, FilesValidationHelper as dx, BarsaApi as dy, ReportViewBaseComponent as dz, DynamicItemComponent as e, cancelRequestAnimationFrame as e$, genrateInlineMoId as e0, enumValueToStringSize as e1, isVersionBiggerThan as e2, compareVersions as e3, scrollToElement as e4, executeUlvCommandHandler as e5, getUniqueId as e6, getDateService as e7, getAllItemsPerChildren as e8, setOneDepthLevel as e9, FindGroup as eA, FillAllLayoutControls as eB, FindToolbarItem as eC, FindLayoutSettingFromLayout94 as eD, GetAllHorizontalFromLayout94 as eE, getGridSettings as eF, getResetGridSettings as eG, GetDefaultMoObjectInfo as eH, getLayout94ObjectInfo as eI, getFormSettings as eJ, createFormPanelMetaConditions as eK, getNewMoGridEditor as eL, createGridEditorFormPanel as eM, getLayoutControl as eN, getControlList as eO, shallowEqual as eP, toNumber as eQ, InputNumber as eR, AffixRespondEvents as eS, isTargetWindow as eT, getTargetRect as eU, getFieldValue as eV, availablePrefixes as eW, requestAnimationFramePolyfill as eX, ExecuteDynamicCommand as eY, ExecuteWorkflowChoiceDef as eZ, getRequestAnimationFrame as e_, isFirefox as ea, getImagePath as eb, checkPermission as ec, fixUnclosedParentheses as ed, isFunction as ee, DeviceWidth as ef, getHeaderValue as eg, elementInViewport2 as eh, PreventDefaulEvent as ei, stopPropagation as ej, getParentHeight as ek, getComponentDefined as el, isSafari as em, isFF as en, getDeviceIsPhone as eo, getDeviceIsDesktop as ep, getDeviceIsTablet as eq, getDeviceIsMobile as er, getControlSizeMode as es, formatBytes as et, getValidExtension as eu, getIcon as ev, isImage as ew, GetAllColumnsSorted as ex, GetVisibleValue as ey, GroupBy as ez, formRoutes as f, easeInOutCubic as f0, WordMimeType as f1, ImageMimeType as f2, PdfMimeType as f3, AllFilesMimeType as f4, VideoMimeType as f5, AudioMimeType as f6, MimeTypes as f7, GetContentType as f8, GetViewableExtensions as f9, RootPageComponent as fA, ResizableComponent as fB, ResizableDirective as fC, ResizableModule as fD, PushBannerComponent as fE, BarsaNovinRayCoreModule as fF, ChangeLayoutInfoCustomUi as fa, mobile_regex as fb, number_only as fc, forbiddenValidator as fd, GetImgTags as fe, ImagetoPrint as ff, PrintImage as fg, SaveImageToFile as fh, validateAllFormFields as fi, getFocusableTagNames as fj, addCssVariableToRoot as fk, flattenTree as fl, IsDarkMode as fm, nullOrUndefinedString as fn, fromEntries as fo, bodyClick as fp, removeDynamicStyle as fq, addDynamicVariableTo as fr, AddDynamicFormStyles as fs, RemoveDynamicFormStyles as ft, ContainerComponent as fu, IntersectionStatus as fv, fromIntersectionObserver as fw, CustomRouteReuseStrategy as fx, AuthGuard as fy, RedirectHomeGuard as fz, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, RowState as j, BaseItemContentPropsComponent as k, CardBaseItemContentPropsComponent as l, BaseFormToolbaritemPropsComponent as m, DynamicFormToolbaritemComponent as n, DynamicLayoutComponent as o, DynamicTileGroupComponent as p, DynamicUlvToolbarComponent as q, reportRoutes as r, DynamicUlvPagingComponent as s, RootPortalComponent as t, BaseComponent as u, AttrRtlDirective as v, BaseDirective as w, ColumnResizerDirective as x, DynamicCommandDirective as y, EllipsifyDirective as z };
19386
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-D1jTqUIb.mjs.map
19333
+ 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, BaseSettingsService 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, PortalService as bA, UiService as bB, UlvMainService as bC, UploadService as bD, NetworkStatusService as bE, AudioRecordingService as bF, VideoRecordingService as bG, LocalStorageService as bH, IndexedDbService as bI, BarsaStorageService as bJ, PromptUpdateService as bK, NotificationService as bL, ServiceWorkerNotificationService as bM, ColumnService as bN, ServiceWorkerCommuncationService as bO, SaveScrollPositionService as bP, RoutingService as bQ, GroupByService as bR, LayoutMainContentService as bS, TabpageService as bT, InMemoryStorageService as bU, ShellbarHeightService as bV, ApplicationCtrlrService as bW, PushCheckService as bX, IdbService as bY, PushNotificationService as bZ, CardViewService 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, ReportActionListPipe as bo, ApiService as bp, BreadcrumbService as bq, CustomInjector as br, DialogParams as bs, BarsaDialogService as bt, FormPanelService as bu, FormService as bv, ContainerService as bw, HorizontalLayoutService as bx, LayoutService as by, LogService as bz, BaseDynamicComponent as c, MetaobjectRelationModel as c$, CalendarSettingsService as c0, SimpleTemplateEngine as c1, TEMPLATE_ENGINE as c2, PortalDynamicPageResolver as c3, PortalFormPageResolver as c4, PortalPageResolver as c5, PortalReportPageResolver as c6, TileGroupBreadcrumResolver as c7, LoginSettingsResolver as c8, ReportBreadcrumbResolver as c9, NumberControlInfoModel as cA, FilePictureInfoModel as cB, FileControlInfoModel as cC, CommandControlInfoModel as cD, IconControlInfoModel as cE, PictureFileControlInfoModel as cF, GaugeControlInfoModel as cG, RelationListControlInfoModel as cH, HistoryControlInfoModel as cI, RabetehAkseTakiListiControlInfoModel as cJ, RelatedReportControlInfoModel as cK, CodeEditorControlInfoModel as cL, EnumControlInfoModel as cM, RowDataOption as cN, DateTimeControlInfoModel as cO, BoolControlInfoModel as cP, CalculateControlInfoModel as cQ, SubformControlInfoModel as cR, LinearListControlInfoModel as cS, ListRelationModel as cT, SingleRelationControlInfoModel as cU, MetaobjectDataModel as cV, MoForReportModelBase as cW, MoForReportModel as cX, ReportBaseInfo as cY, FormToolbarButton as cZ, ReportExtraInfo as c_, DateService as ca, DateHijriService as cb, DateMiladiService as cc, DateShamsiService as cd, FormNewComponent as ce, ReportContainerComponent as cf, FormComponent as cg, FieldUiComponent as ch, BarsaSapUiFormPageModule as ci, ReportNavigatorComponent as cj, BaseController as ck, FieldBaseController as cl, ViewBase as cm, ModalRootComponent as cn, ButtonLoadingComponent as co, UnlimitSessionComponent as cp, SplitterComponent as cq, APP_VERSION as cr, DIALOG_SERVICE as cs, FORM_DIALOG_COMPONENT as ct, NOTIFICATAION_POPUP_SERVER as cu, TOAST_SERVICE as cv, NOTIFICATION_WEBWORKER_FACTORY as cw, GeneralControlInfoModel as cx, StringControlInfoModel as cy, RichStringControlInfoModel as cz, DynamicFormComponent as d, genrateInlineMoId as d$, FieldInfoTypeEnum as d0, BaseReportModel as d1, DefaultCommandsAccessValue as d2, CustomCommand as d3, ReportModel as d4, ReportListModel as d5, ReportFormModel as d6, ReportCalendarModel as d7, ReportTreeModel as d8, ReportViewColumn as d9, LinearListHelper as dA, PageWithFormHandlerBaseComponent as dB, FormPageBaseComponent as dC, FormPageComponent as dD, BaseColumnPropsComponent as dE, TilePropsComponent as dF, FormFieldReportPageComponent as dG, ColumnRendererBase as dH, ColumnRendererViewBase as dI, BaseUlvSettingComponent as dJ, TableHeaderWidthMode as dK, setTableThWidth as dL, calculateColumnContent as dM, calculateColumnWidth as dN, setColumnWidthByMaxMoContentWidth as dO, calculateMoDataListContentWidthByColumnName as dP, calculateFreeColumnSize as dQ, calculateColumnWidthFitToContainer as dR, calcContextMenuWidth as dS, RotateImage as dT, isInLocalMode as dU, getLabelWidth as dV, getColumnValueOfMoDataList as dW, throwIfAlreadyLoaded as dX, measureText2 as dY, measureText as dZ, measureTextBy as d_, DefaultGridSetting as da, GridSetting as db, ColSetting as dc, SortSetting as dd, ReportField as de, DateRanges as df, SortDirection as dg, SelectionMode as dh, UlvHeightSizeType as di, FieldBaseComponent as dj, FieldViewBase as dk, FormBaseComponent as dl, FormToolbarBaseComponent as dm, SystemBaseComponent as dn, ReportBaseComponent as dp, ReportItemBaseComponent as dq, ApplicationBaseComponent as dr, LayoutItemBaseComponent as ds, LayoutPanelBaseComponent as dt, PageBaseComponent as du, NumberBaseComponent as dv, FilesValidationHelper as dw, BarsaApi as dx, ReportViewBaseComponent as dy, FormPropsBaseComponent as dz, DynamicItemComponent as e, easeInOutCubic as e$, enumValueToStringSize as e0, isVersionBiggerThan as e1, compareVersions as e2, scrollToElement as e3, executeUlvCommandHandler as e4, getUniqueId as e5, getDateService as e6, getAllItemsPerChildren as e7, setOneDepthLevel as e8, isFirefox as e9, FillAllLayoutControls as eA, FindToolbarItem as eB, FindLayoutSettingFromLayout94 as eC, GetAllHorizontalFromLayout94 as eD, getGridSettings as eE, getResetGridSettings as eF, GetDefaultMoObjectInfo as eG, getLayout94ObjectInfo as eH, getFormSettings as eI, createFormPanelMetaConditions as eJ, getNewMoGridEditor as eK, createGridEditorFormPanel as eL, getLayoutControl as eM, getControlList as eN, shallowEqual as eO, toNumber as eP, InputNumber as eQ, AffixRespondEvents as eR, isTargetWindow as eS, getTargetRect as eT, getFieldValue as eU, availablePrefixes as eV, requestAnimationFramePolyfill as eW, ExecuteDynamicCommand as eX, ExecuteWorkflowChoiceDef as eY, getRequestAnimationFrame as eZ, cancelRequestAnimationFrame as e_, getImagePath as ea, checkPermission as eb, fixUnclosedParentheses as ec, isFunction as ed, DeviceWidth as ee, getHeaderValue as ef, elementInViewport2 as eg, PreventDefaulEvent as eh, stopPropagation as ei, getParentHeight as ej, getComponentDefined as ek, isSafari as el, isFF as em, getDeviceIsPhone as en, getDeviceIsDesktop as eo, getDeviceIsTablet as ep, getDeviceIsMobile as eq, getControlSizeMode as er, formatBytes as es, getValidExtension as et, getIcon as eu, isImage as ev, GetAllColumnsSorted as ew, GetVisibleValue as ex, GroupBy as ey, FindGroup as ez, formRoutes as f, WordMimeType as f0, ImageMimeType as f1, PdfMimeType as f2, AllFilesMimeType as f3, VideoMimeType as f4, AudioMimeType as f5, MimeTypes as f6, GetContentType as f7, GetViewableExtensions as f8, ChangeLayoutInfoCustomUi as f9, ResizableComponent as fA, ResizableDirective as fB, ResizableModule as fC, PushBannerComponent as fD, BarsaNovinRayCoreModule as fE, mobile_regex as fa, number_only as fb, forbiddenValidator as fc, GetImgTags as fd, ImagetoPrint as fe, PrintImage as ff, SaveImageToFile as fg, validateAllFormFields as fh, getFocusableTagNames as fi, addCssVariableToRoot as fj, flattenTree as fk, IsDarkMode as fl, nullOrUndefinedString as fm, fromEntries as fn, bodyClick as fo, removeDynamicStyle as fp, addDynamicVariableTo as fq, AddDynamicFormStyles as fr, RemoveDynamicFormStyles as fs, ContainerComponent as ft, IntersectionStatus as fu, fromIntersectionObserver as fv, CustomRouteReuseStrategy as fw, AuthGuard as fx, RedirectHomeGuard as fy, RootPageComponent as fz, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, RowState as j, BaseItemContentPropsComponent as k, CardBaseItemContentPropsComponent as l, BaseFormToolbaritemPropsComponent as m, DynamicFormToolbaritemComponent as n, DynamicLayoutComponent 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 };
19334
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-BOKaq7hB.mjs.map