barsa-novin-ray-core 2.3.103 → 2.3.104

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.
@@ -1532,6 +1532,36 @@ function calcContextMenuWidth(contextMenuItems, disableContextMenuOverflow) {
1532
1532
  }
1533
1533
  return contextMenuWidth;
1534
1534
  }
1535
+ function RotateImage(imgEl, media, renderer2) {
1536
+ const direction = 1;
1537
+ const angle = 90 * direction;
1538
+ if (media.RotationAngle) {
1539
+ media.RotationAngle = (media.RotationAngle + angle) % 360;
1540
+ }
1541
+ else {
1542
+ media.RotationAngle = angle;
1543
+ }
1544
+ const w = imgEl.offsetWidth;
1545
+ const h = imgEl.offsetHeight;
1546
+ let margin = (w - h) / 2;
1547
+ let scaleFactor = w / h;
1548
+ if (media.scaleFactor) {
1549
+ scaleFactor = 1;
1550
+ media.scaleFactor = null;
1551
+ margin = 0;
1552
+ }
1553
+ else {
1554
+ media.scaleFactor = scaleFactor;
1555
+ }
1556
+ if (scaleFactor < 1) {
1557
+ renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(${scaleFactor})`);
1558
+ }
1559
+ else {
1560
+ renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg)`);
1561
+ }
1562
+ renderer2.setStyle(imgEl, 'margin-bottom', margin + 'px');
1563
+ renderer2.setStyle(imgEl, 'margin-top', margin + 'px');
1564
+ }
1535
1565
  function isInLocalMode() {
1536
1566
  const offlinceActive = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsActive', false);
1537
1567
  const offlineTrue = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsOffline', false);
@@ -5361,19 +5391,11 @@ class ApplicationCtrlrService {
5361
5391
  });
5362
5392
  this._appMenuItems$.next([...items]);
5363
5393
  }
5364
- _addSystemUi(_systemUi) {
5365
- // this._selectedSystemId$.next(systemUi.SystemData.Id);
5366
- // console.log('_addSystemUi', systemUi);
5367
- }
5368
- _addToMainTabPanel(_customSystemUi) {
5369
- // console.log('AddToMainTabPanel', customSystemUi);
5370
- }
5394
+ _addSystemUi(_systemUi) { }
5395
+ _addToMainTabPanel(_customSystemUi) { }
5371
5396
  _selectedSystemChanged(systemId, _forceRelayout = false) {
5372
5397
  const x = this._customApplicationUi._systemsUi.find((c) => c.SystemData.Id === systemId);
5373
5398
  this._selectSystem(x);
5374
- // console.log('SelectedSystemChanged', systemId, forceRelayout);
5375
- // console.log('selected navgroup ', this._selectedNavGroupId$.getValue());
5376
- // console.log('selected navgroup Item ', this._selectedNavGroupItemId$.getValue());
5377
5399
  }
5378
5400
  _selectSystem(system) {
5379
5401
  if (!system) {
@@ -5382,12 +5404,8 @@ class ApplicationCtrlrService {
5382
5404
  this.selectedSystem(system.SystemData.Id);
5383
5405
  this._selectedSystemNavUi$.next(system.SystemNavUi);
5384
5406
  }
5385
- _setStatusBarValues(_statusbarValues) {
5386
- // console.log('SetStatusBarValues', statusbarValues);
5387
- }
5388
- _showReleaseNoteWindow(_releaseNoteData) {
5389
- // console.log('ShowReleaseNoteWindow', releaseNoteData);
5390
- }
5407
+ _setStatusBarValues(_statusbarValues) { }
5408
+ _showReleaseNoteWindow(_releaseNoteData) { }
5391
5409
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ApplicationCtrlrService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5392
5410
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ApplicationCtrlrService, providedIn: 'root' }); }
5393
5411
  }
@@ -5815,16 +5833,12 @@ class PortalService {
5815
5833
  // this.routeInitialized();
5816
5834
  }
