barsa-novin-ray-core 1.0.310 → 1.0.312

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.
@@ -2654,11 +2654,16 @@ class PortalService {
2654
2654
  this._windowResize$ = new Subject();
2655
2655
  this._deviceLandscape$ = new BehaviorSubject(!window.matchMedia('(orientation: portrait)').matches);
2656
2656
  this._standalone$ = new BehaviorSubject(window.matchMedia('(display-mode: standalone)').matches);
2657
+ this._documentVisibilitychange$ = new Subject();
2657
2658
  this.initialize();
2658
2659
  this._initLandscape();
2659
2660
  this._initStandalone();
2661
+ this._initVisibilityChange();
2660
2662
  this._isAnonumousSource.next(BarsaApi.LoginFormData.IsAnonymous);
2661
2663
  }
2664
+ get documentVisibilitychange$() {
2665
+ return this._documentVisibilitychange$.asObservable();
2666
+ }
2662
2667
  get standalone$() {
2663
2668
  return this._standalone$.asObservable();
2664
2669
  }
@@ -3207,6 +3212,16 @@ class PortalService {
3207
3212
  });
3208
3213
  });
3209
3214
  }
3215
+ _initVisibilityChange() {
3216
+ document.addEventListener('visibilitychange', () => {
3217
+ if (document.visibilityState === 'visible') {
3218
+ this._documentVisibilitychange$.next(false);
3219
+ }
3220
+ else {
3221
+ this._documentVisibilitychange$.next(true);
3222
+ }
3223
+ });
3224
+ }
3210
3225
  _initStandalone() {
3211
3226
  window.matchMedia('(display-mode: standalone)').addEventListener('change', (e) => {
3212
3227
  const isMatch = e.matches;
@@ -4540,7 +4555,7 @@ class UlvMainService {
4540
4555
  this.visible$ = this._visibleSource.asObservable().pipe(takeUntil(this._onDestroy$));
4541
4556
  this.enable$ = this._enableSource.asObservable().pipe(takeUntil(this._onDestroy$));
4542
4557
  this.readonly$ = this._readonlySource.asObservable().pipe(takeUntil(this._onDestroy$));
4543
- this.menuItems$ = this._menuItemsSource.asObservable().pipe(takeUntil(this._onDestroy$), map((items) => items.filter((c) => c.itemId !== 'ExportToExcel' && c.itemId !== 'Delete')));
4558
+ this.menuItems$ = this._menuItemsSource.asObservable().pipe(takeUntil(this._onDestroy$), filter((items) => items?.length > 0), map((items) => items.filter((c) => c.itemId !== 'ExportToExcel' && c.itemId !== 'Delete')));
4544
4559
  this.title$ = this._titleSource.asObservable().pipe(takeUntil(this._onDestroy$));
4545
4560
  this.formPanelControlShowWindow$ = this._formPanelControlShowWindowSource
4546
4561
  .asObservable()
@@ -5768,7 +5783,6 @@ class ServiceWorkerNotificationService {
5768
5783
  this._logService = _logService;
5769
5784
  this._swPush = _swPush;
5770
5785
  this._portalService = _portalService;
5771
- this._notifications = [];
5772
5786
  _logService.info(`swPush enable ${_swPush.isEnabled}`);
5773
5787
  _swPush.notificationClicks.pipe(tap$1((c) => console.log(c))).subscribe((e) => {
5774
5788
  if (!e.notification.tag) {
@@ -5779,7 +5793,7 @@ class ServiceWorkerNotificationService {
5779
5793
  if (actionTitle === '') {
5780
5794
  return;
5781
5795
  }
5782
- if (!BarsaApi.LoginFormData.IsUserLoggedIn) {
5796
+ if (!BarsaApi?.LoginFormData?.IsUserLoggedIn) {
5783
5797
  return;
5784
5798
  }
5785
5799
  this._portalService.ExecuteNotificationAction(e.notification.tag, actionTitle);
@@ -5816,7 +5830,6 @@ class ServiceWorkerNotificationService {
5816
5830
  url: `#/login?notificationTag=${tag}&action=${action.title}`
5817
5831
  };
5818
5832
  });
5819
- this._notifications.push(notificationItem);
5820
5833
  sw?.showNotification(notificationItem.Title, {
5821
5834
  dir,
5822
5835
  tag,
@@ -6152,6 +6165,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
6152
6165
  type: Injectable
6153
6166
  }], ctorParameters: function () { return []; } });
6154
6167
 
6168
+ class ServiceWorkerCommuncationService {
6169
+ constructor(_localStorage, _logService, _portalService) {
6170
+ this._localStorage = _localStorage;
6171
+ this._logService = _logService;
6172
+ this._portalService = _portalService;
6173
+ }
6174
+ init() {
6175
+ navigator.serviceWorker.ready.then((registration) => {
6176
+ if (registration.active) {
6177
+ this._serviceWorker = registration.active;
6178
+ this._subscribe();
6179
+ }
6180
+ });
6181
+ }
6182
+ _subscribe() {
6183
+ this._portalService.userLoggedIn$.pipe().subscribe((isLoggedIn) => this._isLoggedIn(isLoggedIn));
6184
+ this._portalService.documentVisibilitychange$
6185
+ .pipe()
6186
+ .subscribe((visibilitychange) => this._visibilitychange(visibilitychange));
6187
+ }
6188
+ _setDefaultOptions() {
6189
+ const token2 = this._localStorage.getItem(BarsaApi.LoginAction.token2StorageKey);
6190
+ const lang = BarsaApi.LoginFormData.Culture;
6191
+ const dir = BarsaApi.LoginFormData.IsRtl ? 'rtl' : 'ltr';
6192
+ this._postServiceWorker({ event: 'setOptions', options: { token2, lang, dir } });
6193
+ }
6194
+ _isLoggedIn(isLoggedIn) {
6195
+ this._postServiceWorker({ event: 'isLoggedIn', options: { isLoggedIn } });
6196
+ this._setDefaultOptions();
6197
+ }
6198
+ _visibilitychange(documentIsHidden) {
6199
+ this._postServiceWorker({ event: 'visibilitychange', options: { documentIsHidden } });
6200
+ }
6201
+ _postServiceWorker(message) {
6202
+ console.log(`post message to sw ${JSON.stringify(message, null, 2)}`);
6203
+ if (!this._serviceWorker) {
6204
+ this._logService.warn(`service worker is undefined.`);
6205
+ return;
6206
+ }
6207
+ this._serviceWorker.postMessage(message);
6208
+ }
6209
+ }
6210
+ ServiceWorkerCommuncationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ServiceWorkerCommuncationService, deps: [{ token: LocalStorageService }, { token: LogService }, { token: PortalService }], target: i0.ɵɵFactoryTarget.Injectable });
6211
+ ServiceWorkerCommuncationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ServiceWorkerCommuncationService });
6212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ServiceWorkerCommuncationService, decorators: [{
6213
+ type: Injectable
6214
+ }], ctorParameters: function () { return [{ type: LocalStorageService }, { type: LogService }, { type: PortalService }]; } });
6215
+
6155
6216
  class FieldBaseComponent extends BaseComponent {
6156
6217
  constructor(_portalService, _bbbPipe, _picFieldSrc, _numeralPipe, _el, _cdr, _renderer2, _activatedRoute, _domSanitizer, _dialogService, _uploadService, _dateService, _audioRecorder, _videoRecoder, _columnService) {
6157
6218
  super();
@@ -8338,6 +8399,12 @@ class FormComponent extends BaseComponent {
8338
8399
  });
8339
8400
  }
