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.
@@ -2678,11 +2678,16 @@ class PortalService {
2678
2678
  this._windowResize$ = new Subject();
2679
2679
  this._deviceLandscape$ = new BehaviorSubject(!window.matchMedia('(orientation: portrait)').matches);
2680
2680
  this._standalone$ = new BehaviorSubject(window.matchMedia('(display-mode: standalone)').matches);
2681
+ this._documentVisibilitychange$ = new Subject();
2681
2682
  this.initialize();
2682
2683
  this._initLandscape();
2683
2684
  this._initStandalone();
2685
+ this._initVisibilityChange();
2684
2686
  this._isAnonumousSource.next(BarsaApi.LoginFormData.IsAnonymous);
2685
2687
  }
2688
+ get documentVisibilitychange$() {
2689
+ return this._documentVisibilitychange$.asObservable();
2690
+ }
2686
2691
  get standalone$() {
2687
2692
  return this._standalone$.asObservable();
2688
2693
  }
@@ -3235,6 +3240,16 @@ class PortalService {
3235
3240
  });
3236
3241
  });
3237
3242
  }
3243
+ _initVisibilityChange() {
3244
+ document.addEventListener('visibilitychange', () => {
3245
+ if (document.visibilityState === 'visible') {
3246
+ this._documentVisibilitychange$.next(false);
3247
+ }
3248
+ else {
3249
+ this._documentVisibilitychange$.next(true);
3250
+ }
3251
+ });
3252
+ }
3238
3253
  _initStandalone() {
3239
3254
  window.matchMedia('(display-mode: standalone)').addEventListener('change', (e) => {
3240
3255
  const isMatch = e.matches;
@@ -4578,7 +4593,7 @@ class UlvMainService {
4578
4593
  this.visible$ = this._visibleSource.asObservable().pipe(takeUntil(this._onDestroy$));
4579
4594
  this.enable$ = this._enableSource.asObservable().pipe(takeUntil(this._onDestroy$));
4580
4595
  this.readonly$ = this._readonlySource.asObservable().pipe(takeUntil(this._onDestroy$));
4581
- this.menuItems$ = this._menuItemsSource.asObservable().pipe(takeUntil(this._onDestroy$), map((items) => items.filter((c) => c.itemId !== 'ExportToExcel' && c.itemId !== 'Delete')));
4596
+ this.menuItems$ = this._menuItemsSource.asObservable().pipe(takeUntil(this._onDestroy$), filter((items) => (items === null || items === void 0 ? void 0 : items.length) > 0), map((items) => items.filter((c) => c.itemId !== 'ExportToExcel' && c.itemId !== 'Delete')));
4582
4597
  this.title$ = this._titleSource.asObservable().pipe(takeUntil(this._onDestroy$));
4583
4598
  this.formPanelControlShowWindow$ = this._formPanelControlShowWindowSource
4584
4599
  .asObservable()
@@ -5809,9 +5824,9 @@ class ServiceWorkerNotificationService {
5809
5824
  this._logService = _logService;
5810
5825
  this._swPush = _swPush;
5811
5826
  this._portalService = _portalService;
5812
- this._notifications = [];
5813
5827
  _logService.info(`swPush enable ${_swPush.isEnabled}`);
5814
5828
  _swPush.notificationClicks.pipe(tap$1((c) => console.log(c))).subscribe((e) => {
5829
+ var _a;
5815
5830
  if (!e.notification.tag) {
5816
5831
  return;
5817
5832
  }
@@ -5820,7 +5835,7 @@ class ServiceWorkerNotificationService {
5820
5835
  if (actionTitle === '') {
5821
5836
  return;
5822
5837
  }
5823
- if (!BarsaApi.LoginFormData.IsUserLoggedIn) {
5838
+ if (!((_a = BarsaApi === null || BarsaApi === void 0 ? void 0 : BarsaApi.LoginFormData) === null || _a === void 0 ? void 0 : _a.IsUserLoggedIn)) {
5824
5839
  return;
5825
5840
  }
5826
5841
  this._portalService.ExecuteNotificationAction(e.notification.tag, actionTitle);
@@ -5860,7 +5875,6 @@ class ServiceWorkerNotificationService {
5860
5875
  url: `#/login?notificationTag=${tag}&action=${action.title}`
5861
5876
  };
5862
5877
  });
5863
- this._notifications.push(notificationItem);
5864
5878
  sw === null || sw === void 0 ? void 0 : sw.showNotification(notificationItem.Title, {
5865
5879
  dir,
5866
5880
  tag,
@@ -6185,6 +6199,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
6185
6199
  type: Injectable
6186
6200
  }], ctorParameters: function () { return []; } });
6187
6201
 
6202
+ class ServiceWorkerCommuncationService {
6203
+ constructor(_localStorage, _logService, _portalService) {
6204
+ this._localStorage = _localStorage;
6205
+ this._logService = _logService;
6206
+ this._portalService = _portalService;
6207
+ }
6208
+ init() {
6209
+ navigator.serviceWorker.ready.then((registration) => {
6210
+ if (registration.active) {
6211
+ this._serviceWorker = registration.active;
6212
+ this._subscribe();
6213
+ }
6214
+ });
6215
+ }
6216
+ _subscribe() {
6217
+ this._portalService.userLoggedIn$.pipe().subscribe((isLoggedIn) => this._isLoggedIn(isLoggedIn));
6218
+ this._portalService.documentVisibilitychange$
6219
+ .pipe()
6220
+ .subscribe((visibilitychange) => this._visibilitychange(visibilitychange));
6221
+ }
6222
+ _setDefaultOptions() {
6223
+ const token2 = this._localStorage.getItem(BarsaApi.LoginAction.token2StorageKey);
6224
+ const lang = BarsaApi.LoginFormData.Culture;
6225
+ const dir = BarsaApi.LoginFormData.IsRtl ? 'rtl' : 'ltr';
6226
+ this._postServiceWorker({ event: 'setOptions', options: { token2, lang, dir } });
6227
+ }
6228
+ _isLoggedIn(isLoggedIn) {
6229
+ this._postServiceWorker({ event: 'isLoggedIn', options: { isLoggedIn } });
6230
+ this._setDefaultOptions();
6231
+ }
6232
+ _visibilitychange(documentIsHidden) {
6233
+ this._postServiceWorker({ event: 'visibilitychange', options: { documentIsHidden } });
6234
+ }
6235
+ _postServiceWorker(message) {
6236
+ console.log(`post message to sw ${JSON.stringify(message, null, 2)}`);
6237
+ if (!this._serviceWorker) {
6238
+ this._logService.warn(`service worker is undefined.`);
6239
+ return;
6240
+ }
6241
+ this._serviceWorker.postMessage(message);
6242
+ }
6243
+ }
6244
+ 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 });
6245
+ ServiceWorkerCommuncationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ServiceWorkerCommuncationService });
6246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: ServiceWorkerCommuncationService, decorators: [{
6247
+ type: Injectable
6248
+ }], ctorParameters: function () { return [{ type: LocalStorageService }, { type: LogService }, { type: PortalService }]; } });
6249
+
6188
6250
  class FieldBaseComponent extends BaseComponent {
6189
6251
  constructor(_portalService, _bbbPipe, _picFieldSrc, _numeralPipe, _el, _cdr, _renderer2, _activatedRoute, _domSanitizer, _dialogService, _uploadService, _dateService, _audioRecorder, _videoRecoder, _columnService) {
6190
6252
  super();
@@ -8388,6 +8450,12 @@ class FormComponent extends BaseComponent {
8388
8450
  }
8389
8451
  _renderFormPanelUi(customFormPanelUi) {
8390
8452
  return __awaiter(this, void 0, void 0, function* () {
8453
+ if (this.params.isSimple) {
8454
+ if (!customFormPanelUi.Setting.View.ExtraJsonProp) {
8455
+ customFormPanelUi.Setting.View.ExtraJsonProp = {};
8456
+ }
8457
+ customFormPanelUi.Setting.View.ExtraJsonProp.IsSimple = this.params.isSimple;
8458
+ }
8391
8459
  const customUiSetting = BarsaApi.Common.Util.TryGetValue(customFormPanelUi.Setting, 'View.CustomUi', null);
8392
8460
  const { moduleName, modulePath, componentName, selector } = getComponentDefined(customFormPanelUi, customUiSetting);
8393
8461
  this.portalService
@@ -8509,7 +8577,7 @@ class BaseColumnPropsComponent extends BaseComponent {
8509
8577
  }
8510
8578
  }
8511
8579
  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 });
8512
- 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 });
8580
+ 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 });
8513
8581
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BaseColumnPropsComponent, decorators: [{
8514
8582
  type: Component,
8515
8583
  args: [{
@@ -8565,6 +8633,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
8565
8633
  type: Input
8566
8634
  }], deviceSize: [{
8567
8635
  type: Input
8636
+ }], customComponent: [{
8637
+ type: Input
8568
8638
  }] } });
