barsa-novin-ray-core 2.3.142 → 2.3.143

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.
@@ -5398,9 +5398,12 @@ class FormPanelService extends BaseComponent {
5398
5398
  vid: this._viewSource.getValue()?.TypeViewId,
5399
5399
  bc: breadCrumb ? breadCrumb : mo.$State === 'New' ? mo.$TypeDefName : mo.$Caption
5400
5400
  };
5401
+ const normalize = (v) => (v === 'undefined' || v === 'null' ? undefined : v);
5402
+ const currentRepId = normalize(currentParams.repid);
5403
+ const isSameReport = currentRepId == null || currentRepId === queryParamsToUpdate.repid;
5401
5404
  if (currentParams.id === queryParamsToUpdate.id &&
5402
5405
  currentParams.tyid === queryParamsToUpdate.tyid &&
5403
- (currentParams.repid === queryParamsToUpdate.repid || typeof currentParams.repid === 'undefined') &&
5406
+ isSameReport &&
5404
5407
  currentParams.vid === queryParamsToUpdate.vid) {
5405
5408
  return;
5406
5409
  }
@@ -6265,7 +6268,7 @@ function reportRoutes(authGuard = false) {
6265
6268
  return {
6266
6269
  path: 'report/:id',
6267
6270
  canActivate: authGuard ? [AuthGuard] : [],
6268
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CYc_aLhI.mjs').then((m) => m.BarsaReportPageModule),
6271
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-ObpSr8cc.mjs').then((m) => m.BarsaReportPageModule),
6269
6272
  resolve: {
6270
6273
  breadcrumb: ReportBreadcrumbResolver
6271
6274
  }
@@ -12622,11 +12625,12 @@ class TilePropsComponent extends BaseComponent {
12622
12625
  super(...arguments);
12623
12626
  this.hideClick = new EventEmitter();
12624
12627
  this.renameClick = new EventEmitter();
12628
+ this.changeGroupClick = new EventEmitter();
12625
12629
  this._renderer2 = inject(Renderer2);
12626
12630
  this._cdr = inject(ChangeDetectorRef);
12627
12631
  }
12628
12632
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TilePropsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12629
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: TilePropsComponent, isStandalone: false, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", groupType: "groupType", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12633
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: TilePropsComponent, isStandalone: false, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", groupType: "groupType", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick", changeGroupClick: "changeGroupClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12630
12634
  }
12631
12635
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TilePropsComponent, decorators: [{
12632
12636
  type: Component,
@@ -12660,6 +12664,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12660
12664
  type: Output
12661
12665
  }], renameClick: [{
12662
12666
  type: Output
12667
+ }], changeGroupClick: [{
12668
+ type: Output
12663
12669
  }] } });
12664
12670
 
