barsa-novin-ray-core 2.2.71 → 2.2.73

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.
Files changed (30) hide show
  1. package/esm2022/lib/abstract-classes/models.mjs +1 -1
  2. package/esm2022/lib/abstract-classes/report-base.mjs +2 -1
  3. package/esm2022/lib/abstract-classes/report-view-base.component.mjs +12 -4
  4. package/esm2022/lib/abstract-classes/tile-props.mjs +4 -2
  5. package/esm2022/lib/barsa-novin-ray-core.module.mjs +15 -9
  6. package/esm2022/lib/constants.mjs +3 -3
  7. package/esm2022/lib/directives/index.mjs +2 -1
  8. package/esm2022/lib/directives/splide-slider.directive.mjs +113 -0
  9. package/esm2022/lib/form/form.component.mjs +8 -7
  10. package/esm2022/lib/pipes/card-media-size.pipe.mjs +21 -0
  11. package/esm2022/lib/pipes/index.mjs +2 -1
  12. package/esm2022/lib/root-portal/root-portal.component.mjs +25 -7
  13. package/esm2022/lib/services/portal.service.mjs +5 -1
  14. package/esm2022/lib/services/ulvmain.service.mjs +8 -1
  15. package/fesm2022/barsa-novin-ray-core.mjs +198 -24
  16. package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
  17. package/lib/abstract-classes/models.d.ts +8 -0
  18. package/lib/abstract-classes/report-base.d.ts +2 -1
  19. package/lib/abstract-classes/report-view-base.component.d.ts +2 -0
  20. package/lib/abstract-classes/tile-props.d.ts +2 -1
  21. package/lib/barsa-novin-ray-core.module.d.ts +43 -41
  22. package/lib/directives/index.d.ts +1 -0
  23. package/lib/directives/splide-slider.directive.d.ts +39 -0
  24. package/lib/form/form.component.d.ts +2 -2
  25. package/lib/pipes/card-media-size.pipe.d.ts +8 -0
  26. package/lib/pipes/index.d.ts +1 -0
  27. package/lib/root-portal/root-portal.component.d.ts +2 -0
  28. package/lib/services/portal.service.d.ts +3 -0
  29. package/lib/services/ulvmain.service.d.ts +4 -1
  30. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, inject, ElementRef, SkipSelf, NgModuleFactory, Inject, Pipe, EventEmitter, Self, Output, HostBinding, ChangeDetectorRef, HostListener, ViewContainerRef, ViewChild, Directive, signal, Renderer2, input, Injector, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, APP_INITIALIZER, ErrorHandler } from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, inject, ElementRef, SkipSelf, NgModuleFactory, Inject, Pipe, EventEmitter, Self, Output, HostBinding, ChangeDetectorRef, HostListener, ViewContainerRef, ViewChild, signal, Directive, Renderer2, input, Injector, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, APP_INITIALIZER, ErrorHandler } from '@angular/core';
3
3
  import { Subject, from, BehaviorSubject, of, combineLatest, fromEvent, forkJoin, throwError, merge, interval, filter as filter$1, tap as tap$1, concatMap as concatMap$1, catchError as catchError$1, finalize as finalize$1, Observable, takeUntil as takeUntil$1, exhaustMap as exhaustMap$1, timer, debounceTime as debounceTime$1, mergeWith } from 'rxjs';
4
4
  import * as i1 from '@angular/router';