8569
8639
 
8570
8640
  class TilePropsComponent extends BaseComponent {
@@ -11652,6 +11722,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
11652
11722
  IndexedDbService,
11653
11723
  BbbTranslatePipe,
11654
11724
  BarsaStorageService,
11725
+ ServiceWorkerCommuncationService,
11655
11726
  {
11656
11727
  provide: ErrorHandler,
11657
11728
  useClass: GlobalErrorHandler
@@ -11669,11 +11740,12 @@ class BarsaNovinRayCoreModule extends BaseModule {
11669
11740
  },
11670
11741
  {
11671
11742
  provide: APP_INITIALIZER,
11672
- useFactory: (promptUpdateService, barsaStorageService) => () => {
11743
+ useFactory: (promptUpdateService, barsaStorageService, swCommunication) => () => {
11673
11744
  promptUpdateService.checkForUpdate();
11674
11745
  barsaStorageService.init();
11746
+ swCommunication.init();
11675
11747
  },
11676
- deps: [PromptUpdateService, BarsaStorageService],
11748
+ deps: [PromptUpdateService, BarsaStorageService, ServiceWorkerCommuncationService],
11677
11749
  multi: true
11678
11750
  },
11679
11751
  {
@@ -11880,5 +11952,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11880
11952
  * Generated bundle index. Do not edit.
11881
11953
  */
11882
11954
 
11883
- 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 };
11955
+ 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 };
11884
11956
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map