12665
12671
  class FormFieldReportPageComponent extends BaseComponent {
@@ -14577,6 +14583,7 @@ class DynamicTileGroupComponent extends BaseDynamicComponent {
14577
14583
  this.tilesDropped = new EventEmitter();
14578
14584
  this.hideAppTileClick = new EventEmitter();
14579
14585
  this.renameAppTileClick = new EventEmitter();
14586
+ this.changeGroupAppTileClick = new EventEmitter();
14580
14587
  this.toggleGroup = new EventEmitter();
14581
14588
  this.resetGroup = new EventEmitter();
14582
14589
  this.deleteGroup = new EventEmitter();
@@ -14589,7 +14596,7 @@ class DynamicTileGroupComponent extends BaseDynamicComponent {
14589
14596
  }
14590
14597
  }
14591
14598
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicTileGroupComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14592
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicTileGroupComponent, isStandalone: false, selector: "bnrc-dynamic-tile-group,[dynamictilegroup]", inputs: { appTileGroup: "appTileGroup", tabRef: "tabRef", stackContent: "stackContent", cssStyles: "cssStyles", edit: "edit", rtl: "rtl", isAppTileSubGroup: "isAppTileSubGroup", deviceSize: "deviceSize", isLast: "isLast" }, outputs: { tilesDropped: "tilesDropped", hideAppTileClick: "hideAppTileClick", renameAppTileClick: "renameAppTileClick", toggleGroup: "toggleGroup", resetGroup: "resetGroup", deleteGroup: "deleteGroup" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14599
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicTileGroupComponent, isStandalone: false, selector: "bnrc-dynamic-tile-group,[dynamictilegroup]", inputs: { appTileGroup: "appTileGroup", tabRef: "tabRef", stackContent: "stackContent", cssStyles: "cssStyles", edit: "edit", rtl: "rtl", isAppTileSubGroup: "isAppTileSubGroup", deviceSize: "deviceSize", isLast: "isLast" }, outputs: { tilesDropped: "tilesDropped", hideAppTileClick: "hideAppTileClick", renameAppTileClick: "renameAppTileClick", changeGroupAppTileClick: "changeGroupAppTileClick", toggleGroup: "toggleGroup", resetGroup: "resetGroup", deleteGroup: "deleteGroup" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14593
14600
  }
14594
14601
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicTileGroupComponent, decorators: [{
14595
14602
  type: Component,
@@ -14623,6 +14630,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
14623
14630
  type: Output
14624
14631
  }], renameAppTileClick: [{
14625
14632
  type: Output
14633
+ }], changeGroupAppTileClick: [{
14634
+ type: Output
14626
14635
  }], toggleGroup: [{
14627
14636
  type: Output
14628
14637
  }], resetGroup: [{
@@ -19383,4 +19392,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
19383
19392
  */
19384
19393
 
19385
19394
  export { PreventDefaultDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, IntersectionObserverDirective as G, ItemsRendererDirective as H, ImageLazyDirective as I, NumbersOnlyInputDirective as J, PlaceHolderDirective as K, RenderUlvViewerDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, RenderUlvPaginDirective as O, PortalPageComponent as P, UntilInViewDirective as Q, ReportEmptyPageComponent as R, CopyDirective as S, TableResizerDirective as T, UlvCommandDirective as U, EllapsisTextDirective as V, WorfkflowwChoiceCommandDirective as W, FillEmptySpaceDirective as X, FormCloseDirective as Y, MobileDirective as Z, BodyClickDirective as _, EmptyPageComponent as a, MoInfoUlvPagingPipe as a$, StopPropagationDirective as a0, CountDownDirective as a1, RouteFormChangeDirective as a2, DynamicStyleDirective as a3, NowraptextDirective as a4, LabelmandatoryDirective as a5, AbsoluteDivBodyDirective as a6, LoadExternalFilesDirective as a7, RenderUlvDirective as a8, PrintFilesDirective as a9, TlbButtonsPipe as aA, RemoveNewlinePipe as aB, MoValuePipe as aC, FilterPipe as aD, FilterTabPipe as aE, MoReportValueConcatPipe as aF, FilterStringPipe as aG, SortPipe as aH, BbbTranslatePipe as aI, BarsaIconDictPipe as aJ, FileInfoCountPipe as aK, ControlUiPipe as aL, VisibleValuePipe as aM, FilterToolbarControlPipe as aN, MultipleGroupByPipe as aO, PictureFieldSourcePipe as aP, FioriIconPipe as aQ, CanUploadFilePipe as aR, ListCountPipe as aS, TotalSummaryPipe as aT, MergeFieldsToColumnsPipe as aU, FindColumnByDbNamePipe as aV, FilterColumnsByDetailsPipe as aW, MoInfoUlvMoListPipe as aX, ReversePipe as aY, ColumnCustomUiPipe as aZ, SanitizeTextPipe as a_, SaveImageDirective as aa, WebOtpDirective as ab, SplideSliderDirective as ac, DynamicRootVariableDirective as ad, HorizontalResponsiveDirective as ae, MeasureFormTitleWidthDirective as af, OverflowTextDirective as ag, ShortcutRegisterDirective as ah, ShortcutHandlerDirective as ai, BarsaReadonlyDirective as aj, ResizeObserverDirective as ak, ColumnValueDirective as al, ScrollToSelectedDirective as am, ScrollPersistDirective as an, TooltipDirective as ao, SimplebarDirective as ap, LeafletLongPressDirective as aq, ResizeHandlerDirective as ar, SafeBottomDirective as as, MoReportValuePipe as at, NumeralPipe as au, GroupByPipe as av, ContextMenuPipe as aw, HeaderFacetValuePipe as ax, SeperatorFixPipe as ay, ConvertToStylePipe as az, PortalPageSidebarComponent as b, CardViewService as b$, ColumnCustomComponentPipe as b0, ColumnValuePipe as b1, ColumnIconPipe as b2, RowNumberPipe as b3, ComboRowImagePipe as b4, IsExpandedNodePipe as b5, ThImageOrIconePipe as b6, FindPreviewColumnPipe as b7, ReplacePipe as b8, FilterWorkflowInMobilePipe as b9, LogService as bA, PortalService as bB, UiService as bC, UlvMainService as bD, UploadService as bE, NetworkStatusService as bF, AudioRecordingService as bG, VideoRecordingService as bH, LocalStorageService as bI, IndexedDbService as bJ, BarsaStorageService as bK, PromptUpdateService as bL, NotificationService as bM, ServiceWorkerNotificationService as bN, ColumnService as bO, ServiceWorkerCommuncationService as bP, SaveScrollPositionService as bQ, RoutingService as bR, GroupByService as bS, LayoutMainContentService as bT, TabpageService as bU, InMemoryStorageService as bV, ShellbarHeightService as bW, ApplicationCtrlrService as bX, PushCheckService as bY, IdbService as bZ, PushNotificationService as b_, HideColumnsInmobilePipe as ba, StringToNumberPipe as bb, ColumnValueOfParametersPipe as bc, HideAcceptCancelButtonsPipe as bd, FilterInlineActionListPipe as be, IsImagePipe as bf, ToolbarSettingsPipe as bg, CardMediaSizePipe as bh, LabelStarTrimPipe as bi, SplitPipe as bj, DynamicDarkColorPipe as bk, ChunkArrayPipe as bl, MapToChatMessagePipe as bm, PicturesByGroupIdPipe as bn, ScopedCssPipe as bo, ReportActionListPipe as bp, ApiService as bq, BreadcrumbService as br, CustomInjector as bs, DialogParams as bt, BarsaDialogService as bu, FormPanelService as bv, FormService as bw, ContainerService as bx, HorizontalLayoutService as by, LayoutService as bz, BaseDynamicComponent as c, ReportExtraInfo as c$, BaseSettingsService as c0, CalendarSettingsService as c1, SimpleTemplateEngine as c2, TEMPLATE_ENGINE as c3, PortalDynamicPageResolver as c4, PortalFormPageResolver as c5, PortalPageResolver as c6, PortalReportPageResolver as c7, TileGroupBreadcrumResolver as c8, LoginSettingsResolver as c9, RichStringControlInfoModel as cA, NumberControlInfoModel as cB, FilePictureInfoModel as cC, FileControlInfoModel as cD, CommandControlInfoModel as cE, IconControlInfoModel as cF, PictureFileControlInfoModel as cG, GaugeControlInfoModel as cH, RelationListControlInfoModel as cI, HistoryControlInfoModel as cJ, RabetehAkseTakiListiControlInfoModel as cK, RelatedReportControlInfoModel as cL, CodeEditorControlInfoModel as cM, EnumControlInfoModel as cN, RowDataOption as cO, DateTimeControlInfoModel as cP, BoolControlInfoModel as cQ, CalculateControlInfoModel as cR, SubformControlInfoModel as cS, LinearListControlInfoModel as cT, ListRelationModel as cU, SingleRelationControlInfoModel as cV, MetaobjectDataModel as cW, MoForReportModelBase as cX, MoForReportModel as cY, ReportBaseInfo as cZ, FormToolbarButton as c_, ReportBreadcrumbResolver as ca, DateService as cb, DateHijriService as cc, DateMiladiService as cd, DateShamsiService as ce, FormNewComponent as cf, ReportContainerComponent as cg, FormComponent as ch, FieldUiComponent as ci, BarsaSapUiFormPageModule as cj, ReportNavigatorComponent as ck, BaseController as cl, FieldBaseController as cm, ViewBase as cn, ModalRootComponent as co, ButtonLoadingComponent as cp, UnlimitSessionComponent as cq, SplitterComponent as cr, APP_VERSION as cs, DIALOG_SERVICE as ct, FORM_DIALOG_COMPONENT as cu, NOTIFICATAION_POPUP_SERVER as cv, TOAST_SERVICE as cw, NOTIFICATION_WEBWORKER_FACTORY as cx, GeneralControlInfoModel as cy, StringControlInfoModel as cz, DynamicFormComponent as d, measureTextBy as d$, MetaobjectRelationModel as d0, FieldInfoTypeEnum as d1, BaseReportModel as d2, DefaultCommandsAccessValue as d3, CustomCommand as d4, ReportModel as d5, ReportListModel as d6, ReportFormModel as d7, ReportCalendarModel as d8, ReportTreeModel as d9, FormPropsBaseComponent as dA, LinearListHelper as dB, PageWithFormHandlerBaseComponent as dC, FormPageBaseComponent as dD, FormPageComponent as dE, BaseColumnPropsComponent as dF, TilePropsComponent as dG, FormFieldReportPageComponent as dH, ColumnRendererBase as dI, ColumnRendererViewBase as dJ, BaseUlvSettingComponent as dK, TableHeaderWidthMode as dL, setTableThWidth as dM, calculateColumnContent as dN, calculateColumnWidth as dO, setColumnWidthByMaxMoContentWidth as dP, calculateMoDataListContentWidthByColumnName as dQ, calculateFreeColumnSize as dR, calculateColumnWidthFitToContainer as dS, calcContextMenuWidth as dT, RotateImage as dU, isInLocalMode as dV, getLabelWidth as dW, getColumnValueOfMoDataList as dX, throwIfAlreadyLoaded as dY, measureText2 as dZ, measureText as d_, ReportViewColumn as da, DefaultGridSetting as db, GridSetting as dc, ColSetting as dd, SortSetting as de, ReportField as df, DateRanges as dg, SortDirection as dh, SelectionMode as di, UlvHeightSizeType as dj, FieldBaseComponent as dk, FieldViewBase as dl, FormBaseComponent as dm, FormToolbarBaseComponent as dn, SystemBaseComponent as dp, ReportBaseComponent as dq, ReportItemBaseComponent as dr, ApplicationBaseComponent as ds, LayoutItemBaseComponent as dt, LayoutPanelBaseComponent as du, PageBaseComponent as dv, NumberBaseComponent as dw, FilesValidationHelper as dx, BarsaApi as dy, ReportViewBaseComponent as dz, DynamicItemComponent as e, cancelRequestAnimationFrame as e$, genrateInlineMoId as e0, enumValueToStringSize as e1, isVersionBiggerThan as e2, compareVersions as e3, scrollToElement as e4, executeUlvCommandHandler as e5, getUniqueId as e6, getDateService as e7, getAllItemsPerChildren as e8, setOneDepthLevel as e9, FindGroup as eA, FillAllLayoutControls as eB, FindToolbarItem as eC, FindLayoutSettingFromLayout94 as eD, GetAllHorizontalFromLayout94 as eE, getGridSettings as eF, getResetGridSettings as eG, GetDefaultMoObjectInfo as eH, getLayout94ObjectInfo as eI, getFormSettings as eJ, createFormPanelMetaConditions as eK, getNewMoGridEditor as eL, createGridEditorFormPanel as eM, getLayoutControl as eN, getControlList as eO, shallowEqual as eP, toNumber as eQ, InputNumber as eR, AffixRespondEvents as eS, isTargetWindow as eT, getTargetRect as eU, getFieldValue as eV, availablePrefixes as eW, requestAnimationFramePolyfill as eX, ExecuteDynamicCommand as eY, ExecuteWorkflowChoiceDef as eZ, getRequestAnimationFrame as e_, isFirefox as ea, getImagePath as eb, checkPermission as ec, fixUnclosedParentheses as ed, isFunction as ee, DeviceWidth as ef, getHeaderValue as eg, elementInViewport2 as eh, PreventDefaulEvent as ei, stopPropagation as ej, getParentHeight as ek, getComponentDefined as el, isSafari as em, isFF as en, getDeviceIsPhone as eo, getDeviceIsDesktop as ep, getDeviceIsTablet as eq, getDeviceIsMobile as er, getControlSizeMode as es, formatBytes as et, getValidExtension as eu, getIcon as ev, isImage as ew, GetAllColumnsSorted as ex, GetVisibleValue as ey, GroupBy as ez, formRoutes as f, easeInOutCubic as f0, WordMimeType as f1, ImageMimeType as f2, PdfMimeType as f3, AllFilesMimeType as f4, VideoMimeType as f5, AudioMimeType as f6, MimeTypes as f7, GetContentType as f8, GetViewableExtensions as f9, RootPageComponent as fA, ResizableComponent as fB, ResizableDirective as fC, ResizableModule as fD, PushBannerComponent as fE, BarsaNovinRayCoreModule as fF, ChangeLayoutInfoCustomUi as fa, mobile_regex as fb, number_only as fc, forbiddenValidator as fd, GetImgTags as fe, ImagetoPrint as ff, PrintImage as fg, SaveImageToFile as fh, validateAllFormFields as fi, getFocusableTagNames as fj, addCssVariableToRoot as fk, flattenTree as fl, IsDarkMode as fm, nullOrUndefinedString as fn, fromEntries as fo, bodyClick as fp, removeDynamicStyle as fq, addDynamicVariableTo as fr, AddDynamicFormStyles as fs, RemoveDynamicFormStyles as ft, ContainerComponent as fu, IntersectionStatus as fv, fromIntersectionObserver as fw, CustomRouteReuseStrategy as fx, AuthGuard as fy, RedirectHomeGuard as fz, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, RowState as j, BaseItemContentPropsComponent as k, CardBaseItemContentPropsComponent as l, BaseFormToolbaritemPropsComponent as m, DynamicFormToolbaritemComponent as n, DynamicLayoutComponent as o, DynamicTileGroupComponent as p, DynamicUlvToolbarComponent as q, reportRoutes as r, DynamicUlvPagingComponent as s, RootPortalComponent as t, BaseComponent as u, AttrRtlDirective as v, BaseDirective as w, ColumnResizerDirective as x, DynamicCommandDirective as y, EllipsifyDirective as z };
19386
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-D1jTqUIb.mjs.map
19395
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-ZCx7VjiV.mjs.map