barsa-novin-ray-core 1.0.362 → 1.0.365

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 { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, SkipSelf, NgModuleFactory, Pipe, Inject, EventEmitter, Self, Output, HostBinding, HostListener, ViewContainerRef, ViewChild, Directive, ElementRef, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, ErrorHandler, APP_INITIALIZER } from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, SkipSelf, NgModuleFactory, Pipe, Inject, EventEmitter, Self, Output, HostBinding, HostListener, ViewContainerRef, ViewChild, Directive, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, ElementRef, ErrorHandler, APP_INITIALIZER } 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, switchMap as switchMap$1, timer, debounceTime as debounceTime$1 } from 'rxjs';
4
4
  import * as i1 from '@angular/router';
5
5
  import { NavigationEnd, ActivatedRoute, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
@@ -1699,6 +1699,55 @@ function GetAllColumnsSorted(context) {
1699
1699
  });
1700
1700
  return columns;
1701
1701
  }
1702
+ function GetVisibleValue(object, field) {
1703
+ let outputValue;
1704
+ if (object[field]?.$Caption !== undefined) {
1705
+ outputValue = object[field].$Caption;
1706
+ }
1707
+ else {
1708
+ outputValue = object[field + '$Caption'] !== undefined ? object[field + '$Caption'] : object[field];
1709
+ }
1710
+ return outputValue;
1711
+ }
1712
+ function GroupBy(collection, sortSettings) {
1713
+ const grouped = {};
1714
+ const groups = sortSettings.map((c) => c.Name);
1715
+ const getTitle = (mo, fieldName) => GetVisibleValue(mo, fieldName);
1716
+ collection.forEach((a) => {
1717
+ groups
1718
+ .reduce((o, g, i) => {
1719
+ const groupTitle = getTitle(a, g);
1720
+ o[groupTitle] = o[groupTitle] || (i + 1 === groups.length ? [] : {});
1721
+ if (Array.isArray(o[groupTitle])) {
1722
+ a.$Level = groups.length;
1723
+ let title = getTitle(a, groups[0]);
1724
+ let parent = grouped[title];
1725
+ parent.$Count = (parent.$Count ?? 0) + 1;
1726
+ for (let j = 1; j < groups.length - 1; j++) {
1727
+ title = getTitle(a, groups[j]);
1728
+ parent = parent[title];
1729
+ parent.$Count = o[groupTitle].length + 1;
1730
+ }
1731
+ }
1732
+ else {
1733
+ const a2 = FindGroup(groupTitle, a);
1734
+ o[groupTitle].$Expanded = a2?.$Expanded;
1735
+ o[groupTitle].$Visibility = a2?.$Visibility;
1736
+ }
1737
+ return o[groupTitle];
1738
+ }, grouped)
1739
+ .push(a);
1740
+ });
1741
+ return { grouped, groups };
1742
+ }
1743
+ function FindGroup(groupTitle, a) {
1744
+ if (a.$Group === groupTitle) {
1745
+ return a;
1746
+ }
1747
+ if (a.$Parent) {
1748
+ return FindGroup(groupTitle, a.$Parent);
1749
+ }
1750
+ }
1702
1751
  function FillAllLayoutControls(item, layoutControls) {
1703
1752
  if (item.xtype === 'Ly.LayoutControl') {
1704
1753
  layoutControls.push(item);
@@ -4129,15 +4178,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
4129
4178
 
4130
4179
  class VisibleValuePipe {
4131
4180
  constructor() { }
4132
- transform(object, feild) {
4133
- let outputValue;
4134
- if (object[feild]?.$Caption !== undefined) {
4135
- outputValue = object[feild].$Caption;
4136
- }
4137
- else {
4138
- outputValue = object[feild + '$Caption'] !== undefined ? object[feild + '$Caption'] : object[feild];
4139
- }
4140
- return outputValue;
4181
+ transform(object, field) {
4182
+ return GetVisibleValue(object, field);
4141
4183
  }
4142
4184
  }
4143
4185
  VisibleValuePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: VisibleValuePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
@@ -4199,40 +4241,13 @@ class MultipleGroupByPipe {
4199
4241
  this.visibleValuePipe = visibleValuePipe;
4200
4242
  }
4201
4243
  transform(collection, sortSettings) {
4202
- const grouped = {};
4203
4244
  if (sortSettings.length === 0) {
4204
4245
  collection.forEach((c) => {
4205
4246
  delete c.$Parent;
4206
4247
  });
4207
4248
  return collection;
4208
4249
  }
4209
- const groups = sortSettings.map((c) => c.Name);
4210
- const getTitle = (mo, fieldName) => this.visibleValuePipe.transform(mo, fieldName);
4211
- collection.forEach((a) => {
4212
- groups
4213
- .reduce((o, g, i) => {
4214
- const groupTitle = getTitle(a, g);
4215
- o[groupTitle] = o[groupTitle] || (i + 1 === groups.length ? [] : {});
4216
- if (Array.isArray(o[groupTitle])) {
4217
- a.$Level = groups.length;
4218
- let title = getTitle(a, groups[0]);
4219
- let parent = grouped[title];
4220
- parent.$Count = (parent.$Count ?? 0) + 1;
4221
- for (let j = 1; j < groups.length - 1; j++) {
4222
- title = getTitle(a, groups[j]);
4223
- parent = parent[title];
4224
- parent.$Count = o[groupTitle].length + 1;
4225
- }
4226
- }
4227
- else {
4228
- const a2 = this.findGroup(groupTitle, a);
4229
- o[groupTitle].$Expanded = a2?.$Expanded;
4230
- o[groupTitle].$Visibility = a2?.$Visibility;
4231
- }
4232
- return o[groupTitle];
4233
- }, grouped)
4234
- .push(a);
4235
- });
4250
+ const { grouped, groups } = GroupBy(collection, sortSettings);
4236
4251
  const arr = [];
4237
4252
  this.prepareArr(arr, null, grouped, groups.length, 0);
4238
4253
  return arr;
@@ -11709,6 +11724,103 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11709
11724
  args: ['placeholder', { read: ViewContainerRef, static: true }]
11710
11725
  }] } });