5
5
  import { NavigationEnd, ActivatedRoute, Router, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
@@ -19,6 +19,7 @@ import * as i4 from '@angular/platform-browser';
19
19
  import { Title } from '@angular/platform-browser';
20
20
  import RecordRTC from 'recordrtc';
21
21
  import * as i2$1 from '@angular/service-worker';
22
+ import Splide from '@splidejs/splide';
22
23
 
23
24
  class BarsaApi {
24
25
  static { this.idGenerator = -10000; }
@@ -1692,8 +1693,8 @@ function getImagePath(type, moId, fileId, fieldDefId, size, sizeH) {
1692
1693
  moId = moId == null ? '' : encodeURIComponent(moId);
1693
1694
  fileId = fileId == null ? '' : encodeURIComponent(fileId);
1694
1695
  fieldDefId = fieldDefId == null ? '' : encodeURIComponent(fieldDefId);
1695
- size = size == null ? 128 : size;
1696
- sizeH = sizeH == null ? size : sizeH;
1696
+ size = size === null ? 128 : size;
1697
+ sizeH = sizeH === null ? size : sizeH;
1697
1698
  const url = `/IH.ashx?ty=${type}&moId=${moId}&id=${fileId}&fdId=${fieldDefId}&si=${size}&siH=${sizeH}`;
1698
1699
  return url;
1699
1700
  }
@@ -3362,6 +3363,10 @@ class PortalService {
3362
3363
  loadMo(id, typedefId) {
3363
3364
  return this.apiService.loadPortalPageData(id, typedefId);
3364
3365
  }
3366
+ setSiteImageUrl(backgroundColor, imageUrl) {
3367
+ this.imageUrl = imageUrl;
3368
+ this.backgroundColor = backgroundColor;
3369
+ }
3365
3370
  pushActionNext(pushAction) {
3366
3371
  this._localStorage.setItem('pushAction', JSON.stringify(pushAction));
3367
3372
  this._pushAction$.next(pushAction);
@@ -5677,6 +5682,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
5677
5682
  }]
5678
5683
  }] });
5679
5684
 
