barsa-novin-ray-core 2.2.92 → 2.3.1

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.
@@ -1599,7 +1599,7 @@ function throwIfAlreadyLoaded(parentModule, moduleName) {
1599
1599
  }
1600
1600
  }
1601
1601
  const measureTextValues = {};
1602
- function measureText(text, fontSize) {
1602
+ function measureText2(text, fontSize, fontName) {
1603
1603
  if (measureTextValues[text]) {
1604
1604
  return measureTextValues[text];
1605
1605
  }
@@ -1609,11 +1609,18 @@ function measureText(text, fontSize) {
1609
1609
  }
1610
1610
  const ctx = measureTextDom.getContext('2d');
1611
1611
  fontSize = fontSize ? fontSize : '0.885rem';
1612
- ctx.font = `normal ${fontSize} IRANYekanDigits`;
1612
+ fontName = fontName ? fontName : 'B-Font';
1613
+ ctx.font = `normal ${fontSize} ${fontName}`;
1613
1614
  const x = ctx.measureText(text).width;
1614
1615
  measureTextValues[text] = x;
1615
1616
  return x;
1616
1617
  }
1618
+ function measureText(text, fontSize) {
1619
+ return measureText2(text, fontSize, 'IRANYekanDigits');
1620
+ }
1621
+ function measureTextBy(text, fontSize, fontName) {
1622
+ return measureText2(text, fontSize, fontName || 'B-Font');
1623
+ }
1617
1624
  function genrateInlineMoId() {
1618
1625
  return (BarsaApi.idGenerator--).toString();
1619
1626
  }
@@ -2379,6 +2386,9 @@ function flattenTree(root, prop) {
2379
2386
  traverse(root);
2380
2387
  return result;
2381
2388
  }
2389
+ function IsDarkMode() {
2390
+ return document.documentElement.getAttribute('data-mode')?.includes('dark') || false;
2391
+ }
2382
2392
 
2383
2393
  class ApiService {
2384
2394
  constructor(httpClient) {
@@ -2627,6 +2637,11 @@ class DynamicComponentService {
2627
2637
  };
2628
2638
  }
2629
2639
  }
2640
+ getComponentType(componentName, moduleName) {
2641
+ const moName = moduleName + 'Module';
2642
+ const module = this._dynamicModuleWithComponents[moName];
2643
+ return module.ngModuleRef.dynamicComponents.find((c) => c.name === componentName + 'Component');
2644
+ }
2630
2645
  getComponentBySelector(selector, moduleName, injector) {
2631
2646
  const moName = moduleName + 'Module';
2632
2647
  const module = this._dynamicModuleWithComponents[moName];
@@ -3255,6 +3270,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
3255
3270
  type: Injectable
3256
3271
  }], ctorParameters: () => [{ type: i1.Router }, { type: PortalService }] });
3257
3272
 
3273
+ function formRoutes(authGuard = false) {
3274
+ return {
3275
+ path: 'form',
3276
+ canActivate: authGuard ? [AuthGuard] : [],
3277
+ loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((m) => m.BarsaSapUiFormPageModule)
3278
+ };
3279
+ }
3280
+
3258
3281
  class LocalStorageService {
3259
3282
  constructor() {
3260
3283
  this.localstorage = false;
@@ -3576,6 +3599,9 @@ class PortalService {
3576
3599
  }
3577
3600
  this.setValueOnObject(path, index + 1, modules, object[prop]);
3578
3601
  }
3602
+ getComponentType(moduleName, componentName, _selector) {
3603
+ return this.dcm.getComponentType(componentName, moduleName);
3604
+ }
3579
3605
  getComponent(moduleName, _modulePath, _componentName, selector, parentInjector) {
3580
3606
  return this.dcm.getComponentBySelector(selector, moduleName, parentInjector);
3581
3607
  }
@@ -3850,6 +3876,34 @@ class PortalService {
3850
3876
  });
3851
3877
  return x2;