8340
8401
  async _renderFormPanelUi(customFormPanelUi) {
8402
+ if (this.params.isSimple) {
8403
+ if (!customFormPanelUi.Setting.View.ExtraJsonProp) {
8404
+ customFormPanelUi.Setting.View.ExtraJsonProp = {};
8405
+ }
8406
+ customFormPanelUi.Setting.View.ExtraJsonProp.IsSimple = this.params.isSimple;
8407
+ }
8341
8408
  const customUiSetting = BarsaApi.Common.Util.TryGetValue(customFormPanelUi.Setting, 'View.CustomUi', null);
8342
8409
  const { moduleName, modulePath, componentName, selector } = getComponentDefined(customFormPanelUi, customUiSetting);
8343
8410
  this.portalService
@@ -8458,7 +8525,7 @@ class BaseColumnPropsComponent extends BaseComponent {
8458
8525
  }
8459
8526
  }
8460
8527
  BaseColumnPropsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BaseColumnPropsComponent, deps: [{ token: ColumnService, optional: true, self: true }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
8461
- BaseColumnPropsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: BaseColumnPropsComponent, selector: "bnrc-base-column-props", inputs: { allColumns: "allColumns", column: "column", mo: "mo", index: "index", editMode: "editMode", customRowHeight: "customRowHeight", controlUi: "controlUi", formLayoutShowLabel: "formLayoutShowLabel", isChecked: "isChecked", isNewInlineMo: "isNewInlineMo", layout94: "layout94", detailsComponentSetting: "detailsComponentSetting", value: "value", icon: "icon", rtl: "rtl", deviceName: "deviceName", deviceSize: "deviceSize" }, outputs: { save: "save", cancel: "cancel", tab: "tab", changeToEditMode: "changeToEditMode" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8528
+ BaseColumnPropsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: BaseColumnPropsComponent, selector: "bnrc-base-column-props", inputs: { allColumns: "allColumns", column: "column", mo: "mo", index: "index", editMode: "editMode", customRowHeight: "customRowHeight", controlUi: "controlUi", formLayoutShowLabel: "formLayoutShowLabel", isChecked: "isChecked", isNewInlineMo: "isNewInlineMo", layout94: "layout94", detailsComponentSetting: "detailsComponentSetting", value: "value", icon: "icon", rtl: "rtl", deviceName: "deviceName", deviceSize: "deviceSize", customComponent: "customComponent" }, outputs: { save: "save", cancel: "cancel", tab: "tab", changeToEditMode: "changeToEditMode" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8462
8529
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BaseColumnPropsComponent, decorators: [{
8463
8530
  type: Component,
8464
8531
  args: [{
@@ -8512,6 +8579,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
8512
8579
  type: Input
8513
8580
  }], deviceSize: [{
8514
8581
  type: Input
8582
+ }], customComponent: [{
8583
+ type: Input
8515
8584
  }] } });
8516
8585
 
8517
8586
  class TilePropsComponent extends BaseComponent {
@@ -11548,6 +11617,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
11548
11617
  IndexedDbService,
11549
11618
  BbbTranslatePipe,
11550
11619
  BarsaStorageService,
11620
+ ServiceWorkerCommuncationService,
11551
11621
  {
11552
11622
  provide: ErrorHandler,
11553
11623
  useClass: GlobalErrorHandler
@@ -11565,11 +11635,12 @@ class BarsaNovinRayCoreModule extends BaseModule {
11565
11635
  },
11566
11636
  {
11567
11637
  provide: APP_INITIALIZER,
11568
- useFactory: (promptUpdateService, barsaStorageService) => () => {
11638
+ useFactory: (promptUpdateService, barsaStorageService, swCommunication) => () => {
11569
11639
  promptUpdateService.checkForUpdate();
11570
11640
  barsaStorageService.init();
11641
+ swCommunication.init();
11571
11642
  },
11572
- deps: [PromptUpdateService, BarsaStorageService],
11643
+ deps: [PromptUpdateService, BarsaStorageService, ServiceWorkerCommuncationService],
11573
11644
  multi: true
11574
11645
  },
11575
11646
  {
@@ -11775,5 +11846,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11775
11846
  * Generated bundle index. Do not edit.
11776
11847
  */
11777
11848
 
11778
- 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, 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, FilterColumnsByDetailsPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FindColumnByDbNamePipe, FioriIconPipe, FormBaseComponent, 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, 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, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RowDataOption, SanitizeTextPipe, SeperatorFixPipe, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortPipe, SortSetting, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableResizerDirective, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formatBytes, fromIntersectionObserver, genrateInlineMoId, 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, requestAnimationFramePolyfill, shallowEqual, throwIfAlreadyLoaded, toNumber };
11849
+ 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, 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, FilterColumnsByDetailsPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FindColumnByDbNamePipe, FioriIconPipe, FormBaseComponent, 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, 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, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RowDataOption, SanitizeTextPipe, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortPipe, SortSetting, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableResizerDirective, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formatBytes, fromIntersectionObserver, genrateInlineMoId, 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, requestAnimationFramePolyfill, shallowEqual, throwIfAlreadyLoaded, toNumber };
11779
11850
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map