11711
11726
 
11727
+ function formRoutes(authGuard = false) {
11728
+ return {
11729
+ path: 'form',
11730
+ canActivate: authGuard ? [AuthGuard] : [],
11731
+ loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((m) => m.BarsaSapUiFormPageModule)
11732
+ };
11733
+ }
11734
+
11735
+ const routes$1 = [
11736
+ {
11737
+ path: '',
11738
+ component: EmptyPageWithRouterAndRouterOutletComponent,
11739
+ children: [
11740
+ {
11741
+ path: 'show',
11742
+ outlet: 'main',
11743
+ component: FormPageComponent,
11744
+ data: { breadcrumb: (data) => `${data.breadcrumb}` },
11745
+ resolve: { breadcrumb: PortalFormPageResolver },
11746
+ children: [
11747
+ {
11748
+ path: 'popup',
11749
+ loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((c) => c.BarsaSapUiFormPageModule)
11750
+ }
11751
+ ]
11752
+ }
11753
+ ]
11754
+ }
11755
+ ];
11756
+ class BarsaSapUiFormPageRoutingModule {
11757
+ }
11758
+ BarsaSapUiFormPageRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11759
+ BarsaSapUiFormPageRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [i1.RouterModule], exports: [RouterModule] });
11760
+ BarsaSapUiFormPageRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [RouterModule.forChild(routes$1), RouterModule] });
11761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, decorators: [{
11762
+ type: NgModule,
11763
+ args: [{
11764
+ imports: [RouterModule.forChild(routes$1)],
11765
+ exports: [RouterModule]
11766
+ }]
11767
+ }] });
11768
+
11769
+ class BaseModule {
11770
+ constructor(dcm, componentFactoryResolver, moduleName) {
11771
+ this.dcm = dcm;
11772
+ this.componentFactoryResolver = componentFactoryResolver;
11773
+ this.moduleName = moduleName;
11774
+ this.selectorToFactoryMap = {};
11775
+ this.isInitialize = false;
11776
+ dcm?.addModuleWithComponents(moduleName, this);
11777
+ }
11778
+ getComponentFactory(componentName) {
11779
+ if (!this.isInitialize) {
11780
+ // lazy initialisation
11781
+ this.populateRegistry();
11782
+ }
11783
+ return this.selectorToFactoryMap[componentName];
11784
+ }
11785
+ populateRegistry() {
11786
+ this.selectorToFactoryMap = {};
11787
+ this.isInitialize = true;
11788
+ if (Array.isArray(this.dynamicComponents) && this.dynamicComponents.length > 0) {
11789
+ this.dynamicComponents.forEach((compType) => {
11790
+ const componentFactory = this.componentFactoryResolver.resolveComponentFactory(compType);
11791
+ this.selectorToFactoryMap[componentFactory.selector] = componentFactory;
11792
+ });
11793
+ }
11794
+ }
11795
+ }
11796
+
11797
+ const components$1 = [];
11798
+ class BarsaSapUiFormPageModule extends BaseModule {
11799
+ constructor(dcm, cfr) {
11800
+ super(dcm, cfr, 'BarsaSapUiFormPageModule');
11801
+ this.dcm = dcm;
11802
+ this.cfr = cfr;
11803
+ this.dynamicComponents = [...components$1];
11804
+ }
11805
+ }
11806
+ BarsaSapUiFormPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, deps: [{ token: DynamicComponentService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.NgModule });
11807
+ BarsaSapUiFormPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
11808
+ BarsaSapUiFormPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
11809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, decorators: [{
11810
+ type: NgModule,
11811
+ args: [{
11812
+ imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule],
11813
+ declarations: [...components$1],
11814
+ exports: [...components$1],
11815
+ schemas: [NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA]
11816
+ }]
11817
+ }], ctorParameters: function () { return [{ type: DynamicComponentService }, { type: i0.ComponentFactoryResolver }]; } });
11818
+
11819
+ var barsaSapUiFormPage_module = /*#__PURE__*/Object.freeze({
11820
+ __proto__: null,
11821
+ BarsaSapUiFormPageModule: BarsaSapUiFormPageModule
11822
+ });
11823
+
11712
11824
  class BaseUlvSettingComponent extends BaseComponent {
11713
11825
  constructor() {
11714
11826
  super(...arguments);
@@ -11829,34 +11941,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11829
11941
  args: ['class.page-content']
11830
11942
  }] } });
