barsa-novin-ray-core 2.3.16 → 2.3.17

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.
@@ -4442,18 +4442,10 @@ class BbbTranslatePipe {
4442
4442
  if (!key) {
4443
4443
  return '';
4444
4444
  }
4445
- let hasStar = false;
4446
- if (typeof key === 'string' && key.indexOf('*') > 0) {
4447
- hasStar = true;
4448
- }
4449
4445
  if (!key.replace) {
4450
4446
  return key;
4451
4447
  }
4452
- const key2 = key.replace('*', '').trim();
4453
- let result = BarsaApi.BBB[key2] ?? key2;
4454
- if (hasStar) {
4455
- result += '*';
4456
- }
4448
+ let result = BarsaApi.BBB[key] ?? key;
4457
4449
  if (addText) {
4458
4450
  result += ' ' + this.transform(addText);
4459
4451
  }
@@ -5808,6 +5800,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
5808
5800
  }]
5809
5801
  }] });
5810
5802
 
5803
+ class LabelStarTrimPipe {
5804
+ transform(key) {
5805
+ if (!key) {
5806
+ return '';
5807
+ }
5808
+ if (!key.replace) {
5809
+ return key;
5810
+ }
5811
+ let hasStar = false;
5812
+ if (typeof key === 'string' && key.indexOf('*') > 0) {
5813
+ hasStar = true;
5814
+ }
5815
+ const key2 = !hasStar ? key.trim() : key.replace('*', '').trim();
5816
+ return key2;
5817
+ }
5818
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LabelStarTrimPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5819
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LabelStarTrimPipe, isStandalone: false, name: "lableStartTrim" }); }
5820
+ }
5821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LabelStarTrimPipe, decorators: [{
5822
+ type: Pipe,
5823
+ args: [{
5824
+ name: 'lableStartTrim',
5825
+ standalone: false
5826
+ }]
5827
+ }] });
5828
+
5811
5829
  class UlvMainService {
5812
5830
  constructor(_bbbPipe, _apiService) {
5813
5831
  this._bbbPipe = _bbbPipe;
@@ -7812,6 +7830,9 @@ class FieldBaseComponent extends BaseComponent {
7812
7830
  ngOnInit() {
7813
7831
  super.ngOnInit();
7814
7832
  if (this.context) {
7833
+ const elDom = this._el.nativeElement;
7834
+ this.context._el = elDom;
7835
+ !this.context.getEl && (this.context.getEl = () => ({ dom: elDom }));
7815
7836
  this.context.dom = this.el.nativeElement;
7816
7837
  this.context.id = this.id;
7817
7838
  // this.context.rendered = true;
@@ -14379,6 +14400,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
14379
14400
  type: Input
14380
14401
  }] } });
14381
14402
 
