barsa-novin-ray-core 2.2.11 → 2.2.13

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.
@@ -2289,6 +2289,40 @@ function forbiddenValidator(nameRe) {
2289
2289
  return !forbidden ? { forbiddenName: { value: control.value } } : null;
2290
2290
  };
2291
2291
  }
2292
+ function GetImgTags(setting) {
2293
+ let str = '';
2294
+ for (let i = 0; i < setting.sources.length; i++) {
2295
+ str +=
2296
+ "<img src='" +
2297
+ setting.sources[i] +
2298
+ "' class='" +
2299
+ getCenter(setting.isCenter) +
2300
+ "' style='" +
2301
+ setting.customCss +
2302
+ "' /> ";
2303
+ }
2304
+ return str;
2305
+ }
2306
+ function ImagetoPrint(setting) {
2307
+ return ('<html><head>' +
2308
+ '<script src="/Lib/scripts/jquery-x.min.js"></script><script src="Lib/ImagePrint/ImagePrintInternal.js"></script>' +
2309
+ '</head><body style="margin : 0 1 0 1">' +
2310
+ GetImgTags(setting) +
2311
+ '</body></html>');
2312
+ }
2313
+ function PrintImage(setting) {
2314
+ let pageLink = 'about:blank';
2315
+ let pwa = window.open(pageLink, '_new');
2316
+ pwa?.document.open();
2317
+ let imageToPrint = ImagetoPrint(setting);
2318
+ pwa?.document.write(imageToPrint);
2319
+ pwa?.document.close();
2320
+ }
2321
+ function getCenter(isCenter) {
2322
+ if (isCenter)
2323
+ return 'center';
2324
+ return '';
2325
+ }
2292
2326
 
2293
2327
  class ApiService {
2294
2328
  constructor(httpClient) {
@@ -5567,6 +5601,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
5567
5601
  }]
5568
5602
  }] });
5569
5603
 
