barsa-novin-ray-core 2.3.148 → 2.3.150

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, signal, ViewContainerRef, isDevMode, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
2
+ import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, signal, ViewContainerRef, isDevMode, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, effect, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
3
3
  import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, timer, combineLatest, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, switchMap, forkJoin, shareReplay, withLatestFrom as withLatestFrom$1, fromEvent, throwError, merge, interval, filter as filter$1, lastValueFrom, timeout, catchError as catchError$1, takeUntil as takeUntil$1, take, skip, Observable, tap as tap$1, mergeWith, Subscription } from 'rxjs';
4
4
  import * as i1 from '@angular/router';
5
5
  import { Router, NavigationEnd, ActivatedRoute, RouterEvent, NavigationStart, RouterModule, RouteReuseStrategy } from '@angular/router';
@@ -2131,6 +2131,110 @@ function isImage(type) {
2131
2131
  type = type.toLowerCase();
2132
2132
  return ['img', 'png', 'jpeg', 'jpg', 'gif', 'bmp', 'tiff', 'image', 'jfif'].indexOf(type) > -1;
2133
2133
  }
2134
+ function getNestedValue(key, object) {
2135
+ return key.split('.').reduce((a, b) => (typeof a === 'undefined' ? a : a[b]), object);
2136
+ }
2137
+ const sort = (a, b, key, isNumber) => {
2138
+ if (key) {
2139
+ if (typeof a === 'object' && !(a instanceof Date)) {
2140
+ a = getNestedValue(key, a);
2141
+ }
2142
+ if (typeof b === 'object' && !(b instanceof Date)) {
2143
+ b = getNestedValue(key, b);
2144
+ }
2145
+ }
2146
+ if (key === 'Rownumber' || isNumber) {
2147
+ return Number(a) === Number(b) ? 0 : Number(a) > Number(b) ? 1 : -1;
2148
+ }
2149
+ else if (typeof a === 'string' && typeof b === 'string') {
2150
+ return a.localeCompare(b);
2151
+ }
2152
+ else if (a instanceof Date || b instanceof Date) {
2153
+ if (!a && b) {
2154
+ return -1;
2155
+ }
2156
+ if (!b && a) {
2157
+ return 1;
2158
+ }
2159
+ if (a instanceof Date && b instanceof Date) {
2160
+ const msDateA = Date.UTC(a.getFullYear(), a.getMonth() + 1, a.getDate());
2161
+ const msDateB = Date.UTC(b.getFullYear(), b.getMonth() + 1, b.getDate());
2162
+ if (msDateA < msDateB) {
2163
+ return -1;
2164
+ }
2165
+ else if (msDateA === msDateB) {
2166
+ return 0;
2167
+ }
2168
+ else if (msDateA > msDateB) {
2169
+ return 1;
2170
+ }
2171
+ return a.getTime() > b?.getTime() ? 1 : a.getTime() === b.getTime() ? 0 : -1;
2172
+ }
2173
+ else {
2174
+ return 0;
2175
+ }
2176
+ }
2177
+ return a > b ? 1 : a === b ? 0 : -1;
2178
+ };
2179
+ const sortEx = (sortBy, moDataList) => {
2180
+ const items = moDataList.slice();
2181
+ const newSortBy = sortBy.filter(({ field }) => !!field);
2182
+ if (newSortBy.length === 0) {
2183
+ return items;
2184
+ }
2185
+ return items.sort((a, b) =>
2186
+ /* eslint-disable */
2187
+ newSortBy
2188
+ .map(({ field, direction, isNumber }) => {
2189
+ const ascModifier = direction === SortDirection.ASC ? 1 : -1;
2190
+ return sort(a, b, field, isNumber) * ascModifier;
2191
+ })
2192
+ .find((result, index, list) => result !== 0 || index === list.length - 1));
2193
+ };
2194
+ function multilevelSort(criteria) {
2195
+ const compareFunctions = criteria.map((x) => {
2196
+ const { field, direction, isNumber } = x;
2197
+ return (a, b) => {
2198
+ let aValue = a[field || '$_x_']; // optionally transform the property value
2199
+ let bValue = b[field || '$_x_']; // we use an identity function as default
2200
+ if (aValue instanceof Date) {
2201
+ aValue = aValue.getTime();
2202
+ }
2203
+ if (bValue instanceof Date) {
2204
+ bValue = bValue.getTime();
2205
+ }
2206
+ const ascModifier = direction === SortDirection.ASC ? 1 : -1;
2207
+ const res = sort(aValue, bValue, field, isNumber);
2208
+ // console.log('sort res=', res * ascModifier, 'on field', field, aValue, bValue);
2209
+ return res * ascModifier;
2210
+ };
2211
+ });
2212
+ return combineComparisonFunctions(compareFunctions);
2213
+ }
2214
+ function combineComparisonFunctions(compareFunctions) {
2215
+ return (a, b) => {
2216
+ return compareFunctions.reduce((result, compareFunction) => {
2217
+ // Proceeds to the next comparison function if the previous one returned 0
2218
+ // console.log('before ', result);
2219
+ // console.log('next a ,b ', a, b);
2220
+ return result || compareFunction(a, b);
2221
+ }, 0);
2222
+ };
2223
+ }
2224
+ const searchEx = (searchTerm, columns, items) => {
2225
+ const searchText = searchTerm || '';
2226
+ const keysToSearchBy = columns;
2227
+ if (searchText.trim() === '' || keysToSearchBy.length === 0) {
2228
+ return items;
2229
+ }
2230
+ return items.filter((item) => {
2231
+ const valuesForSearch = keysToSearchBy.map((key) => getNestedValue(key, item));
2232
+ return valuesForSearch
2233
+ .filter((value) => !!value)
2234
+ .map((value) => value.toString())
2235
+ .some((value) => value.toLocaleLowerCase().includes(searchText.toLocaleLowerCase()));
2236
+ });
2237
+ };
2134
2238
  function GetAllColumnsSorted(context) {
2135
2239
  const allColumns = BarsaApi.Common.Util.TryGetValue(context, 'Setting.View.Columns', []).filter((c) => c.Name !== 'Id' && c.Name !== '$StyleIndex' && !c.Hidden);
2136
2240
  const colList = BarsaApi.Common.Util.TryGetValue(context, 'Setting.View.GridSetting.ColSettingList', []);
@@ -3291,45 +3395,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
3291
3395
  }] });