3852
3878
  }
3879
+ _addPage(routes, page) {
3880
+ const portalService = this;
3881
+ function traverse(children, cpage) {
3882
+ const path = cpage.RoutePath;
3883
+ const pageComponent = portalService.getComponentType(cpage.Module, cpage.ComponentName, cpage.ComponentSelector);
3884
+ const newRoute = {
3885
+ path: (cpage.IsDefaultRoute === 'True' && path === '') || (path !== '' && typeof path !== 'undefined')
3886
+ ? path
3887
+ : cpage.Route.replace('/', ''),
3888
+ canActivate: cpage.HasAuthorize !== 'True' ? [] : [AuthGuard],
3889
+ resolve: { pageData: PortalPageResolver },
3890
+ component: pageComponent,
3891
+ outlet: cpage.Outlet,
3892
+ data: {
3893
+ pageData: {
3894
+ Module: cpage.Module,
3895
+ HasAuthorize: cpage.HasAuthorize === 'True',
3896
+ Route: cpage.Route
3897
+ }
3898
+ },
3899
+ children: [formRoutes()]
3900
+ };
3901
+ children.push(newRoute);
3902
+ // Recursively process each MetaObjectModel inside MoDataList
3903
+ cpage.ChildPageList.MoDataList.forEach((c) => traverse(newRoute.children, c));
3904
+ }
3905
+ traverse(routes, page);
3906
+ }
3853
3907
  loadPortalDataSync() {
3854
3908
  if (BarsaApi.LoginFormData?.error?.userMessage) {
3855
3909
  return;
@@ -3870,14 +3924,25 @@ class PortalService {
3870
3924
  });
3871
3925
  const pathToRemove = removePaged.map((d) => d.path);
3872
3926
  configRoute = configRoute.filter((c) => pathToRemove.indexOf(c.path) === -1);
3927
+ const newConfigRoutes = [];
3928
+ portalData.ChildPageList.MoDataList.forEach((c) => {
3929
+ this._addPage(newConfigRoutes, c);
3930
+ });
3873
3931
  if (defaultPage != null) {
3874
3932
  const defaultPageRoute = defaultPage.Route.replace('/', '');
3875
- const defaultPath = configRoute.find((c) => c.path === '');
3876
- defaultPath && (defaultPath.redirectTo = defaultPageRoute);
3877
- configRoute.push({ path: '**', redirectTo: defaultPageRoute });
3933
+ if (portalData.IsDynamicRoute) {
3934
+ const defaultPath = newConfigRoutes.find((c) => c.path === '');
3935
+ defaultPath && (defaultPath.redirectTo = defaultPageRoute);
3936
+ newConfigRoutes.push({ path: '**', redirectTo: defaultPageRoute });
3937
+ }
3938
+ else {
3939
+ const defaultPath = configRoute.find((c) => c.path === '');
3940
+ defaultPath && (defaultPath.redirectTo = defaultPageRoute);
3941
+ configRoute.push({ path: '**', redirectTo: defaultPageRoute });
3942
+ }
3878
3943
  // const notFoundPath = configRoute.find((c) => c.path === '**');
3879
3944
  // notFoundPath && (notFoundPath.redirectTo = defaultPage.Route.replace('/', ''));
3880
- this._router.resetConfig(configRoute);
3945
+ this._router.resetConfig(portalData.IsDynamicRoute ? newConfigRoutes : configRoute);
3881
3946
  }
3882
3947
  }
3883
3948
  this.extractAllPages(portalData);
@@ -13934,7 +13999,7 @@ class SplideSliderDirective extends BaseDirective {
13934
13999
  this._splide && this._splide.length < this._splide.options.perPage && this._splide.Components.Arrows.destroy();
13935
14000
  }