5817
5835
  ssoLogin() {
5818
- AjaxHelper.AjaxRequest('/api/base/ssologin', null, false, () => {
5819
- // console.log(response);
5820
- }, () => {
5836
+ AjaxHelper.AjaxRequest('/api/base/ssologin', null, false, () => { }, () => {
5821
5837
  alert('error in sso login.');
5822
5838
  }, null);
5823
5839
  }
5824
5840
  ssoLogout() {
5825
- AjaxHelper.AjaxRequest('/api/base/ssologout', null, false, () => {
5826
- // console.log(response);
5827
- }, () => {
5841
+ AjaxHelper.AjaxRequest('/api/base/ssologout', null, false, () => { }, () => {
5828
5842
  alert('error in sso logout.');
5829
5843
  }, null);
5830
5844
  }
@@ -8423,7 +8437,9 @@ class ServiceWorkerCommuncationService {
8423
8437
  this._postServiceWorker({ event: 'isLoggedInChange', options: { isLoggedIn } });
8424
8438
  if (isLoggedIn) {
8425
8439
  this._setDefaultOptions();
8426
- this._pushNotificatioService.setup();
8440
+ setTimeout(() => {
8441
+ this._pushNotificatioService.setup();
8442
+ }, 5000);
8427
8443
  }
8428
8444
  }
8429
8445
  _visibilitychange(documentIsHidden) {
@@ -10284,17 +10300,17 @@ class FilesValidationHelper {
10284
10300
  this.maxFileSize = Number(maxFileSize);
10285
10301
  this.maxTotalFileSize = Number(maxTotalFileSize);
10286
10302
  }
10287
- validateFiles(files) {
10288
- return this._validateSize(files);
10303
+ validateFiles(filesCount, files) {
10304
+ return this._validateSize(filesCount, files);
10289
10305
  }
10290
- _validateSize(files) {
10306
+ _validateSize(filesCount, files) {
10291
10307
  const totalFileSize = files.reduce((accumulator, currFile) => accumulator + currFile.size, 0);
10292
10308
  const uplaodTotalSizeTooBigText = BarsaApi.BBB['Uplaod_TotalSizeTooBig'];
10293
10309
  const uplaodFileTooBigText = BarsaApi.BBB['Uplaod_FileTooBig'];
10294
10310
  const maxFilesExceeded = BarsaApi.BBB['Uplaod_MaxFilesExceeded'];
10295
10311
  let errorMsg = '';
10296
- if (files.length > this.maxFileCount && this.maxFileCount > 0) {
10297
- errorMsg = maxFilesExceeded + `(${this.maxFileCount})`;
10312
+ if (filesCount + files.length > this.maxFileCount + 1 && this.maxFileCount > 0) {
10313
+ errorMsg = `<span dir=ltr>${maxFilesExceeded} </span>` + `(${this.maxFileCount})`;
10298
10314
  }
10299
10315
  const fileReachSize = [];
10300
10316
  files.forEach((file) => {
@@ -10318,7 +10334,7 @@ class FilesValidationHelper {
10318
10334
  .join('<br/>');
10319
10335
  }
10320
10336
  if (errorMsg) {
10321
- BarsaApi.Ul.MsgBox.Error(errorMsg, () => { });
10337
+ BarsaApi.Ul.MsgBox.Error_ShowHtml(errorMsg, () => { });
10322
10338
  return false;
10323
10339
  }
10324
10340
  return true;
@@ -10956,7 +10972,7 @@ class LinearListHelper {
10956
10972
  this.uploadFile(fileAttachment).subscribe();
10957
10973
  }
10958
10974
  uploadToServer(files, key = '') {
10959
- const isValid = this._filesValidationHelper.validateFiles(files);
10975
+ const isValid = this._filesValidationHelper.validateFiles(0, files);
10960
10976
  if (!isValid) {
10961
10977
  return;
10962
10978
  }
@@ -12203,6 +12219,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12203
12219
  type: Input
12204
12220
  }] } });
12205
12221
 
12222
+ class CardDynamicItemComponent extends DynamicItemComponent {
12223
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CardDynamicItemComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12224
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: CardDynamicItemComponent, isStandalone: false, selector: "bnrc-card-dynamic-item-component", inputs: { columnTemplate: "columnTemplate", extendedHeaderTemplate: "extendedHeaderTemplate" }, usesInheritance: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, styles: [":host{display:contents}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12225
+ }
12226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CardDynamicItemComponent, decorators: [{
12227
+ type: Component,
12228
+ args: [{ selector: 'bnrc-card-dynamic-item-component', template: `<ng-container #componentContainer></ng-container>`, changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, styles: [":host{display:contents}\n"] }]
12229
+ }], propDecorators: { columnTemplate: [{
12230
+ type: Input
12231
+ }], extendedHeaderTemplate: [{
12232
+ type: Input
12233
+ }] } });
12234
+
12206
12235
  class BaseViewPropsComponent extends BaseComponent {
12207
12236
  constructor() {
12208
12237
  super(...arguments);
@@ -13023,6 +13052,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13023
13052
  type: Input
13024
13053
  }] } });
13025
13054
 
13055
+ class CardBaseItemContentPropsComponent extends BaseItemContentPropsComponent {
13056
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CardBaseItemContentPropsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
13057
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: CardBaseItemContentPropsComponent, isStandalone: false, selector: "bnrc-card-base-item-content-props", inputs: { columnTemplate: "columnTemplate", extendedHeaderTemplate: "extendedHeaderTemplate" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13058
+ }
13059
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CardBaseItemContentPropsComponent, decorators: [{
13060
+ type: Component,
13061
+ args: [{
13062
+ selector: 'bnrc-card-base-item-content-props',
13063
+ template: ``,
13064
+ changeDetection: ChangeDetectionStrategy.OnPush,
13065
+ standalone: false
13066
+ }]
13067
+ }], propDecorators: { columnTemplate: [{
13068
+ type: Input
13069
+ }], extendedHeaderTemplate: [{
13070
+ type: Input
13071
+ }] } });
13072
+
13026
13073
  class BaseFormToolbaritemPropsComponent extends BaseComponent {
13027
13074
  constructor() {
13028
13075
  super(...arguments);
@@ -13368,12 +13415,12 @@ class RootPortalComponent extends PageBaseComponent {
13368
13415
  super(...arguments);
13369
13416
  this._dir = 'ltr';
13370
13417
  this.isRoot = true;
13371
- this.inLocalMode = true;
13418
+ this.inLocalMode = signal(false);
13372
13419
  }
13373
13420
  ngOnInit() {
13374
13421
  super.ngOnInit();
13375
13422
  this.addModulesToDom();
13376
- this.inLocalMode = isInLocalMode();
13423
+ this.inLocalMode.set(isInLocalMode());
13377
13424
  this._portalService.rtl$.subscribe((c) => {
13378
13425
  this._dir = c ? 'rtl' : 'ltr';
13379
13426
  });
@@ -13473,7 +13520,7 @@ class RootPortalComponent extends PageBaseComponent {
13473
13520
  2xl:tw-grid-cols-4 2xl:tw-grid-cols-5 2xl:tw-grid-cols-6 2xl:tw-grid-cols-7 2xl:tw-grid-cols-8 2xl:tw-grid-cols-9
13474
13521
  2xl:tw-grid-cols-10 2xl:tw-grid-cols-11 2xl:tw-grid-cols-12"
13475
13522
  ></div>
13476
- @if(inLocalMode){
13523
+ @if(inLocalMode()){
13477
13524
  <div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
13478
13525
  <button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
13479
13526
  حذف اطلاعات آفلاین
@@ -13546,7 +13593,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13546
13593
  2xl:tw-grid-cols-4 2xl:tw-grid-cols-5 2xl:tw-grid-cols-6 2xl:tw-grid-cols-7 2xl:tw-grid-cols-8 2xl:tw-grid-cols-9
13547
13594
  2xl:tw-grid-cols-10 2xl:tw-grid-cols-11 2xl:tw-grid-cols-12"
13548
13595
  ></div>
13549
- @if(inLocalMode){
13596
+ @if(inLocalMode()){
13550
13597
  <div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
13551
13598
  <button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
13552
13599
  حذف اطلاعات آفلاین
@@ -14660,8 +14707,6 @@ class EllapsisTextDirective extends BaseDirective {
14660
14707
  entries.forEach((entry) => {
14661
14708
  if (entry.target === this._el.nativeElement) {
14662
14709
  this._widthChange$.next(entry.target.offsetWidth);
14663
- // console.log('width', entry);
14664
- // console.log('height', entry.contentRect.height);
14665
14710
  }
14666
14711
  });
14667
14712
  });
@@ -16754,10 +16799,7 @@ class ResizableDirective {
16754
16799
  this.resizable = fromEvent(this.elementRef.nativeElement, 'mousedown').pipe(tap((e) => e.preventDefault()), switchMap(() => {
16755
16800
  const elDom = this.elementRef.nativeElement;
16756
16801
  const { width, right, left } = elDom.closest('th').getBoundingClientRect();
16757
- return fromEvent(this.documentRef, 'mousemove').pipe(
16758
- // tap(({ clientX }) => console.log(width, clientX, left, width + left - clientX)),
16759
- // tap(({ clientX }) => console.log('rtl', this.rtl)),
16760
- map(({ clientX }) => (this.rtl ? width + left - clientX : width + clientX - right)), distinctUntilChanged(), takeUntil(fromEvent(this.documentRef, 'mouseup').pipe(tap((_c) => this.resizableComplete.emit()))));
16802
+ return fromEvent(this.documentRef, 'mousemove').pipe(map(({ clientX }) => (this.rtl ? width + left - clientX : width + clientX - right)), distinctUntilChanged(), takeUntil(fromEvent(this.documentRef, 'mouseup').pipe(tap((_c) => this.resizableComplete.emit()))));
16761
16803
  }));
16762
16804
  }
16763
16805
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ResizableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
@@ -17210,6 +17252,7 @@ const components = [
17210
17252
  PortalPageSidebarComponent,
17211
17253
  EmptyPageWithRouterAndRouterOutletComponent,
17212
17254
  DynamicItemComponent,
17255
+ CardDynamicItemComponent,
17213
17256
  DynamicFormComponent,
17214
17257
  BaseDynamicComponent,
17215
17258
  DynamicFormToolbaritemComponent,
@@ -17430,7 +17473,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
17430
17473
  }))
17431
17474
  .catch((_) => {
17432
17475
  if (!inLocalMode && !navigator.onLine) {
17433
- console.log('no-internet');
17476
+ console.error('internet is not connected.');
17434
17477
  router.navigate(['no-internet']);
17435
17478
  }
17436
17479
  else {
@@ -17476,6 +17519,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
17476
17519
  PortalPageSidebarComponent,
17477
17520
  EmptyPageWithRouterAndRouterOutletComponent,
17478
17521
  DynamicItemComponent,
17522
+ CardDynamicItemComponent,
17479
17523
  DynamicFormComponent,
17480
17524
  BaseDynamicComponent,
17481
17525
  DynamicFormToolbaritemComponent,
@@ -17614,6 +17658,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
17614
17658
  PortalPageSidebarComponent,
17615
17659
  EmptyPageWithRouterAndRouterOutletComponent,
17616
17660
  DynamicItemComponent,
17661
+ CardDynamicItemComponent,
17617
17662
  DynamicFormComponent,
17618
17663
  BaseDynamicComponent,
17619
17664
  DynamicFormToolbaritemComponent,
@@ -17765,5 +17810,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
17765
17810
  * Generated bundle index. Do not edit.
17766
17811
  */
17767
17812
 
17768
- export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, 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, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
17813
+ export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, 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, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
17769
17814
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map