3292
3396
 
3293
3397
  class SortPipe {
3294
- transform(value, sortOrder = 'asc', sortKey) {
3295
- sortOrder = sortOrder && sortOrder.toLowerCase();
3296
- if (!value || (sortOrder !== 'asc' && sortOrder !== 'desc')) {
3297
- return value;
3298
- }
3299
- let numberArray = [];
3300
- let stringArray = [];
3301
- if (!sortKey) {
3302
- numberArray = value.filter((item) => typeof item === 'number').sort();
3303
- stringArray = value.filter((item) => typeof item === 'string').sort();
3304
- }
3305
- else {
3306
- numberArray = value
3307
- .filter((item) => typeof item[sortKey] === 'number')
3308
- .sort((a, b) => a[sortKey] - b[sortKey]);
3309
- stringArray = value
3310
- .filter((item) => typeof item[sortKey] === 'string')
3311
- .sort((a, b) => {
3312
- if (a[sortKey] < b[sortKey]) {
3313
- return -1;
3314
- }
3315
- else if (a[sortKey] > b[sortKey]) {
3316
- return 1;
3317
- }
3318
- else {
3319
- return 0;
3320
- }
3321
- });
3398
+ transform(items, criteria) {
3399
+ if (!items?.length || !criteria?.length) {
3400
+ return items;
3322
3401
  }
3323
- const sorted = numberArray.concat(stringArray);
3324
- return sortOrder === 'asc' ? sorted : sorted.reverse();
3402
+ return [...items].sort(multilevelSort(criteria));
3325
3403
  }
3326
3404
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SortPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
3327
3405
  static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: SortPipe, isStandalone: false, name: "sort" }); }
3328
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SortPipe }); }
3329
3406
  }