11831
11943
 
11832
- class BaseModule {
11833
- constructor(dcm, componentFactoryResolver, moduleName) {
11834
- this.dcm = dcm;
11835
- this.componentFactoryResolver = componentFactoryResolver;
11836
- this.moduleName = moduleName;
11837
- this.selectorToFactoryMap = {};
11838
- this.isInitialize = false;
11839
- dcm?.addModuleWithComponents(moduleName, this);
11840
- }
11841
- getComponentFactory(componentName) {
11842
- if (!this.isInitialize) {
11843
- // lazy initialisation
11844
- this.populateRegistry();
11845
- }
11846
- return this.selectorToFactoryMap[componentName];
11847
- }
11848
- populateRegistry() {
11849
- this.selectorToFactoryMap = {};
11850
- this.isInitialize = true;
11851
- if (Array.isArray(this.dynamicComponents) && this.dynamicComponents.length > 0) {
11852
- this.dynamicComponents.forEach((compType) => {
11853
- const componentFactory = this.componentFactoryResolver.resolveComponentFactory(compType);
11854
- this.selectorToFactoryMap[componentFactory.selector] = componentFactory;
11855
- });
11856
- }
11857
- }
11858
- }
11859
-
11860
11944
  class ResizableDirective {
11861
11945
  constructor(documentRef, elementRef) {
11862
11946
  this.documentRef = documentRef;
@@ -11935,75 +12019,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11935
12019
  }]
11936
12020
  }] });
11937
12021
 