13936
14001
  _init() {
13937
- this._renderer2.setAttribute(this.dom, 'data-splide', '{"direction":"rtl"}');
14002
+ this._renderer2.setAttribute(this.dom, 'data-splide', `{"direction":"${this.direction}"}`);
13938
14003
  this._splide = new Splide(this.dom, {
13939
14004
  ...this._getCommonOptions,
13940
14005
  gap: +this.sliderGap,
@@ -13961,10 +14026,13 @@ class SplideSliderDirective extends BaseDirective {
13961
14026
  rewind: true,
13962
14027
  arrows: this.moDataList?.length > 1,
13963
14028
  type: 'slide',
13964
- direction: BarsaApi.LoginFormData.IsRtl,
14029
+ direction: this.direction,
13965
14030
  pagination: false
13966
14031
  };
13967
14032
  }
14033
+ get direction() {
14034
+ return BarsaApi.LoginFormData.IsRtl ? 'rtl' : 'ltr';
14035
+ }
13968
14036
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SplideSliderDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
13969
14037
  static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: SplideSliderDirective, isStandalone: false, 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 }); }
13970
14038
  }
@@ -14104,6 +14172,93 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
14104
14172
  type: Input
14105
14173
  }] } });
14106
14174
 
14175
+ class MeasureFormTitleWidthDirective extends BaseDirective {
14176
+ constructor(_el) {
14177
+ super(_el);
14178
+ this._el = _el;
14179
+ this._renderer2 = inject(Renderer2);
14180
+ this.ismobile = getDeviceIsMobile();
14181
+ }
14182
+ ngOnInit() {
14183
+ super.ngOnInit();
14184
+ this._addClass(this.mWidthTitle);
14185
+ }
14186
+ ngOnChanges(changes) {
14187
+ super.ngOnChanges(changes);
14188
+ changes.mWidthTitle && !changes.mWidthTitle.firstChange && this._addClass(changes.mWidthTitle.currentValue);
14189
+ }
14190
+ _addClass(title) {
14191
+ if (!this.ismobile) {
14192
+ return;
14193
+ }
14194
+ this._renderer2.removeClass(this._el.nativeElement, 'title-auto');
14195
+ const x = measureText(title);
14196
+ const w = this._el.nativeElement.offsetWidth;
14197
+ x > w / 2
14198
+ ? this._renderer2.addClass(this._el.nativeElement, 'overflow-toolbar')
14199
+ : this._renderer2.addClass(this._el.nativeElement, 'title-auto');
14200
+ }
14201
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MeasureFormTitleWidthDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
14202
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: MeasureFormTitleWidthDirective, isStandalone: false, selector: "[mWidthTitle]", inputs: { mWidthTitle: "mWidthTitle" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
14203
+ }
14204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MeasureFormTitleWidthDirective, decorators: [{
14205
+ type: Directive,
14206
+ args: [{
14207
+ selector: '[mWidthTitle]',
14208
+ standalone: false
14209
+ }]
14210
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { mWidthTitle: [{
14211
+ type: Input
14212
+ }] } });
14213
+
14214
+ class OverflowTextDirective extends BaseDirective {
14215
+ constructor() {
14216
+ super(...arguments);
14217
+ this._checkText$ = new Subject();
14218
+ this._renderer2 = inject(Renderer2);
14219
+ }
14220
+ ngAfterViewInit() {
14221
+ super.ngAfterViewInit();
14222
+ this._checkText$.pipe(takeUntil$1(this._onDestroy$), debounceTime$1(500)).subscribe(() => this._checkOverflow());
14223
+ const handleResize = (entries) => {
14224
+ if (entries.length) {
14225
+ this._checkText$.next();
14226
+ }
14227
+ };
14228
+ const resizeObserver = new ResizeObserver(handleResize);
14229
+ // Observe an element
14230
+ resizeObserver.observe(this._el.nativeElement);
14231
+ this.resizeObserver = resizeObserver;
14232
+ }
14233
+ ngOnDestroy() {
14234
+ super.ngOnDestroy();
14235
+ this.resizeObserver.disconnect();
14236
+ }
14237
+ isTextOverflowing(element) {
14238
+ return element.scrollWidth > element.clientWidth;
14239
+ }
14240
+ _checkOverflow() {
14241
+ if (this.isTextOverflowing(this._el.nativeElement)) {
14242
+ this._addOverflowTextClass();
14243
+ }
14244
+ }
14245
+ _addOverflowTextClass() {
14246
+ this._renderer2.removeClass(this._el.nativeElement, 'overflow-text-in');
14247
+ this._renderer2.addClass(this._el.nativeElement, 'overflow-text-in');
14248
+ this._renderer2.addClass(this._el.nativeElement.parentNode, 'child-has-overflow-text');
14249
+ }
14250
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: OverflowTextDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
14251
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: OverflowTextDirective, isStandalone: false, selector: "[overflowText]", exportAs: ["overflowText"], usesInheritance: true, ngImport: i0 }); }
14252
+ }
14253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: OverflowTextDirective, decorators: [{
14254
+ type: Directive,
14255
+ args: [{
14256
+ selector: '[overflowText]',
14257
+ standalone: false,
14258
+ exportAs: 'overflowText'
14259
+ }]
14260
+ }] });
14261
+
14107
14262
  class PortalDynamicPageResolver {
14108
14263
  constructor(portalService) {
14109
14264
  this.portalService = portalService;
@@ -14462,14 +14617,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
14462
14617
  args: ['placeholder', { read: ViewContainerRef, static: true }]
14463
14618
  }] } });