5604
+ class IsImagePipe {
5605
+ transform(type
5606
+ // fileCount: number
5607
+ ) {
5608
+ return isImage(type);
5609
+ }
5610
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5611
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, name: "isImageType" }); }
5612
+ }
5613
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, decorators: [{
5614
+ type: Pipe,
5615
+ args: [{
5616
+ name: 'isImageType',
5617
+ standalone: false
5618
+ }]
5619
+ }] });
5620
+
5570
5621
  class UlvMainService {
5571
5622
  constructor(_bbbPipe, _apiService) {
5572
5623
  this._bbbPipe = _bbbPipe;
@@ -7077,7 +7128,6 @@ class NotificationService {
7077
7128
  this._portalService = _portalService;
7078
7129
  this._ngZone = _ngZone;
7079
7130
  this._notifications$ = new BehaviorSubject([]);
7080
- this._notificationCount$ = new BehaviorSubject({ unread: 0, all: 0 });
7081
7131
  this._notificationUnreadCount$ = new BehaviorSubject(0);
7082
7132
  this._notificationLoading$ = new BehaviorSubject(false);
7083
7133
  this._notifiationCountLoaded$ = new BehaviorSubject(false);
@@ -7090,8 +7140,8 @@ class NotificationService {
7090
7140
  get notificationCountLoaded$() {
7091
7141
  return this._notifiationCountLoaded$.asObservable();
7092
7142
  }
7093
- get notificationCount$() {
7094
- return this._notificationCount$.asObservable();
7143
+ get notificationUnreadCount$() {
7144
+ return this._notificationUnreadCount$.asObservable();
7095
7145
  }
7096
7146
  get notifications$() {
7097
7147
  return this._notifications$.asObservable().pipe();
@@ -7099,28 +7149,6 @@ class NotificationService {
7099
7149
  get notificationLoading$() {
7100
7150
  return this._notificationLoading$.asObservable();
7101
7151
  }
7102
- loadMore() {
7103
- this.loadNotifications(this.pageIndex);
7104
- }
7105
- setNotificationViewed(tags) {
7106
- BarsaApi.Bw.RunBlMethodAsync({
7107
- Parameters: [tags],
7108
- Method: 'SetNotificationViewed',
7109
- SuccessFn: () => {
7110
- const molistCurr = this._notifications$.getValue();
7111
- const updatedUnreadMoList = molistCurr.map((c) => ({
7112
- ...c,
7113
- Unread: tags.indexOf(c.Tag) > -1 ? false : c.Unread
7114
- }));
7115
- this._notifications$.next([...updatedUnreadMoList]);
7116
- this.increaseNotifcationCount(-tags.length, 0);
7117
- return tags;
7118
- },
7119
- FailFn: (e) => {
7120
- this._logService.error(e);
7121
- }
7122
- });
7123
- }
7124
7152
  ShowNotificationRelatedMo(e) {
7125
7153
  const ee = {
7126
7154
  ...e,
@@ -7137,50 +7165,11 @@ class NotificationService {
7137
7165
  this._portalService.ShowForm(ee);
7138
7166
  }
7139
7167
  handleTopic(eventTopic, content, ownerKey) {
7140
- if (eventTopic === 'DeleteNotificationMessage') {
7141
- const { Tags } = content;
7142
- const notifications = this._notifications$.getValue();
7143
- const { findInNotifications, unreadCount, count } = this._findNotificationsMessage(Tags, notifications);
7144
- if (findInNotifications) {
7145
- this._notifications$.next(notifications.filter((c) => !Tags.includes(c.Tag)));
7146
- }
7147
- if (unreadCount > 0) {
7148
- this.increaseNotifcationCount(-unreadCount, -count);
7149
- }
7150
- }
7151
- else if (eventTopic === 'SetReadNotificationMessage') {
7152
- const notifications = this._notifications$.getValue();
7153
- const { Tags } = content;
7154
- Tags.forEach((tag) => {
7155
- const foundIndex = notifications.findIndex((c) => c.Tag === tag);
7156
- if (foundIndex > -1) {
7157
- notifications[foundIndex] = {
7158
- ...notifications[foundIndex],
7159
- Unread: false,
7160
- Unread$Caption: 'نادرست'
7161
- };
7162
- this._notifications$.next([...notifications]);
7163
- }
7164
- });
7165
- const notificationsCount = this._notificationCount$.getValue();
7166
- this.increaseNotifcationCount(-Tags.length, notificationsCount.all);
7167
- }
7168
- }
7169
- _findNotificationsMessage(Tags, notifications) {
7170
- let findInNotifications = false;
7171
- let unreadCount = 0;
7172
- let count = 0;
7173
- Tags.forEach((tag) => {
7174
- const foundNotification = notifications.find((c) => c.Tag === tag);
7175
- if (foundNotification) {
7176
- findInNotifications = true;
7177
- count++;
7178
- if (foundNotification.Unread) {
7179
- unreadCount++;
7180
- }
7181
- }
7182
- });
7183
- return { findInNotifications, unreadCount, count };
7168
+ if (eventTopic === 'RefreshNotificationUnreadCount') {
7169
+ setTimeout(() => {
7170
+ this.loadUnreadNotificationCount();
7171
+ }, 1000);
7172
+ }
7184
7173
  }
7185
7174
  addNotification(msg, title, type, image, mo, uiOptions, otherOptions) {
7186
7175
  this._ngZone.run(() => {
@@ -7207,81 +7196,24 @@ class NotificationService {
7207
7196
  if (parsedMo) {
7208
7197
  const molist = this._notifications$.getValue();
7209
7198
  this._notifications$.next([newNotification, ...molist]);
7210
- this.increaseNotifcationCount(1, 1);
7211
7199
  }
7212
7200
  this.showNotification(newNotification, parsedMo, uiOptions, otherOptions);
7213
7201
  }
7214
7202
  });
7215
7203
  }
7216
- increaseNotifcationCount(unread, count) {
7217
- const countValue = this._notificationCount$.getValue();
7218
- const sumUnread = countValue.unread + +unread;
7219
- const sumAll = countValue.all + +count;
7220
- this._notificationCount$.next({ unread: sumUnread > 0 ? sumUnread : 0, all: sumAll > 0 ? sumAll : 0 });
7221
- }
7222
7204
  loadUnreadNotificationCount() {
7223
7205
  BarsaApi.Bw.RunBlMethodAsync({
7224
7206
  Parameters: [BarsaApi.LoginFormData.PortalId],
7225
- Method: 'GetShellbarNotificationCountByPortalId',
7207
+ Method: 'GetShellbarNotificationUnreadCountByPortalId',
7226
7208
  SuccessFn: (e) => {
7227
- this._updateUnreadAndCount(e);
7228
7209
  this._notifiationCountLoaded$.next(true);
7210
+ this._notificationUnreadCount$.next(e);
7229
7211
  },
7230
7212
  FailFn: (e) => {
7231
7213
  this._logService.error(e);
7232
7214
  }
7233
7215
  });
7234
7216
  }
7235
- loadNotifications(pageIndex = 0) {
7236
- if (pageIndex + 1 > this.pageCount) {
7237
- return;
7238
- }
7239
- this.notificationLoading(true);
7240
- BarsaApi.Bw.RunBlMethodAsync({
7241
- Parameters: [pageIndex, BarsaApi.LoginFormData.PortalId],
7242
- Method: 'GetShellbarNotificationsByPortalId',
7243
- SuccessFn: (e) => {
7244
- const notifications = this._notifications$.getValue();
7245
- const notifListOfTags = notifications.map((c) => c.Tag);
7246
- const molist = e.MoList.filter((c) => notifListOfTags.indexOf(c.Tag) === -1).map((mo) => this._prepareProperties(mo, mo, mo.IMessage?.Content));
7247
- this._notifications$.next([...notifications, ...molist]);
7248
- this.pageCount = +e.PageCount;
7249
- this.pageIndex = pageIndex + 1;
7250
- this.notificationLoading(false);
7251
- },
7252
- FailFn: (e) => {
7253
- this._logService.error(e);
7254
- this.notificationLoading(false);
7255
- }
7256
- });
7257
- }
7258
- removeNotification(molist, closeNotification = true) {
7259
- const moIds = this._setNotificationLoading(molist, true);
7260
- BarsaApi.Bw.RunBlMethodAsync({
7261
- Parameters: [moIds, BarsaApi.LoginFormData.PortalId],
7262
- Method: 'RemoveShellbarNotification',
7263
- SuccessFn: (e) => {
7264
- const notificationList = this._notifications$.getValue();
7265
- this._updateUnreadAndCount(e);
7266
- const newMoList = notificationList.filter((c) => moIds.indexOf(c.Id) === -1);
7267
- this._notifications$.next(newMoList);
7268
- if (closeNotification) {
7269
- this._serviceWorkerNotification.closeNotifications(moIds);
7270
- }
7271
- if (this._notificationCount$.getValue().all > 0) {
7272
- this.loadNotifications(this.pageIndex - 1);
7273
- }
7274
- },
7275
- FailFn: (e) => {
7276
- this._logService.error(e);
7277
- this._setNotificationLoading(molist, false);
7278
- }
7279
- });
7280
- }
7281
- _updateUnreadAndCount(e) {
7282
- this._notificationUnreadCount$.next(+e.Unread);
7283
- this._notificationCount$.next({ unread: +e.Unread, all: +e.All });
7284
- }
7285
7217
  get SupportNotifications() {
7286
7218
  return typeof Notification !== 'undefined' && this._serviceWorkerNotification.isEnabled;
7287
7219
  }
@@ -13520,6 +13452,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
13520
13452
  }]
13521
13453
  }], ctorParameters: () => [{ type: i0.ElementRef }] });
13522
13454
 
13455
+ class PrintFilesDirective {
13456
+ constructor() { }
13457
+ _handleClick() {
13458
+ const fullImageList = this.files?.map(function (record) {
13459
+ return record.mediaUrl;
13460
+ });
13461
+ const setting = {
13462
+ sources: fullImageList,
13463
+ customCss: "width:100%;margin-top:10px;",
13464
+ isCenter: true,
13465
+ header: 'لیست تصاویر',
13466
+ };
13467
+ PrintImage(setting);
13468
+ }
13469
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PrintFilesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
13470
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: PrintFilesDirective, selector: "[printFiles]", inputs: { files: "files", file: "file", isImageGallery: "isImageGallery", component: "component" }, host: { listeners: { "click": "_handleClick()" } }, ngImport: i0 }); }
13471
+ }
13472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PrintFilesDirective, decorators: [{
13473
+ type: Directive,
13474
+ args: [{
13475
+ selector: '[printFiles]',
13476
+ standalone: false
13477
+ }]
13478
+ }], ctorParameters: () => [], propDecorators: { files: [{
13479
+ type: Input
13480
+ }], file: [{
13481
+ type: Input
13482
+ }], isImageGallery: [{
13483
+ type: Input
13484
+ }], component: [{
13485
+ type: Input
13486
+ }], _handleClick: [{
13487
+ type: HostListener,
13488
+ args: ['click']
13489
+ }] } });
13490
+
13523
13491
  class PortalDynamicPageResolver {
13524
13492
  constructor(portalService) {
13525
13493
  this.portalService = portalService;
@@ -14897,7 +14865,8 @@ const directives = [
14897
14865
  LoadExternalFilesDirective,
14898
14866
  StopPropagationDirective,
14899
14867
  PreventDefaultDirective,
14900
- RenderUlvDirective
14868
+ RenderUlvDirective,
14869
+ PrintFilesDirective
14901
14870
  ];
14902
14871
  const pipes = [
14903
14872
  NumeralPipe,
@@ -14950,7 +14919,8 @@ const pipes = [
14950
14919
  StringToNumberPipe,
14951
14920
  ColumnValueOfParametersPipe,
14952
14921
  HideAcceptCancelButtonsPipe,
14953
- FilterInlineActionListPipe
14922
+ FilterInlineActionListPipe,
14923
+ IsImagePipe
14954
14924
  ];
14955
14925
  const functionL1 = function () {
14956
14926
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -15140,7 +15110,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15140
15110
  StringToNumberPipe,
15141
15111
  ColumnValueOfParametersPipe,
15142
15112
  HideAcceptCancelButtonsPipe,
15143
- FilterInlineActionListPipe, PlaceHolderDirective,
15113
+ FilterInlineActionListPipe,
15114
+ IsImagePipe, PlaceHolderDirective,
15144
15115
  NumbersOnlyInputDirective,
15145
15116
  RenderUlvViewerDirective,
15146
15117
  RenderUlvPaginDirective,
@@ -15171,7 +15142,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15171
15142
  LoadExternalFilesDirective,
15172
15143
  StopPropagationDirective,
15173
15144
  PreventDefaultDirective,
15174
- RenderUlvDirective], imports: [CommonModule,
15145
+ RenderUlvDirective,
15146
+ PrintFilesDirective], imports: [CommonModule,
15175
15147
  BarsaNovinRayCoreRoutingModule,
15176
15148
  BarsaSapUiFormPageModule,
15177
15149
  ResizableModule,
@@ -15249,7 +15221,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15249
15221
  StringToNumberPipe,
15250
15222
  ColumnValueOfParametersPipe,
15251
15223
  HideAcceptCancelButtonsPipe,
15252
- FilterInlineActionListPipe, PlaceHolderDirective,
15224
+ FilterInlineActionListPipe,
15225
+ IsImagePipe, PlaceHolderDirective,
15253
15226
  NumbersOnlyInputDirective,
15254
15227
  RenderUlvViewerDirective,
15255
15228
  RenderUlvPaginDirective,
@@ -15280,7 +15253,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
15280
15253
  LoadExternalFilesDirective,
15281
15254
  StopPropagationDirective,
15282
15255
  PreventDefaultDirective,
15283
- RenderUlvDirective] }); }
15256
+ RenderUlvDirective,
15257
+ PrintFilesDirective] }); }
15284
15258
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
15285
15259
  BarsaNovinRayCoreRoutingModule,
15286
15260
  BarsaSapUiFormPageModule,
@@ -15310,5 +15284,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
15310
15284
  * Generated bundle index. Do not edit.
15311
15285
  */
15312
15286
 
15313
- 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, 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, 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, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, Login2Component, LoginController, LoginEnterMobileComponent, LoginVerificationComponent, LoginVerificationController, 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, 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, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, 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 };
15287
+ 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, 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, 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, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, Login2Component, LoginController, LoginEnterMobileComponent, LoginVerificationComponent, LoginVerificationController, 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, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, 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 };
15314
15288
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map