3330
3407
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SortPipe, decorators: [{
3331
- type: Injectable
3332
- }, {
3333
3408
  type: Pipe,
3334
3409
  args: [{
3335
3410
  name: 'sort',
@@ -6355,7 +6430,7 @@ function reportRoutes(authGuard = false) {
6355
6430
  return {
6356
6431
  path: 'report/:id',
6357
6432
  canActivate: authGuard ? [AuthGuard] : [],
6358
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-pdaEOMh7.mjs').then((m) => m.BarsaReportPageModule),
6433
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-B2VQBo1M.mjs').then((m) => m.BarsaReportPageModule),
6359
6434
  resolve: {
6360
6435
  breadcrumb: ReportBreadcrumbResolver
6361
6436
  }
@@ -7471,6 +7546,7 @@ class UlvMainService {
7471
7546
  this._ulvHeightSizeTypeSource = new BehaviorSubject(UlvHeightSizeType.Default);
7472
7547
  this._ulvHeightSizeSource = new BehaviorSubject(0);
7473
7548
  this._toolbarSettingsSource = new BehaviorSubject(null);
7549
+ this._showToolbarBorderSource = new BehaviorSubject(false);
7474
7550
  this._viewSettingsSource = new BehaviorSubject({});
7475
7551
  this.context$ = this._contextSource
7476
7552
  .asObservable()
@@ -7726,6 +7802,12 @@ class UlvMainService {
7726
7802
  get shortCuts$() {
7727
7803
  return this._shortCutsSource.asObservable();
7728
7804
  }
7805
+ get showToolbarBorder$() {
7806
+ return this._showToolbarBorderSource.asObservable();
7807
+ }
7808
+ setToolbarBorder(showBorder) {
7809
+ this._showToolbarBorderSource.next(showBorder);
7810
+ }
7729
7811
  setToolbarSettings(toolbarSettings) {
7730
7812
  this._toolbarSettingsSource.next(toolbarSettings);
7731
7813
  }
@@ -11635,8 +11717,18 @@ class FilesValidationHelper {
11635
11717
  }
11636
11718
 
11637
11719
  class ReportViewBaseComponent extends BaseComponent {
11720
+ set containerWidth(val) {
11721
+ this._containerWidth = val;
11722
+ this._containerWidthChanged(val);
11723
+ }
11724
+ get showViewButton() {
11725
+ return this.canView && !this.inlineEditMode && !this.hideOpenIcon;
11726
+ }
11727
+ /**
11728
+ *
11729
+ */
11638
11730
  constructor() {
11639
- super(...arguments);
11731
+ super();
11640
11732
  this._reportView = true;
11641
11733
  this._visibility = 'hidden';
11642
11734
  this.rowActivable = true;
@@ -11667,6 +11759,7 @@ class ReportViewBaseComponent extends BaseComponent {
11667
11759
  this.mandatory = new EventEmitter();
11668
11760
  this.columnResized = new EventEmitter();
11669
11761
  this.hasDetailsInRow = new EventEmitter();
11762
+ this.isMobile = getDeviceIsMobile();
11670
11763
  this.canView = false;
11671
11764
  this.contextMenuWidth = 0;
11672
11765
  this.detailsColumns = [];
@@ -11685,13 +11778,14 @@ class ReportViewBaseComponent extends BaseComponent {
11685
11778
  this._firstVisible = false;
11686
11779
  this._onVisible$ = new Subject();
11687
11780
  this.$resize = new Subject();
11688
- }
11689
- set containerWidth(val) {
11690
- this._containerWidth = val;
11691
- this._containerWidthChanged(val);
11692
- }
11693
- get showViewButton() {
11694
- return this.canView && !this.inlineEditMode && !this.hideOpenIcon;
11781
+ this._scrollLayoutContext = inject(ScrollLayoutContextHolder, { optional: true });
11782
+ if (this._scrollLayoutContext) {
11783
+ effect(() => {
11784
+ this._scrollLayoutContext.mode();
11785
+ this._applyScrollLayoutForContextMode();
11786
+ this._cdr.markForCheck();
11787
+ });
11788
+ }
11695
11789
  }
11696
11790
  ngOnInit() {
11697
11791
  super.ngOnInit();
@@ -11726,6 +11820,10 @@ class ReportViewBaseComponent extends BaseComponent {
11726
11820
  .pipe(takeUntil$1(this._onDestroy$), skip(1), debounceTime$1(50))
11727
11821
  .subscribe(() => this.onResize());
11728
11822
  }
11823
+ ngAfterViewInit() {
11824
+ super.ngAfterViewInit();
11825
+ this._setHeight(this.parentHeight);
11826
+ }
11729
11827
  ngOnDestroy() {
11730
11828
  super.ngOnDestroy();
11731
11829
  this._ro?.disconnect();
@@ -11733,6 +11831,17 @@ class ReportViewBaseComponent extends BaseComponent {
11733
11831
  ngOnChanges(changes) {
11734
11832
  super.ngOnChanges(changes);
11735
11833
  let detectChanges = false;
11834
+ const { parentHeight, contentHeight, effectiveReportLayout } = changes;
11835
+ if (effectiveReportLayout) {
11836
+ this._applyScrollLayoutForContextMode();
11837
+ this._setHeight(this.parentHeight);
11838
+ }
11839
+ if (contentHeight && contentHeight.currentValue) {
11840
+ this._setHeight(contentHeight.currentValue, false);
11841
+ }
11842
+ if (parentHeight && !parentHeight.firstChange) {
11843
+ this._setHeight(parentHeight.currentValue);
11844
+ }
11736
11845
  Object.keys(changes).forEach((key) => {
11737
11846
  if (!changes[key].firstChange) {
11738
11847
  this[key] = changes[key].currentValue;
@@ -11835,12 +11944,35 @@ class ReportViewBaseComponent extends BaseComponent {
11835
11944
  _trackByRow(index, row) {
11836
11945
  return `${row.$Group ? row.$Group : row.Id}${index}`;
11837
11946
  }
11947
+ _setHeight(parentHeight, checkDialog = true) {
11948
+ if (this._effectiveScrollInheritsFromParent()) {
11949
+ this.height = 'auto';
11950
+ this._renderer2.setStyle(this._el.nativeElement, 'height', 'auto');
11951
+ return;
11952
+ }
11953
+ if (!this.isMobile && ((checkDialog && !this.inDialog) || !checkDialog)) {
11954
+ this.height = parentHeight ? `${parentHeight}px` : 'auto';
11955
+ this._renderer2.setStyle(this._el.nativeElement, 'height', this.height);
11956
+ this._ulvMainService.setHiddenOverflowContent(true);
11957
+ }
11958
+ }
11959
+ _scrollLayoutMode() {
11960
+ return this._scrollLayoutContext?.mode() ?? 'root';
11961
+ }
11962
+ /** Parent chain owns vertical scroll (nested form shell), or policy says `scroll: 'inherit'`. */
11963
+ _effectiveScrollInheritsFromParent() {
11964
+ if (this.effectiveReportLayout) {
11965
+ return this.effectiveReportLayout.scroll === 'inherit';
11966
+ }
11967
+ return this._scrollLayoutMode() === 'nested';
11968
+ }
11838
11969
  onVisible() {
11839
11970
  this._visibility = 'visible';
11840
11971
  this._renderer2.setStyle(this._el.nativeElement, 'visibility', 'visible');
11841
11972
  this._onVisible$.next();
11842
11973
  }
11843
11974
  onResize() { }
11975
+ _applyScrollLayoutForContextMode() { }
11844
11976
  _handleResize() {
11845
11977
  fromEvent(window, 'resize')
11846
11978
  .pipe(takeUntil$1(this._onDestroy$))
@@ -11882,7 +12014,7 @@ class ReportViewBaseComponent extends BaseComponent {
11882
12014
  }
11883
12015
  this.rowIndicator = Number(columns[0].MetaFieldTypeId) === 41;
11884
12016
  }
11885
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12017
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11886
12018
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: ReportViewBaseComponent, isStandalone: false, selector: "bnrc-report-view-base", inputs: { contextView: "contextView", viewSetting: "viewSetting", allColumns: "allColumns", isCheckList: "isCheckList", simpleInlineEdit: "simpleInlineEdit", inlineEditWithoutSelection: "inlineEditWithoutSelection", hideToolbar: "hideToolbar", hideTitle: "hideTitle", toolbarButtons: "toolbarButtons", allChecked: "allChecked", moDataList: "moDataList", UlvMainCtrlr: "UlvMainCtrlr", access: "access", groupby: "groupby", selectedCount: "selectedCount", conditionalFormats: "conditionalFormats", parentHeight: "parentHeight", deviceName: "deviceName", deviceSize: "deviceSize", contextMenuItems: "contextMenuItems", columns: "columns", allowInlineEdit: "allowInlineEdit", secondaryColumns: "secondaryColumns", popin: "popin", customFieldInfo: "customFieldInfo", hasSummary: "hasSummary", layoutInfo: "layoutInfo", hasSelected: "hasSelected", hideIcon: "hideIcon", columnsCount: "columnsCount", hideOpenIcon: "hideOpenIcon", openOnClick: "openOnClick", typeDefId: "typeDefId", reportId: "reportId", listEditViewId: "listEditViewId", typeViewId: "typeViewId", extraRelation: "extraRelation", relationList: "relationList", disableResponsive: "disableResponsive", rowItem: "rowItem", mobileOrTablet: "mobileOrTablet", inDialog: "inDialog", isMultiSelect: "isMultiSelect", fullscreen: "fullscreen", hideSearchpanel: "hideSearchpanel", newInlineEditMo: "newInlineEditMo", selectedMo: "selectedMo", inlineEditMode: "inlineEditMode", onlyInlineEdit: "onlyInlineEdit", rowHoverable: "rowHoverable", groupSummary: "groupSummary", tlbButtons: "tlbButtons", formSetting: "formSetting", disableOverflowContextMenu: "disableOverflowContextMenu", rowActivable: "rowActivable", isReportPage: "isReportPage", ulvHeightSizeType: "ulvHeightSizeType", contentHeight: "contentHeight", alternateEditObjectColumn: "alternateEditObjectColumn", disableHyperLink: "disableHyperLink", columnsHyperLink: "columnsHyperLink", effectiveReportLayout: "effectiveReportLayout", contentDensity: "contentDensity", rtl: "rtl", showOkCancelButtons: "showOkCancelButtons", title: "title", hasInlineDeleteButton: "hasInlineDeleteButton", hasInlineEditButton: "hasInlineEditButton", contextSetting: "contextSetting", gridFreeColumnSizing: "gridFreeColumnSizing", navigationArrow: "navigationArrow", cartableTemplates: "cartableTemplates", cartableChildsMo: "cartableChildsMo", pagingSetting: "pagingSetting", containerWidth: "containerWidth" }, outputs: { columnSummary: "columnSummary", escapeKey: "escapeKey", resetWorkflowState: "resetWorkflowState", deselectAll: "deselectAll", editFormPanelCancel: "editFormPanelCancel", editFormPanelSave: "editFormPanelSave", selectNextInlineRecord: "selectNextInlineRecord", editFormPanelValueChange: "editFormPanelValueChange", ulvCommandClick: "ulvCommandClick", sortAscending: "sortAscending", workflowShareButtons: "workflowShareButtons", sortDescending: "sortDescending", filter: "filter", executeToolbarButton: "executeToolbarButton", resetGridSettings: "resetGridSettings", sortSettingsChange: "sortSettingsChange", rowCheck: "rowCheck", rowClick: "rowClick", cartableFormClosed: "cartableFormClosed", createNewMo: "createNewMo", updateMo: "updateMo", expandClick: "expandClick", trackBySelectedFn: "trackBySelectedFn", allCheckbox: "allCheckbox", mandatory: "mandatory", columnResized: "columnResized", hasDetailsInRow: "hasDetailsInRow" }, host: { properties: { "class.report-view": "this._reportView", "style.visibility": "this._visibility" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
11887
12019
  }
11888
12020
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, decorators: [{
@@ -11893,7 +12025,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
11893
12025
  changeDetection: ChangeDetectionStrategy.OnPush,
11894
12026
  standalone: false
11895
12027
  }]
11896
- }], propDecorators: { _reportView: [{
12028
+ }], ctorParameters: () => [], propDecorators: { _reportView: [{
11897
12029
  type: HostBinding,
11898
12030
  args: ['class.report-view']
11899
12031
  }], _visibility: [{
@@ -13546,6 +13678,7 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
13546
13678
  this.sectionClass = true;
13547
13679
  this.ismodal = false;
13548
13680
  this.isinsideview = false;
13681
+ this.isMobile = getDeviceIsMobile();
13549
13682
  this._scrollLayoutContext = inject(ScrollLayoutContextHolder);
13550
13683
  }
13551
13684
  ngOnInit() {
@@ -13585,6 +13718,7 @@ class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponent {
13585
13718
  <div
13586
13719
  class="tw-flex tw-h-full tw-w-full tw-flex-col md:tw-flex-row tw-p-2"
13587
13720
  fillEmptySpace
13721
+ [disable]="isMobile"
13588
13722
  style="box-sizing: border-box;"
13589
13723
  >
13590
13724
  <!-- لیست -->
@@ -13610,6 +13744,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13610
13744
  <div
13611
13745
  class="tw-flex tw-h-full tw-w-full tw-flex-col md:tw-flex-row tw-p-2"
13612
13746
  fillEmptySpace
13747
+ [disable]="isMobile"
13613
13748
  style="box-sizing: border-box;"
13614
13749
  >
13615
13750
  <!-- لیست -->
@@ -14990,7 +15125,7 @@ class DynamicUlvToolbarComponent extends BaseDynamicComponent {
14990
15125
  }
14991
15126
  }
14992
15127
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicUlvToolbarComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14993
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicUlvToolbarComponent, isStandalone: false, selector: "bnrc-dynamic-ulv-toolbar-component", inputs: { viewSettings: "viewSettings", allowGridColumnSort: "allowGridColumnSort", useLayoutItemTextForControl: "useLayoutItemTextForControl", enableSearch: "enableSearch", hideTitle: "hideTitle", title: "title", icon: "icon", deviceName: "deviceName", deviceSize: "deviceSize", access: "access", hideToolbar: "hideToolbar", toolbarButtons: "toolbarButtons", contentDensity: "contentDensity", inlineEditMode: "inlineEditMode", allowInlineEdit: "allowInlineEdit", gridSetting: "gridSetting", viewCollection: "viewCollection", toolbarButtonsReportView: "toolbarButtonsReportView", reportView: "reportView", inDialog: "inDialog", isMultiSelect: "isMultiSelect", cls: "cls", hasSelected: "hasSelected", config: "config", hidden: "hidden", buttons: "buttons", moDataListCount: "moDataListCount" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
15128
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicUlvToolbarComponent, isStandalone: false, selector: "bnrc-dynamic-ulv-toolbar-component", inputs: { viewSettings: "viewSettings", allowGridColumnSort: "allowGridColumnSort", useLayoutItemTextForControl: "useLayoutItemTextForControl", enableSearch: "enableSearch", hideTitle: "hideTitle", title: "title", icon: "icon", deviceName: "deviceName", deviceSize: "deviceSize", access: "access", hideToolbar: "hideToolbar", toolbarButtons: "toolbarButtons", contentDensity: "contentDensity", inlineEditMode: "inlineEditMode", allowInlineEdit: "allowInlineEdit", gridSetting: "gridSetting", viewCollection: "viewCollection", toolbarButtonsReportView: "toolbarButtonsReportView", reportView: "reportView", inDialog: "inDialog", isMultiSelect: "isMultiSelect", cls: "cls", hasSelected: "hasSelected", config: "config", hidden: "hidden", buttons: "buttons", moDataListCount: "moDataListCount", showToolbarBorder: "showToolbarBorder" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14994
15129
  }
14995
15130
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicUlvToolbarComponent, decorators: [{
14996
15131
  type: Component,
@@ -15054,6 +15189,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
15054
15189
  type: Input
15055
15190
  }], moDataListCount: [{
15056
15191
  type: Input
15192
+ }], showToolbarBorder: [{
15193
+ type: Input
15057
15194
  }] } });
15058
15195
 
15059
15196
  class DynamicUlvPagingComponent extends BaseDynamicComponent {
@@ -17907,16 +18044,19 @@ class MoLinkerDirective extends BaseDirective {
17907
18044
  if (!this._routingService) {
17908
18045
  return;
17909
18046
  }
17910
- if (!this.disableHyperLink()) {
17911
- this._renderer2.addClass(this._el.nativeElement, 'mo-linker');
17912
- // ۱. ساختن روت محلی (وابسته به روت فعلی) برای کلیک‌های معمولی
17913
- this._localUrlTree = this.buildLocalUrlTree(this._routingService.isFirstPage, this.alternateEditObjectColumn());
17914
- // ۲. ساختن روت تب جدید (از ریشه اصلی / بدون ActivatedRoute) و ست کردن روی href
17915
- const newTabUrl = this.buildNewTabUrl();
17916
- if (newTabUrl) {
17917
- // فرض بر HashLocationStrategy (دارای #) است؛ اگر پراجکت شما بدون هشتگ است، '#' + را پاک کنید
17918
- this._renderer2.setAttribute(this._el.nativeElement, 'href', '#' + newTabUrl);
17919
- }
18047
+ this._prepareHypelink(this.disableHyperLink(), this._routingService.isFirstPage);
18048
+ }
18049
+ ngOnChanges(changes) {
18050
+ super.ngOnChanges(changes);
18051
+ const { disableHyperLink } = changes;
18052
+ if (disableHyperLink && !disableHyperLink.firstChange) {
18053
+ this._routingService &&
18054
+ this._prepareHypelink(disableHyperLink.currentValue, this._routingService.isFirstPage);
18055
+ }
18056
+ }
18057
+ onAuxClick(event) {
18058
+ if (event.button === 1) {
18059
+ return;
17920
18060
  }
17921
18061
  }
17922
18062
  // گوش دادن به رویداد کلیک
@@ -17925,7 +18065,7 @@ class MoLinkerDirective extends BaseDirective {
17925
18065
  return;
17926
18066
  }
17927
18067
  // تشخیص کلیک برای تب جدید (Ctrl, Cmd, Shift یا کلیک وسط)
17928
- const isNewTabModifier = event.ctrlKey || event.metaKey || event.shiftKey || event.button === 1;
18068
+ const isNewTabModifier = event.ctrlKey || event.metaKey || event.shiftKey || event.altKey || event.button !== 0;
17929
18069
  if (isNewTabModifier) {
17930
18070
  // هیچ کاری نکن! بگذار مرورگر به طور طبیعی آدرس href (یعنی روت ریشه /landingpage) را در تب جدید باز کند
17931
18071
  return;
@@ -17937,6 +18077,23 @@ class MoLinkerDirective extends BaseDirective {
17937
18077
  this._router.navigateByUrl(this._localUrlTree);
17938
18078
  }
17939
18079
  }
18080
+ _prepareHypelink(disableHyperLink, isFirstPage) {
18081
+ if (!disableHyperLink) {
18082
+ this._renderer2.addClass(this._el.nativeElement, 'mo-linker');
18083
+ // ۱. ساختن روت محلی (وابسته به روت فعلی) برای کلیک‌های معمولی
18084
+ this._localUrlTree = this.buildLocalUrlTree(isFirstPage, this.alternateEditObjectColumn());
18085
+ // ۲. ساختن روت تب جدید (از ریشه اصلی / بدون ActivatedRoute) و ست کردن روی href
18086
+ const newTabUrl = this.buildNewTabUrl();
18087
+ if (newTabUrl) {
18088
+ // فرض بر HashLocationStrategy (دارای #) است؛ اگر پراجکت شما بدون هشتگ است، '#' + را پاک کنید
18089
+ this._renderer2.setAttribute(this._el.nativeElement, 'href', '#' + newTabUrl);
18090
+ }
18091
+ }
18092
+ else {
18093
+ this._renderer2.removeClass(this._el.nativeElement, 'mo-linker');
18094
+ this._renderer2.removeAttribute(this._el.nativeElement, 'href');
18095
+ }
18096
+ }
17940
18097
  /**
17941
18098
  * ساخت آدرس برای تب جدید: کاملاً مستقل از ریشه اصلی سایت (بدون relativeTo)
17942
18099
  */
@@ -17981,7 +18138,7 @@ class MoLinkerDirective extends BaseDirective {
17981
18138
  });
17982
18139
  }
17983
18140
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: MoLinkerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
17984
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.6", type: MoLinkerDirective, isStandalone: false, selector: "[moLinker]", inputs: { moLinker: { classPropertyName: "moLinker", publicName: "moLinker", isSignal: true, isRequired: true, transformFunction: null }, alternateEditObjectColumn: { classPropertyName: "alternateEditObjectColumn", publicName: "alternateEditObjectColumn", isSignal: true, isRequired: true, transformFunction: null }, disableHyperLink: { classPropertyName: "disableHyperLink", publicName: "disableHyperLink", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "click": "onClick($event)" } }, usesInheritance: true, ngImport: i0 }); }
18141
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.6", type: MoLinkerDirective, isStandalone: false, selector: "[moLinker]", inputs: { moLinker: { classPropertyName: "moLinker", publicName: "moLinker", isSignal: true, isRequired: true, transformFunction: null }, alternateEditObjectColumn: { classPropertyName: "alternateEditObjectColumn", publicName: "alternateEditObjectColumn", isSignal: true, isRequired: true, transformFunction: null }, disableHyperLink: { classPropertyName: "disableHyperLink", publicName: "disableHyperLink", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "auxclick": "onAuxClick($event)", "click": "onClick($event)" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
17985
18142
  }
17986
18143
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: MoLinkerDirective, decorators: [{
17987
18144
  type: Directive,
@@ -17989,7 +18146,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
17989
18146
  selector: '[moLinker]',
17990
18147
  standalone: false
17991
18148
  }]
17992
- }], propDecorators: { onClick: [{
18149
+ }], propDecorators: { onAuxClick: [{
18150
+ type: HostListener,
18151
+ args: ['auxclick', ['$event']]
18152
+ }], onClick: [{
17993
18153
  type: HostListener,
17994
18154
  args: ['click', ['$event']]
17995
18155
  }] } });
@@ -20094,5 +20254,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
20094
20254
  * Generated bundle index. Do not edit.
20095
20255
  */
20096
20256
 
20097
- 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, MoInfoUlvPagingPipe 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, 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_, 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, MoLinkerDirective 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, ApplicationCtrlrService 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, ContainerService as bA, HorizontalLayoutService as bB, LayoutService as bC, LogService as bD, PortalService as bE, UiService as bF, UlvMainService as bG, UploadService as bH, NetworkStatusService as bI, AudioRecordingService as bJ, VideoRecordingService as bK, LocalStorageService as bL, IndexedDbService as bM, BarsaStorageService as bN, PromptUpdateService as bO, NotificationService as bP, ServiceWorkerNotificationService as bQ, ColumnService as bR, ServiceWorkerCommuncationService as bS, SaveScrollPositionService as bT, RoutingService as bU, GroupByService as bV, LayoutMainContentService as bW, TabpageService as bX, InMemoryStorageService as bY, ScrollLayoutContextHolder as bZ, ShellbarHeightService 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, GetCssVariableValuePipe as bq, FindColumnsPipe as br, ExistsColumnsPipe as bs, ApiService as bt, BreadcrumbService as bu, CustomInjector as bv, DialogParams as bw, BarsaDialogService as bx, FormPanelService as by, FormService as bz, BaseDynamicComponent as c, LinearListControlInfoModel as c$, PushCheckService as c0, IdbService as c1, RUNTIME_NAV_STATE_SCHEMA_V1 as c2, buildRuntimeNavStateCacheKey as c3, RuntimeNavStateCacheService as c4, PushNotificationService as c5, CardViewService as c6, BaseSettingsService as c7, SimpleTemplateEngine as c8, TEMPLATE_ENGINE as c9, APP_VERSION as cA, DIALOG_SERVICE as cB, FORM_DIALOG_COMPONENT as cC, NOTIFICATAION_POPUP_SERVER as cD, TOAST_SERVICE as cE, NOTIFICATION_WEBWORKER_FACTORY as cF, GeneralControlInfoModel as cG, StringControlInfoModel as cH, RichStringControlInfoModel as cI, NumberControlInfoModel as cJ, FilePictureInfoModel as cK, FileControlInfoModel as cL, CommandControlInfoModel as cM, IconControlInfoModel as cN, PictureFileControlInfoModel as cO, GaugeControlInfoModel as cP, RelationListControlInfoModel as cQ, HistoryControlInfoModel as cR, RabetehAkseTakiListiControlInfoModel as cS, RelatedReportControlInfoModel as cT, CodeEditorControlInfoModel as cU, EnumControlInfoModel as cV, RowDataOption as cW, DateTimeControlInfoModel as cX, BoolControlInfoModel as cY, CalculateControlInfoModel as cZ, SubformControlInfoModel as c_, PortalDynamicPageResolver as ca, PortalFormPageResolver as cb, PortalPageResolver as cc, PortalReportPageResolver as cd, TileGroupBreadcrumResolver as ce, LoginSettingsResolver as cf, ReportBreadcrumbResolver as cg, DateService as ch, DateHijriService as ci, DateMiladiService as cj, DateShamsiService as ck, EntitySettingsStore as cl, CalendarSettingsStore as cm, FormNewComponent as cn, ReportContainerComponent as co, FormComponent as cp, FieldUiComponent as cq, BarsaSapUiFormPageModule as cr, ReportNavigatorComponent as cs, BaseController as ct, FieldBaseController as cu, ViewBase as cv, ModalRootComponent as cw, ButtonLoadingComponent as cx, UnlimitSessionComponent as cy, SplitterComponent as cz, DynamicFormComponent as d, calcContextMenuWidth as d$, ListRelationModel as d0, SingleRelationControlInfoModel as d1, MetaobjectDataModel as d2, MoForReportModelBase as d3, MoForReportModel as d4, ReportBaseInfo as d5, FormToolbarButton as d6, ReportExtraInfo as d7, MetaobjectRelationModel as d8, FieldInfoTypeEnum as d9, ApplicationBaseComponent as dA, LayoutItemBaseComponent as dB, LayoutPanelBaseComponent as dC, PageBaseComponent as dD, NumberBaseComponent as dE, FilesValidationHelper as dF, BarsaApi as dG, ReportViewBaseComponent as dH, FormPropsBaseComponent as dI, LinearListHelper as dJ, PageWithFormHandlerBaseComponent as dK, FormPageBaseComponent as dL, FormPageComponent as dM, BaseColumnPropsComponent as dN, TilePropsComponent as dO, FormFieldReportPageComponent as dP, ColumnRendererBase as dQ, ColumnRendererViewBase as dR, BaseUlvSettingComponent as dS, TableHeaderWidthMode as dT, setTableThWidth as dU, calculateColumnContent as dV, calculateColumnWidth as dW, setColumnWidthByMaxMoContentWidth as dX, calculateMoDataListContentWidthByColumnName as dY, calculateFreeColumnSize as dZ, calculateColumnWidthFitToContainer as d_, BaseReportModel as da, DefaultCommandsAccessValue as db, CustomCommand as dc, ReportModel as dd, ReportListModel as de, ReportFormModel as df, ReportCalendarModel as dg, ReportTreeModel as dh, ReportViewColumn as di, DefaultGridSetting as dj, GridSetting as dk, ColSetting as dl, SortSetting as dm, ReportField as dn, DateRanges as dp, SortDirection as dq, SelectionMode as dr, UlvHeightSizeType as ds, FieldBaseComponent as dt, FieldViewBase as du, FormBaseComponent as dv, FormToolbarBaseComponent as dw, SystemBaseComponent as dx, ReportBaseComponent as dy, ReportItemBaseComponent as dz, DynamicItemComponent as e, isTargetWindow as e$, RotateImage as e0, isInLocalMode as e1, getLabelWidth as e2, getColumnValueOfMoDataList as e3, throwIfAlreadyLoaded as e4, measureText2 as e5, measureText as e6, measureTextBy as e7, genrateInlineMoId as e8, enumValueToStringSize as e9, getControlSizeMode as eA, formatBytes as eB, getValidExtension as eC, getIcon as eD, isImage as eE, GetAllColumnsSorted as eF, GetVisibleValue as eG, GroupBy as eH, FindGroup as eI, FillAllLayoutControls as eJ, FindToolbarItem as eK, FindLayoutSettingFromLayout94 as eL, GetAllHorizontalFromLayout94 as eM, getGridSettings as eN, getResetGridSettings as eO, GetDefaultMoObjectInfo as eP, getLayout94ObjectInfo as eQ, getFormSettings as eR, createFormPanelMetaConditions as eS, getNewMoGridEditor as eT, createGridEditorFormPanel as eU, getLayoutControl as eV, getControlList as eW, shallowEqual as eX, toNumber as eY, InputNumber as eZ, AffixRespondEvents as e_, isVersionBiggerThan as ea, compareVersions as eb, scrollToElement as ec, executeUlvCommandHandler as ed, getUniqueId as ee, getDateService as ef, getAllItemsPerChildren as eg, setOneDepthLevel as eh, isFirefox as ei, getImagePath as ej, checkPermission as ek, fixUnclosedParentheses as el, isFunction as em, DeviceWidth as en, getHeaderValue as eo, elementInViewport2 as ep, PreventDefaulEvent as eq, stopPropagation as er, getParentHeight as es, getComponentDefined as et, isSafari as eu, isFF as ev, getDeviceIsPhone as ew, getDeviceIsDesktop as ex, getDeviceIsTablet as ey, getDeviceIsMobile as ez, formRoutes as f, getTargetRect as f0, getFieldValue as f1, availablePrefixes as f2, requestAnimationFramePolyfill as f3, ExecuteDynamicCommand as f4, ExecuteWorkflowChoiceDef as f5, getRequestAnimationFrame as f6, cancelRequestAnimationFrame as f7, easeInOutCubic as f8, WordMimeType as f9, AddDynamicFormStyles as fA, RemoveDynamicFormStyles as fB, ContainerComponent as fC, IntersectionStatus as fD, fromIntersectionObserver as fE, CustomRouteReuseStrategy as fF, AuthGuard as fG, RedirectHomeGuard as fH, RootPageComponent as fI, ResizableComponent as fJ, ResizableDirective as fK, ResizableModule as fL, PushBannerComponent as fM, REPORT_GRID_VIEWPORT_CLASS as fN, DEFAULT_REPORT_LAYOUT_POLICY as fO, REPORT_TYPE_DEFAULT_POLICIES as fP, scrollLayoutModeToContextEnvironment as fQ, contextDefaultsFromEnvironment as fR, resolveFinalScroll as fS, resolveReportLayoutPolicy as fT, getReportTypeDefaultPolicy as fU, extractLayoutPolicyFromView as fV, BarsaNovinRayCoreModule as fW, ImageMimeType as fa, PdfMimeType as fb, AllFilesMimeType as fc, VideoMimeType as fd, AudioMimeType as fe, MimeTypes as ff, GetContentType as fg, GetViewableExtensions as fh, ChangeLayoutInfoCustomUi as fi, mobile_regex as fj, number_only as fk, forbiddenValidator as fl, GetImgTags as fm, ImagetoPrint as fn, PrintImage as fo, SaveImageToFile as fp, validateAllFormFields as fq, getFocusableTagNames as fr, addCssVariableToRoot as fs, flattenTree as ft, IsDarkMode as fu, nullOrUndefinedString as fv, fromEntries as fw, bodyClick as fx, removeDynamicStyle as fy, addDynamicVariableTo 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 };
20098
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-BhKR992Z.mjs.map
20257
+ 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, MoInfoUlvPagingPipe 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, 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_, 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, MoLinkerDirective 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, ApplicationCtrlrService 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, ContainerService as bA, HorizontalLayoutService as bB, LayoutService as bC, LogService as bD, PortalService as bE, UiService as bF, UlvMainService as bG, UploadService as bH, NetworkStatusService as bI, AudioRecordingService as bJ, VideoRecordingService as bK, LocalStorageService as bL, IndexedDbService as bM, BarsaStorageService as bN, PromptUpdateService as bO, NotificationService as bP, ServiceWorkerNotificationService as bQ, ColumnService as bR, ServiceWorkerCommuncationService as bS, SaveScrollPositionService as bT, RoutingService as bU, GroupByService as bV, LayoutMainContentService as bW, TabpageService as bX, InMemoryStorageService as bY, ScrollLayoutContextHolder as bZ, ShellbarHeightService 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, GetCssVariableValuePipe as bq, FindColumnsPipe as br, ExistsColumnsPipe as bs, ApiService as bt, BreadcrumbService as bu, CustomInjector as bv, DialogParams as bw, BarsaDialogService as bx, FormPanelService as by, FormService as bz, BaseDynamicComponent as c, LinearListControlInfoModel as c$, PushCheckService as c0, IdbService as c1, RUNTIME_NAV_STATE_SCHEMA_V1 as c2, buildRuntimeNavStateCacheKey as c3, RuntimeNavStateCacheService as c4, PushNotificationService as c5, CardViewService as c6, BaseSettingsService as c7, SimpleTemplateEngine as c8, TEMPLATE_ENGINE as c9, APP_VERSION as cA, DIALOG_SERVICE as cB, FORM_DIALOG_COMPONENT as cC, NOTIFICATAION_POPUP_SERVER as cD, TOAST_SERVICE as cE, NOTIFICATION_WEBWORKER_FACTORY as cF, GeneralControlInfoModel as cG, StringControlInfoModel as cH, RichStringControlInfoModel as cI, NumberControlInfoModel as cJ, FilePictureInfoModel as cK, FileControlInfoModel as cL, CommandControlInfoModel as cM, IconControlInfoModel as cN, PictureFileControlInfoModel as cO, GaugeControlInfoModel as cP, RelationListControlInfoModel as cQ, HistoryControlInfoModel as cR, RabetehAkseTakiListiControlInfoModel as cS, RelatedReportControlInfoModel as cT, CodeEditorControlInfoModel as cU, EnumControlInfoModel as cV, RowDataOption as cW, DateTimeControlInfoModel as cX, BoolControlInfoModel as cY, CalculateControlInfoModel as cZ, SubformControlInfoModel as c_, PortalDynamicPageResolver as ca, PortalFormPageResolver as cb, PortalPageResolver as cc, PortalReportPageResolver as cd, TileGroupBreadcrumResolver as ce, LoginSettingsResolver as cf, ReportBreadcrumbResolver as cg, DateService as ch, DateHijriService as ci, DateMiladiService as cj, DateShamsiService as ck, EntitySettingsStore as cl, CalendarSettingsStore as cm, FormNewComponent as cn, ReportContainerComponent as co, FormComponent as cp, FieldUiComponent as cq, BarsaSapUiFormPageModule as cr, ReportNavigatorComponent as cs, BaseController as ct, FieldBaseController as cu, ViewBase as cv, ModalRootComponent as cw, ButtonLoadingComponent as cx, UnlimitSessionComponent as cy, SplitterComponent as cz, DynamicFormComponent as d, calcContextMenuWidth as d$, ListRelationModel as d0, SingleRelationControlInfoModel as d1, MetaobjectDataModel as d2, MoForReportModelBase as d3, MoForReportModel as d4, ReportBaseInfo as d5, FormToolbarButton as d6, ReportExtraInfo as d7, MetaobjectRelationModel as d8, FieldInfoTypeEnum as d9, ApplicationBaseComponent as dA, LayoutItemBaseComponent as dB, LayoutPanelBaseComponent as dC, PageBaseComponent as dD, NumberBaseComponent as dE, FilesValidationHelper as dF, BarsaApi as dG, ReportViewBaseComponent as dH, FormPropsBaseComponent as dI, LinearListHelper as dJ, PageWithFormHandlerBaseComponent as dK, FormPageBaseComponent as dL, FormPageComponent as dM, BaseColumnPropsComponent as dN, TilePropsComponent as dO, FormFieldReportPageComponent as dP, ColumnRendererBase as dQ, ColumnRendererViewBase as dR, BaseUlvSettingComponent as dS, TableHeaderWidthMode as dT, setTableThWidth as dU, calculateColumnContent as dV, calculateColumnWidth as dW, setColumnWidthByMaxMoContentWidth as dX, calculateMoDataListContentWidthByColumnName as dY, calculateFreeColumnSize as dZ, calculateColumnWidthFitToContainer as d_, BaseReportModel as da, DefaultCommandsAccessValue as db, CustomCommand as dc, ReportModel as dd, ReportListModel as de, ReportFormModel as df, ReportCalendarModel as dg, ReportTreeModel as dh, ReportViewColumn as di, DefaultGridSetting as dj, GridSetting as dk, ColSetting as dl, SortSetting as dm, ReportField as dn, DateRanges as dp, SortDirection as dq, SelectionMode as dr, UlvHeightSizeType as ds, FieldBaseComponent as dt, FieldViewBase as du, FormBaseComponent as dv, FormToolbarBaseComponent as dw, SystemBaseComponent as dx, ReportBaseComponent as dy, ReportItemBaseComponent as dz, DynamicItemComponent as e, getControlList as e$, RotateImage as e0, isInLocalMode as e1, getLabelWidth as e2, getColumnValueOfMoDataList as e3, throwIfAlreadyLoaded as e4, measureText2 as e5, measureText as e6, measureTextBy as e7, genrateInlineMoId as e8, enumValueToStringSize as e9, getControlSizeMode as eA, formatBytes as eB, getValidExtension as eC, getIcon as eD, isImage as eE, getNestedValue as eF, sort as eG, sortEx as eH, multilevelSort as eI, searchEx as eJ, GetAllColumnsSorted as eK, GetVisibleValue as eL, GroupBy as eM, FindGroup as eN, FillAllLayoutControls as eO, FindToolbarItem as eP, FindLayoutSettingFromLayout94 as eQ, GetAllHorizontalFromLayout94 as eR, getGridSettings as eS, getResetGridSettings as eT, GetDefaultMoObjectInfo as eU, getLayout94ObjectInfo as eV, getFormSettings as eW, createFormPanelMetaConditions as eX, getNewMoGridEditor as eY, createGridEditorFormPanel as eZ, getLayoutControl as e_, isVersionBiggerThan as ea, compareVersions as eb, scrollToElement as ec, executeUlvCommandHandler as ed, getUniqueId as ee, getDateService as ef, getAllItemsPerChildren as eg, setOneDepthLevel as eh, isFirefox as ei, getImagePath as ej, checkPermission as ek, fixUnclosedParentheses as el, isFunction as em, DeviceWidth as en, getHeaderValue as eo, elementInViewport2 as ep, PreventDefaulEvent as eq, stopPropagation as er, getParentHeight as es, getComponentDefined as et, isSafari as eu, isFF as ev, getDeviceIsPhone as ew, getDeviceIsDesktop as ex, getDeviceIsTablet as ey, getDeviceIsMobile as ez, formRoutes as f, BarsaNovinRayCoreModule as f$, shallowEqual as f0, toNumber as f1, InputNumber as f2, AffixRespondEvents as f3, isTargetWindow as f4, getTargetRect as f5, getFieldValue as f6, availablePrefixes as f7, requestAnimationFramePolyfill as f8, ExecuteDynamicCommand as f9, nullOrUndefinedString as fA, fromEntries as fB, bodyClick as fC, removeDynamicStyle as fD, addDynamicVariableTo as fE, AddDynamicFormStyles as fF, RemoveDynamicFormStyles as fG, ContainerComponent as fH, IntersectionStatus as fI, fromIntersectionObserver as fJ, CustomRouteReuseStrategy as fK, AuthGuard as fL, RedirectHomeGuard as fM, RootPageComponent as fN, ResizableComponent as fO, ResizableDirective as fP, ResizableModule as fQ, PushBannerComponent as fR, REPORT_GRID_VIEWPORT_CLASS as fS, DEFAULT_REPORT_LAYOUT_POLICY as fT, REPORT_TYPE_DEFAULT_POLICIES as fU, scrollLayoutModeToContextEnvironment as fV, contextDefaultsFromEnvironment as fW, resolveFinalScroll as fX, resolveReportLayoutPolicy as fY, getReportTypeDefaultPolicy as fZ, extractLayoutPolicyFromView as f_, ExecuteWorkflowChoiceDef as fa, getRequestAnimationFrame as fb, cancelRequestAnimationFrame as fc, easeInOutCubic as fd, WordMimeType as fe, ImageMimeType as ff, PdfMimeType as fg, AllFilesMimeType as fh, VideoMimeType as fi, AudioMimeType as fj, MimeTypes as fk, GetContentType as fl, GetViewableExtensions as fm, ChangeLayoutInfoCustomUi as fn, mobile_regex as fo, number_only as fp, forbiddenValidator as fq, GetImgTags as fr, ImagetoPrint as fs, PrintImage as ft, SaveImageToFile as fu, validateAllFormFields as fv, getFocusableTagNames as fw, addCssVariableToRoot as fx, flattenTree as fy, IsDarkMode 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 };
20258
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-BL2Pra22.mjs.map