14403
+ class ResizeObserverDirective {
14404
+ constructor(el, zone) {
14405
+ this.el = el;
14406
+ this.zone = zone;
14407
+ this.elResized = new EventEmitter();
14408
+ }
14409
+ ngOnInit() {
14410
+ this.observer = new ResizeObserver((entries) => {
14411
+ this.zone.run(() => {
14412
+ const entry = entries[0];
14413
+ this.elResized.emit(entry.contentRect);
14414
+ });
14415
+ });
14416
+ this.observer.observe(this.el.nativeElement);
14417
+ }
14418
+ ngOnDestroy() {
14419
+ this.observer.unobserve(this.el.nativeElement);
14420
+ this.observer.disconnect();
14421
+ }
14422
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeObserverDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
14423
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ResizeObserverDirective, isStandalone: false, selector: "[resizeObserver]", outputs: { elResized: "elResized" }, ngImport: i0 }); }
14424
+ }
14425
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeObserverDirective, decorators: [{
14426
+ type: Directive,
14427
+ args: [{
14428
+ selector: '[resizeObserver]',
14429
+ standalone: false
14430
+ }]
14431
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { elResized: [{
14432
+ type: Output
14433
+ }] } });
14434
+
14435
+ class ColumnValueDirective extends BaseDirective {
14436
+ constructor() {
14437
+ super(...arguments);
14438
+ this._renderer2 = inject(Renderer2);
14439
+ }
14440
+ ngOnChanges(changes) {
14441
+ super.ngOnChanges(changes);
14442
+ const { columnValue } = changes;
14443
+ if (columnValue) {
14444
+ this._setInnerHtml(columnValue.currentValue);
14445
+ }
14446
+ }
14447
+ _setInnerHtml(value) {
14448
+ if (value) {
14449
+ this._renderer2.setProperty(this._el.nativeElement, 'innerHTML', `<span>&#x202B;${value}&#x202C;</span>`);
14450
+ }
14451
+ }
14452
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ColumnValueDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
14453
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ColumnValueDirective, isStandalone: false, selector: "[columnValue]", inputs: { columnValue: "columnValue" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
14454
+ }
14455
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ColumnValueDirective, decorators: [{
14456
+ type: Directive,
14457
+ args: [{
14458
+ selector: '[columnValue]',
14459
+ standalone: false
14460
+ }]
14461
+ }], propDecorators: { columnValue: [{
14462
+ type: Input
14463
+ }] } });
14464
+
14382
14465
  class PortalDynamicPageResolver {
14383
14466
  constructor(portalService) {
14384
14467
  this.portalService = portalService;
@@ -15515,7 +15598,9 @@ const directives = [
15515
15598
  OverflowTextDirective,
15516
15599
  ShortcutRegisterDirective,
15517
15600
  ShortcutHandlerDirective,
15518
- BarsaReadonlyDirective
15601
+ BarsaReadonlyDirective,
15602
+ ResizeObserverDirective,
15603
+ ColumnValueDirective
15519
15604
  ];
15520
15605
  const pipes = [
15521
15606
  NumeralPipe,
@@ -15571,7 +15656,8 @@ const pipes = [
15571
15656
  FilterInlineActionListPipe,
15572
15657
  IsImagePipe,
15573
15658
  ToolbarSettingsPipe,
15574
- CardMediaSizePipe
15659
+ CardMediaSizePipe,
15660
+ LabelStarTrimPipe
15575
15661
  ];
15576
15662
  const functionL1 = function () {
15577
15663
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -15751,7 +15837,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15751
15837
  FilterInlineActionListPipe,
15752
15838
  IsImagePipe,
15753
15839
  ToolbarSettingsPipe,
15754
- CardMediaSizePipe, PlaceHolderDirective,
15840
+ CardMediaSizePipe,
15841
+ LabelStarTrimPipe, PlaceHolderDirective,
15755
15842
  NumbersOnlyInputDirective,
15756
15843
  RenderUlvViewerDirective,
15757
15844
  RenderUlvPaginDirective,
@@ -15793,7 +15880,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
15793
15880
  OverflowTextDirective,
15794
15881
  ShortcutRegisterDirective,
15795
15882
  ShortcutHandlerDirective,
15796
- BarsaReadonlyDirective], imports: [CommonModule,
15883
+ BarsaReadonlyDirective,
15884
+ ResizeObserverDirective,
15885
+ ColumnValueDirective], imports: [CommonModule,
15797
15886
  BarsaNovinRayCoreRoutingModule,
15798
15887
  BarsaSapUiFormPageModule,
15799
15888
  ResizableModule,
@@ -15872,7 +15961,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15872
15961
  FilterInlineActionListPipe,
15873
15962
  IsImagePipe,
15874
15963
  ToolbarSettingsPipe,
15875
- CardMediaSizePipe, PlaceHolderDirective,
15964
+ CardMediaSizePipe,
15965
+ LabelStarTrimPipe, PlaceHolderDirective,
15876
15966
  NumbersOnlyInputDirective,
15877
15967
  RenderUlvViewerDirective,
15878
15968
  RenderUlvPaginDirective,
@@ -15914,7 +16004,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
15914
16004
  OverflowTextDirective,
15915
16005
  ShortcutRegisterDirective,
15916
16006
  ShortcutHandlerDirective,
15917
- BarsaReadonlyDirective] }); }
16007
+ BarsaReadonlyDirective,
16008
+ ResizeObserverDirective,
16009
+ ColumnValueDirective] }); }
15918
16010
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
15919
16011
  BarsaNovinRayCoreRoutingModule,
15920
16012
  BarsaSapUiFormPageModule,
@@ -15944,5 +16036,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
15944
16036
  * Generated bundle index. Do not edit.
15945
16037
  */
15946
16038
 
15947
- export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, 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, 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, ShortcutHandlerDirective, ShortcutRegisterDirective, 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 };
16039
+ export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, 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, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, 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, LabelStarTrimPipe, 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, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShortcutHandlerDirective, ShortcutRegisterDirective, 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 };
15948
16040
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map