5685
+ class CardMediaSizePipe {
5686
+ transform(cardMediaSize, defaultValue) {
5687
+ if (!cardMediaSize) {
5688
+ return [+defaultValue, +defaultValue];
5689
+ }
5690
+ const x = cardMediaSize.split('x');
5691
+ return [+x[0], +x[1]];
5692
+ }
5693
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardMediaSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5694
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CardMediaSizePipe, name: "cardMediaSize" }); }
5695
+ }
5696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardMediaSizePipe, decorators: [{
5697
+ type: Pipe,
5698
+ args: [{
5699
+ name: 'cardMediaSize',
5700
+ standalone: false
5701
+ }]
5702
+ }] });
5703
+
5680
5704
  class UlvMainService {
5681
5705
  constructor(_bbbPipe, _apiService) {
5682
5706
  this._bbbPipe = _bbbPipe;
@@ -5723,6 +5747,7 @@ class UlvMainService {
5723
5747
  this._selectedSearchPanelSettingsIdSource = new BehaviorSubject('');
5724
5748
  this._defaultSearchPanelSettingsSource = new Subject();
5725
5749
  this._allSearchPanelSettingsSource = new BehaviorSubject([]);
5750
+ this._cssBackgroundSource = new BehaviorSubject(null);
5726
5751
  this._hidePagingSource = new BehaviorSubject(false);
5727
5752
  this._openSearchPanelHiddenSettingsSource = new Subject();
5728
5753
  this._openSearchFilesManageSource = new Subject();
@@ -5832,6 +5857,12 @@ class UlvMainService {
5832
5857
  get hideSearchpanel() {
5833
5858
  return this._hideSearchapanelSource.getValue();
5834
5859
  }
5860
+ get cssBackground$() {
5861
+ return this._cssBackgroundSource.asObservable();
5862
+ }
5863
+ setBackground(cssBackground) {
5864
+ return this._cssBackgroundSource.next(cssBackground);
5865
+ }
5835
5866
  hidePaging(hide) {
5836
5867
  this._hidePagingSource.next(hide);
5837
5868
  }
@@ -8160,6 +8191,7 @@ class ReportBaseComponent extends BaseComponent {
8160
8191
  this.rendered = true;
8161
8192
  this.context.rendered = true;
8162
8193
  this.inDialog$ = this._ulvMainService.inDialog$;
8194
+ this.cssBackground$ = this._ulvMainService.cssBackground$;
8163
8195
  this.isMultiSelect$ = this._ulvMainService.isMultiSelect$;
8164
8196
  this.fullscreen$ = this._ulvMainService.fullscreen$;
8165
8197
  this.hideSearchpanel$ = this._ulvMainService.hideSearchpanel$;
@@ -9210,6 +9242,7 @@ class ReportViewBaseComponent extends BaseComponent {
9210
9242
  this._portalService = _portalService;
9211
9243
  this._uploadService = _uploadService;
9212
9244
  this._groupByService = _groupByService;
9245
+ this._reportView = true;
9213
9246
  this.rowActivable = true;
9214
9247
  this.columnSummary = new EventEmitter();
9215
9248
  this.escapeKey = new EventEmitter();
@@ -9389,6 +9422,10 @@ class ReportViewBaseComponent extends BaseComponent {
9389
9422
  onFilter(column) {
9390
9423
  this.filter.emit(column);
9391
9424
  }
9425
+ onAction(commandBody) {
9426
+ const command = new Function(commandBody);
9427
+ command();
9428
+ }
9392
9429
  onDynamicComponentEvents(e, mo, index) {
9393
9430
  switch (e.title) {
9394
9431
  case 'rowCheck':
@@ -9423,7 +9460,7 @@ class ReportViewBaseComponent extends BaseComponent {
9423
9460
  this.rowIndicator = Number(columns[0].MetaFieldTypeId) === 41;
9424
9461
  }
9425
9462
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ReportViewBaseComponent, deps: [{ token: i2.TitleCasePipe }, { token: BbbTranslatePipe }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: FindColumnByDbNamePipe }, { token: UlvMainService }, { token: PortalService }, { token: UploadService, optional: true }, { token: GroupByService, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component }); }
9426
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ReportViewBaseComponent, 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", 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", 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" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9463
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ReportViewBaseComponent, 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", 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", 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" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9427
9464
  }
9428
9465
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ReportViewBaseComponent, decorators: [{
9429
9466
  type: Component,
@@ -9439,7 +9476,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
9439
9476
  type: SkipSelf
9440
9477
  }, {
9441
9478
  type: Optional
9442
- }] }], propDecorators: { contextView: [{
9479
+ }] }], propDecorators: { _reportView: [{
9480
+ type: HostBinding,
9481
+ args: ['class.report-view']
9482
+ }], contextView: [{
9443
9483
  type: Input
9444
9484
  }], viewSetting: [{
9445
9485
  type: Input
@@ -10032,6 +10072,7 @@ class FormComponent extends BaseComponent {
10032
10072
  this.bruleAction = new EventEmitter();
10033
10073
  this.beforeTransition = new EventEmitter();
10034
10074
  this.afterTransition = new EventEmitter();
10075
+ this.uiFormComponent = signal(undefined);
10035
10076
  el.nativeElement.id = this.uniqueId = getUniqueId(4);
10036
10077
  }
10037
10078
  ngOnInit() {
@@ -10048,7 +10089,6 @@ class FormComponent extends BaseComponent {
10048
10089
  const currVal = JSON.stringify(params.currentValue);
10049
10090
  const prevVal = JSON.stringify(params.previousValue);
10050
10091
  if (currVal !== prevVal) {
10051
- // this.uiFormComponent.instance.formPanelService.destroy();
10052
10092
  this.vcr.clear();
10053
10093
  this.appendForm(currVal);
10054
10094
  }
@@ -10056,8 +10096,10 @@ class FormComponent extends BaseComponent {
10056
10096
  }
10057
10097
  ngOnDestroy() {
10058
10098
  super.ngOnDestroy();
10059
- if (this.uiFormComponent) {
10060
- this.uiFormComponent.destroy();
10099
+ const x = this.uiFormComponent();
10100
+ if (x) {
10101
+ x.destroy();
10102
+ this.uiFormComponent.set(undefined);
10061
10103
  }
10062
10104
  }
10063
10105
  _handleSaveOnFieldValueChange() {
@@ -10176,8 +10218,7 @@ class FormComponent extends BaseComponent {
10176
10218
  this.formRendered.emit(customFormPanelUi);
10177
10219
  }))
10178
10220
  .subscribe((component) => {
10179
- this.uiFormComponent = component;
10180
- this.cdr.detectChanges();
10221
+ this.uiFormComponent.set(component);
10181
10222
  this.uiComponent.emit(component.instance);
10182
10223
  });
10183
10224
  }
@@ -10442,7 +10483,7 @@ class TilePropsComponent extends BaseComponent {
10442
10483
  this.renameClick = new EventEmitter();
10443
10484
  }
10444
10485
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TilePropsComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
10445
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TilePropsComponent, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10486
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TilePropsComponent, 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 }); }
10446
10487
  }
10447
10488
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TilePropsComponent, decorators: [{
10448
10489
  type: Component,
@@ -10468,6 +10509,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
10468
10509
  type: Input
10469
10510
  }], navigateBackOnClick: [{
10470
10511
  type: Input
10512
+ }], groupType: [{
10513
+ type: Input
10471
10514
  }], layoutInfo: [{
10472
10515
  type: Input
10473
10516
  }], hideClick: [{
@@ -12030,10 +12073,14 @@ class RootPortalComponent extends PageBaseComponent {
12030
12073
  this.addFooter(pageData);
12031
12074
  BigNumber.prototype.subtract = BigNumber.prototype.minus;
12032
12075
  BigNumber.prototype.add = BigNumber.prototype.plus;
12033
- const { BackgroundId } = this.pageData;
12076
+ const { BackgroundId, BackgroundColor, HasOverlay } = this.pageData;
12034
12077
  if (BackgroundId) {
12078
+ this.backgroundColor = BackgroundColor;
12079
+ this.hasOverlay = HasOverlay !== 'False';
12035
12080
  this._renderer2.addClass(this._el.nativeElement, 'root-custom-background');
12036
- this.imageUrl = `/IH.ashx?ty=ID&moId=&id=${BackgroundId}&si=1920&sih=1080`;
12081
+ this.hasOverlay && this._renderer2.addClass(this._el.nativeElement, 'root-background-overlay');
12082
+ this.imageUrl = `/IH.ashx?ty=ID&moId=&id=${BackgroundId}`;
12083
+ this._portalService.setSiteImageUrl(BackgroundColor, this.imageUrl);
12037
12084
  }
12038
12085
  }
12039
12086
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RootPortalComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
@@ -12077,9 +12124,16 @@ class RootPortalComponent extends PageBaseComponent {
12077
12124
  <div id="headerSpaceHolder" #headerSpaceHolder>
12078
12125
  <div id="bgOuterHolder" #bgOuterHolder>
12079
12126
  <div id="bgInnerHolder" style="height: 100vh">
12080
- <div class="backgroundImage" id="backgroundImage">
12081
- <img class="picture" [src]="imageUrl" loading="lazy" />
12127
+ <div
12128
+ class="backgroundImage"
12129
+ id="backgroundImage"
12130
+ [style.background-color]="backgroundColor"
12131
+ [style.background-image]="'url(' + imageUrl + ')'"
12132
+ >
12133
+ <!-- <img class="picture" [src]="imageUrl" loading="lazy" /> -->
12134
+ @if(hasOverlay){
12082
12135
  <span id="backgroundImageOverlay" class="overlay"></span>
12136
+ }
12083
12137
  </div>
12084
12138
  </div>
12085
12139
  </div>
@@ -12142,9 +12196,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
12142
12196
  <div id="headerSpaceHolder" #headerSpaceHolder>
12143
12197
  <div id="bgOuterHolder" #bgOuterHolder>
12144
12198
  <div id="bgInnerHolder" style="height: 100vh">
12145
- <div class="backgroundImage" id="backgroundImage">
12146
- <img class="picture" [src]="imageUrl" loading="lazy" />
12199
+ <div
12200
+ class="backgroundImage"
12201
+ id="backgroundImage"
12202
+ [style.background-color]="backgroundColor"
12203
+ [style.background-image]="'url(' + imageUrl + ')'"
12204
+ >
12205
+ <!-- <img class="picture" [src]="imageUrl" loading="lazy" /> -->
12206
+ @if(hasOverlay){
12147
12207
  <span id="backgroundImageOverlay" class="overlay"></span>
12208
+ }
12148
12209
  </div>
12149
12210
  </div>
12150
12211
  </div>
@@ -13802,6 +13863,113 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
13802
13863
  type: Input
13803
13864
  }] } });
13804
13865
 
13866
+ class SplideSliderDirective extends BaseDirective {
13867
+ constructor() {
13868
+ super(...arguments);
13869
+ this.type = 'small';
13870
+ this.width = '100%';
13871
+ this.carouselCls = 'carousel-full';
13872
+ this.numWidth = window.innerWidth;
13873
+ this.height = this.numWidth / 2;
13874
+ this.rval = inject(MoReportValuePipe);
13875
+ this._picFieldSrc = inject(PictureFieldSourcePipe);
13876
+ this._renderer2 = inject(Renderer2);
13877
+ this._el = inject(ElementRef);
13878
+ }
13879
+ get dom() {
13880
+ return this._el.nativeElement;
13881
+ }
13882
+ ngOnInit() {
13883
+ super.ngOnInit();
13884
+ this.type = this.type || 'full';
13885
+ this._width = this.width;
13886
+ }
13887
+ ngAfterViewInit() {
13888
+ this._init();
13889
+ setTimeout(() => {
13890
+ this._refreshSplide();
13891
+ }, 200);
13892
+ }
13893
+ ngOnChanges(changes) {
13894
+ super.ngOnChanges(changes);
13895
+ const { moDataList } = changes;
13896
+ if (moDataList && moDataList.currentValue) {
13897
+ this._refreshSplide();
13898
+ }
13899
+ }
13900
+ onRefresh() {
13901
+ this._refreshSplide();
13902
+ }
13903
+ _refreshSplide() {
13904
+ this._splide && this._splide.refresh();
13905
+ this._splide && this._splide.length < this._splide.options.perPage && this._splide.Components.Arrows.destroy();
13906
+ }
13907
+ _init() {
13908
+ this._renderer2.setAttribute(this.dom, 'data-splide', '{"direction":"rtl"}');
13909
+ this._splide = new Splide(this.dom, {
13910
+ ...this._getCommonOptions,
13911
+ gap: +this.sliderGap,
13912
+ padding: +this.sliderPadding,
13913
+ perPage: +this.sliderPerPage,
13914
+ breakpoints: {
13915
+ 480: {
13916
+ perPage: +this.breakpoint480
13917
+ },
13918
+ 768: {
13919
+ perPage: +this.breakpoint768
13920
+ },
13921
+ 991: {
13922
+ perPage: +this.breakpoint991
13923
+ },
13924
+ 1279: {
13925
+ perPage: +this.breakpoint1279
13926
+ }
13927
+ }
13928
+ }).mount();
13929
+ }
13930
+ get _getCommonOptions() {
13931
+ return {
13932
+ rewind: true,
13933
+ arrows: this.moDataList?.length > 1,
13934
+ type: 'slide',
13935
+ direction: 'rtl',
13936
+ pagination: false
13937
+ };
13938
+ }
13939
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SplideSliderDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
13940
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SplideSliderDirective, selector: "[splideSlider]", inputs: { moDataList: "moDataList", type: "type", breakpoint991: "breakpoint991", breakpoint768: "breakpoint768", breakpoint480: "breakpoint480", breakpoint1279: "breakpoint1279", sliderPerPage: "sliderPerPage", sliderGap: "sliderGap", sliderPadding: "sliderPadding", width: "width" }, host: { properties: { "style.width": "this._width" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
13941
+ }
13942
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SplideSliderDirective, decorators: [{
13943
+ type: Directive,
13944
+ args: [{
13945
+ selector: '[splideSlider]',
13946
+ standalone: false
13947
+ }]
13948
+ }], propDecorators: { _width: [{
13949
+ type: HostBinding,
13950
+ args: ['style.width']
13951
+ }], moDataList: [{
13952
+ type: Input
13953
+ }], type: [{
13954
+ type: Input
13955
+ }], breakpoint991: [{
13956
+ type: Input
13957
+ }], breakpoint768: [{
13958
+ type: Input
13959
+ }], breakpoint480: [{
13960
+ type: Input
13961
+ }], breakpoint1279: [{
13962
+ type: Input
13963
+ }], sliderPerPage: [{
13964
+ type: Input
13965
+ }], sliderGap: [{
13966
+ type: Input
13967
+ }], sliderPadding: [{
13968
+ type: Input
13969
+ }], width: [{
13970
+ type: Input
13971
+ }] } });
13972
+
13805
13973
  class PortalDynamicPageResolver {
13806
13974
  constructor(portalService) {
13807
13975
  this.portalService = portalService;
@@ -14939,7 +15107,8 @@ const directives = [
14939
15107
  RenderUlvDirective,
14940
15108
  PrintFilesDirective,
14941
15109
  SaveImageDirective,
14942
- WebOtpDirective
15110
+ WebOtpDirective,
15111
+ SplideSliderDirective
14943
15112
  ];
14944
15113
  const pipes = [
14945
15114
  NumeralPipe,
@@ -14994,7 +15163,8 @@ const pipes = [
14994
15163
  HideAcceptCancelButtonsPipe,
14995
15164
  FilterInlineActionListPipe,
14996
15165
  IsImagePipe,
14997
- ToolbarSettingsPipe
15166
+ ToolbarSettingsPipe,
15167
+ CardMediaSizePipe
14998
15168
  ];
14999
15169
  const functionL1 = function () {
15000
15170
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -15185,7 +15355,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15185
15355
  HideAcceptCancelButtonsPipe,
15186
15356
  FilterInlineActionListPipe,
15187
15357
  IsImagePipe,
15188
- ToolbarSettingsPipe, PlaceHolderDirective,
15358
+ ToolbarSettingsPipe,
15359
+ CardMediaSizePipe, PlaceHolderDirective,
15189
15360
  NumbersOnlyInputDirective,
15190
15361
  RenderUlvViewerDirective,
15191
15362
  RenderUlvPaginDirective,
@@ -15219,7 +15390,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15219
15390
  RenderUlvDirective,
15220
15391
  PrintFilesDirective,
15221
15392
  SaveImageDirective,
15222
- WebOtpDirective], imports: [CommonModule,
15393
+ WebOtpDirective,
15394
+ SplideSliderDirective], imports: [CommonModule,
15223
15395
  BarsaNovinRayCoreRoutingModule,
15224
15396
  BarsaSapUiFormPageModule,
15225
15397
  ResizableModule,
@@ -15297,7 +15469,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15297
15469
  HideAcceptCancelButtonsPipe,
15298
15470
  FilterInlineActionListPipe,
15299
15471
  IsImagePipe,
15300
- ToolbarSettingsPipe, PlaceHolderDirective,
15472
+ ToolbarSettingsPipe,
15473
+ CardMediaSizePipe, PlaceHolderDirective,
15301
15474
  NumbersOnlyInputDirective,
15302
15475
  RenderUlvViewerDirective,
15303
15476
  RenderUlvPaginDirective,
@@ -15331,7 +15504,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15331
15504
  RenderUlvDirective,
15332
15505
  PrintFilesDirective,
15333
15506
  SaveImageDirective,
15334
- WebOtpDirective] }); }
15507
+ WebOtpDirective,
15508
+ SplideSliderDirective] }); }
15335
15509
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
15336
15510
  BarsaNovinRayCoreRoutingModule,
15337
15511
  BarsaSapUiFormPageModule,
@@ -15361,5 +15535,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
15361
15535
  * Generated bundle index. Do not edit.
15362
15536
  */
15363
15537
 
15364
- export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
15538
+ export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
15365
15539
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map