14464
14619
 
14465
- function formRoutes(authGuard = false) {
14466
- return {
14467
- path: 'form',
14468
- canActivate: authGuard ? [AuthGuard] : [],
14469
- loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((m) => m.BarsaSapUiFormPageModule)
14470
- };
14471
- }
14472
-
14473
14620
  const children = [
14474
14621
  {
14475
14622
  path: 'popup',
@@ -15243,7 +15390,9 @@ const directives = [
15243
15390
  WebOtpDirective,
15244
15391
  SplideSliderDirective,
15245
15392
  DynamicRootVariableDirective,
15246
- HorizontalResponsiveDirective
15393
+ HorizontalResponsiveDirective,
15394
+ MeasureFormTitleWidthDirective,
15395
+ OverflowTextDirective
15247
15396
  ];
15248
15397
  const pipes = [
15249
15398
  NumeralPipe,
@@ -15516,7 +15665,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
15516
15665
  WebOtpDirective,
15517
15666
  SplideSliderDirective,
15518
15667
  DynamicRootVariableDirective,
15519
- HorizontalResponsiveDirective], imports: [CommonModule,
15668
+ HorizontalResponsiveDirective,
15669
+ MeasureFormTitleWidthDirective,
15670
+ OverflowTextDirective], imports: [CommonModule,
15520
15671
  BarsaNovinRayCoreRoutingModule,
15521
15672
  BarsaSapUiFormPageModule,
15522
15673
  ResizableModule,
@@ -15632,7 +15783,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
15632
15783
  WebOtpDirective,
15633
15784
  SplideSliderDirective,
15634
15785
  DynamicRootVariableDirective,
15635
- HorizontalResponsiveDirective] }); }
15786
+ HorizontalResponsiveDirective,
15787
+ MeasureFormTitleWidthDirective,
15788
+ OverflowTextDirective] }); }
15636
15789
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
15637
15790
  BarsaNovinRayCoreRoutingModule,
15638
15791
  BarsaSapUiFormPageModule,
@@ -15662,5 +15815,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
15662
15815
  * Generated bundle index. Do not edit.
15663
15816
  */
15664
15817
 
15665
- 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, DynamicRootVariableDirective, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, 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, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, 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 };
15818
+ 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, DynamicRootVariableDirective, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MeasureFormTitleWidthDirective, 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, OverflowTextDirective, 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, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, 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, measureText2, measureTextBy, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
15666
15819
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map