11938
- function formRoutes(authGuard = false) {
11939
- return {
11940
- path: 'form',
11941
- canActivate: authGuard ? [AuthGuard] : [],
11942
- loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((m) => m.BarsaSapUiFormPageModule)
11943
- };
11944
- }
11945
-
11946
- const routes$1 = [
11947
- {
11948
- path: '',
11949
- component: EmptyPageWithRouterAndRouterOutletComponent,
11950
- children: [
11951
- {
11952
- path: 'show',
11953
- outlet: 'main',
11954
- component: FormPageComponent,
11955
- data: { breadcrumb: (data) => `${data.breadcrumb}` },
11956
- resolve: { breadcrumb: PortalFormPageResolver },
11957
- children: [
11958
- {
11959
- path: 'popup',
11960
- loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((c) => c.BarsaSapUiFormPageModule)
11961
- }
11962
- ]
11963
- }
11964
- ]
11965
- }
11966
- ];
11967
- class BarsaSapUiFormPageRoutingModule {
11968
- }
11969
- BarsaSapUiFormPageRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11970
- BarsaSapUiFormPageRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [i1.RouterModule], exports: [RouterModule] });
11971
- BarsaSapUiFormPageRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [RouterModule.forChild(routes$1), RouterModule] });
11972
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, decorators: [{
11973
- type: NgModule,
11974
- args: [{
11975
- imports: [RouterModule.forChild(routes$1)],
11976
- exports: [RouterModule]
11977
- }]
11978
- }] });
11979
-
11980
- const components$1 = [];
11981
- class BarsaSapUiFormPageModule extends BaseModule {
11982
- constructor(dcm, cfr) {
11983
- super(dcm, cfr, 'BarsaSapUiFormPageModule');
11984
- this.dcm = dcm;
11985
- this.cfr = cfr;
11986
- this.dynamicComponents = [...components$1];
11987
- }
11988
- }
11989
- BarsaSapUiFormPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, deps: [{ token: DynamicComponentService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.NgModule });
11990
- BarsaSapUiFormPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
11991
- BarsaSapUiFormPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
11992
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, decorators: [{
11993
- type: NgModule,
11994
- args: [{
11995
- imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule],
11996
- declarations: [...components$1],
11997
- exports: [...components$1],
11998
- schemas: [NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA]
11999
- }]
12000
- }], ctorParameters: function () { return [{ type: DynamicComponentService }, { type: i0.ComponentFactoryResolver }]; } });
12001
-
12002
- var barsaSapUiFormPage_module = /*#__PURE__*/Object.freeze({
12003
- __proto__: null,
12004
- BarsaSapUiFormPageModule: BarsaSapUiFormPageModule
12005
- });
12006
-
12007
12022
  const routesDefault = [
12008
12023
  {
12009
12024
  path: 'login',
@@ -12577,5 +12592,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
12577
12592
  * Generated bundle index. Do not edit.
12578
12593
  */
12579
12594
 
12580
- export { APP_VERSION, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FindColumnByDbNamePipe, FindLayoutSettingFromLayout94, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GridSetting, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, ItemsRendererDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalReportPageResolver, PortalService, PreventDefaulEvent, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RowDataOption, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, _calcContextMenuWidth, availablePrefixes, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateMoDataListContentWidthByColumnName, calculateWidthOfListColumn, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formatBytes, fromIntersectionObserver, genrateInlineMoId, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getTargetRect, getUniqueId, getValidExtension, isFirefox, isFunction, isImage, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, shallowEqual, throwIfAlreadyLoaded, toNumber };
12595
+ export { APP_VERSION, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, ItemsRendererDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalReportPageResolver, PortalService, PreventDefaulEvent, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RowDataOption, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, _calcContextMenuWidth, availablePrefixes, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateMoDataListContentWidthByColumnName, calculateWidthOfListColumn, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getTargetRect, getUniqueId, getValidExtension, isFirefox, isFunction, isImage, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, shallowEqual, throwIfAlreadyLoaded, toNumber };
12581
12596
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map