barsa-novin-ray-core 2.3.152 → 2.3.153

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.
@@ -6430,7 +6430,7 @@ function reportRoutes(authGuard = false) {
6430
6430
  return {
6431
6431
  path: 'report/:id',
6432
6432
  canActivate: authGuard ? [AuthGuard] : [],
6433
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-BtGKTnPf.mjs').then((m) => m.BarsaReportPageModule),
6433
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CcvhUao7.mjs').then((m) => m.BarsaReportPageModule),
6434
6434
  resolve: {
6435
6435
  breadcrumb: ReportBreadcrumbResolver
6436
6436
  }
@@ -7548,6 +7548,7 @@ class UlvMainService {
7548
7548
  this._toolbarSettingsSource = new BehaviorSubject(null);
7549
7549
  this._showToolbarBorderSource = new BehaviorSubject(false);
7550
7550
  this._viewSettingsSource = new BehaviorSubject({});
7551
+ this._parentHeightSource = new BehaviorSubject(0);
7551
7552
  this.context$ = this._contextSource
7552
7553
  .asObservable()
7553
7554
  .pipe(takeUntil(this._onDestroy$), tap((context) => (this.context = context)), tap((context) => this._initialize(context)), tap((context) => this._addEventListener(context)))
@@ -7805,6 +7806,15 @@ class UlvMainService {
7805
7806
  get showToolbarBorder$() {
7806
7807
  return this._showToolbarBorderSource.asObservable();
7807
7808
  }
7809
+ get parentHeight$() {
7810
+ return this._parentHeightSource.asObservable();
7811
+ }
7812
+ get parentHeight() {
7813
+ return this._parentHeightSource.getValue();
7814
+ }
7815
+ setParentHeight(parentHeight) {
7816
+ this._parentHeightSource.next(parentHeight);
7817
+ }
7808
7818
  setToolbarBorder(showBorder) {
7809
7819
  this._showToolbarBorderSource.next(showBorder);
7810
7820
  }
@@ -8420,7 +8430,11 @@ class UlvMainService {
8420
8430
  if (!menuItems) {
8421
8431
  return [];
8422
8432
  }
8423
- const newItems = menuItems.filter((c) => c.itemId !== 'Delete' && c.itemId !== 'AddToList' && c.itemId !== 'RemoveFromList' && c.itemId !== 'MoveUp' && c.itemId !== 'MoveDown');
8433
+ const newItems = menuItems.filter((c) => c.itemId !== 'Delete' &&
8434
+ c.itemId !== 'AddToList' &&
8435
+ c.itemId !== 'RemoveFromList' &&
8436
+ c.itemId !== 'MoveUp' &&
8437
+ c.itemId !== 'MoveDown');
8424
8438
  return newItems;
8425
8439
  }
8426
8440
  _menuItemsChanged(menuItems) {
@@ -10803,6 +10817,7 @@ class ReportBaseComponent extends BaseComponent {
10803
10817
  this.searchTerm$ = this.searchTermSource.asObservable();
10804
10818
  this.gridSetting$ = this._ulvMainService.gridSetting$;
10805
10819
  this.contentHeight$ = this._ulvMainService.contentHeight$;
10820
+ this.parentHeight$ = this._ulvMainService.parentHeight$;
10806
10821
  this.groupby$ = this.groupbySource.asObservable();
10807
10822
  this.allChecked$ = this._allCheckedSource.asObservable();
10808
10823
  this.fields = {};
@@ -10815,6 +10830,9 @@ class ReportBaseComponent extends BaseComponent {
10815
10830
  get isCheckList() {
10816
10831
  return this._ulvMainService.isMultiSelect;
10817
10832
  }
10833
+ get parentHeight() {
10834
+ return this._ulvMainService.parentHeight;
10835
+ }
10818
10836
  ngOnInit() {
10819
10837
  super.ngOnInit();
10820
10838
  this.rendered = true;
@@ -12010,9 +12028,7 @@ class ReportViewBaseComponent extends BaseComponent {
12010
12028
  }
12011
12029
  this.onRowCheck({ mo, index });
12012
12030
  const btn = this.toolbarButtons.find((tb) => tb?.itemId === itemId);
12013
- if (btn) {
12014
- btn.handler(btn);
12015
- }
12031
+ executeUlvCommandHandler(btn, {});
12016
12032
  }
12017
12033
  _containerWidthChanged(_) { }
12018
12034
  _setRowIndicator(columns) {
@@ -12264,7 +12280,7 @@ class FormPropsBaseComponent extends BaseComponent {
12264
12280
  this.events.emit({ title, data });
12265
12281
  }
12266
12282
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: FormPropsBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12267
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: FormPropsBaseComponent, isStandalone: false, selector: "bnrc-form-props-base", inputs: { breadCrumbs: "breadCrumbs", toolbarVisible: "toolbarVisible", toolbarItems: "toolbarItems", layoutActions: "layoutActions", layoutActionsTemplateRef: "layoutActionsTemplateRef", layout94: "layout94", settings: "settings", workflowPanelUi: "workflowPanelUi", title: "title", subtitle: "subtitle", description: "description", facetList: "facetList", removeHeaderBorder: "removeHeaderBorder", removeContentPadding: "removeContentPadding", isMobile: "isMobile", avatar: "avatar", rtl: "rtl", mask: "mask", canSend: "canSend", landscape: "landscape", standalone: "standalone", footerDesign: "footerDesign", workflowButtons: "workflowButtons", workflowButtonsComboMode: "workflowButtonsComboMode", fieldDict: "fieldDict", contentDensity: "contentDensity", deviceSize: "deviceSize", dirValue: "dirValue", modernTabs: "modernTabs", mo: "mo" }, outputs: { events: "events" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12283
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: FormPropsBaseComponent, isStandalone: false, selector: "bnrc-form-props-base", inputs: { breadCrumbs: "breadCrumbs", toolbarVisible: "toolbarVisible", toolbarItems: "toolbarItems", layoutActions: "layoutActions", layoutActionsTemplateRef: "layoutActionsTemplateRef", layout94: "layout94", settings: "settings", workflowPanelUi: "workflowPanelUi", title: "title", subtitle: "subtitle", description: "description", facetList: "facetList", removeHeaderBorder: "removeHeaderBorder", removeContentPadding: "removeContentPadding", isMobile: "isMobile", isModal: "isModal", avatar: "avatar", rtl: "rtl", mask: "mask", canSend: "canSend", landscape: "landscape", standalone: "standalone", footerDesign: "footerDesign", workflowButtons: "workflowButtons", workflowButtonsComboMode: "workflowButtonsComboMode", fieldDict: "fieldDict", contentDensity: "contentDensity", deviceSize: "deviceSize", dirValue: "dirValue", modernTabs: "modernTabs", mo: "mo" }, outputs: { events: "events" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12268
12284
  }
12269
12285
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: FormPropsBaseComponent, decorators: [{
12270
12286
  type: Component,
@@ -12304,6 +12320,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12304
12320
  type: Input
12305
12321
  }], isMobile: [{
12306
12322
  type: Input
12323
+ }], isModal: [{
12324
+ type: Input
12307
12325
  }], avatar: [{
12308
12326
  type: Input
12309
12327
  }], rtl: [{
@@ -13944,7 +13962,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13944
13962
 
13945
13963
  class DynamicFormComponent extends BaseDynamicComponent {
13946
13964
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicFormComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
13947
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicFormComponent, isStandalone: false, selector: "bnrc-dynamic-form-component", inputs: { breadCrumbs: "breadCrumbs", toolbarVisible: "toolbarVisible", toolbarItems: "toolbarItems", layoutActions: "layoutActions", layoutActionsTemplateRef: "layoutActionsTemplateRef", workflowButtons: "workflowButtons", layout94: "layout94", footerDesign: "footerDesign", settings: "settings", workflowPanelUi: "workflowPanelUi", title: "title", subtitle: "subtitle", description: "description", facetList: "facetList", removeHeaderBorder: "removeHeaderBorder", removeContentPadding: "removeContentPadding", isMobile: "isMobile", avatar: "avatar", rtl: "rtl", mask: "mask", mo: "mo", contentDensity: "contentDensity", deviceSize: "deviceSize", dirValue: "dirValue", fieldDict: "fieldDict", modernTabs: "modernTabs" }, usesInheritance: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13965
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicFormComponent, isStandalone: false, selector: "bnrc-dynamic-form-component", inputs: { breadCrumbs: "breadCrumbs", toolbarVisible: "toolbarVisible", toolbarItems: "toolbarItems", layoutActions: "layoutActions", layoutActionsTemplateRef: "layoutActionsTemplateRef", workflowButtons: "workflowButtons", layout94: "layout94", footerDesign: "footerDesign", settings: "settings", workflowPanelUi: "workflowPanelUi", title: "title", subtitle: "subtitle", description: "description", facetList: "facetList", removeHeaderBorder: "removeHeaderBorder", removeContentPadding: "removeContentPadding", isMobile: "isMobile", isModal: "isModal", avatar: "avatar", rtl: "rtl", mask: "mask", mo: "mo", contentDensity: "contentDensity", deviceSize: "deviceSize", dirValue: "dirValue", fieldDict: "fieldDict", modernTabs: "modernTabs" }, usesInheritance: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13948
13966
  }
13949
13967
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicFormComponent, decorators: [{
13950
13968
  type: Component,
@@ -13988,6 +14006,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13988
14006
  type: Input
13989
14007
  }], isMobile: [{
13990
14008
  type: Input
14009
+ }], isModal: [{
14010
+ type: Input
13991
14011
  }], avatar: [{
13992
14012
  type: Input
13993
14013
  }], rtl: [{
@@ -20269,4 +20289,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
20269
20289
  */
20270
20290
 
20271
20291
  export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, MoInfoUlvPagingPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective 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_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoLinkerDirective 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, ApplicationCtrlrService 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, ContainerService as bA, HorizontalLayoutService as bB, LayoutService as bC, LogService as bD, PortalService as bE, UiService as bF, UlvMainService as bG, UploadService as bH, NetworkStatusService as bI, AudioRecordingService as bJ, VideoRecordingService as bK, LocalStorageService as bL, IndexedDbService as bM, BarsaStorageService as bN, PromptUpdateService as bO, NotificationService as bP, ServiceWorkerNotificationService as bQ, ColumnService as bR, ServiceWorkerCommuncationService as bS, SaveScrollPositionService as bT, RoutingService as bU, GroupByService as bV, LayoutMainContentService as bW, TabpageService as bX, InMemoryStorageService as bY, ScrollLayoutContextHolder as bZ, ShellbarHeightService 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, GetCssVariableValuePipe as bq, FindColumnsPipe as br, ExistsColumnsPipe as bs, ApiService as bt, BreadcrumbService as bu, CustomInjector as bv, DialogParams as bw, BarsaDialogService as bx, FormPanelService as by, FormService as bz, BaseDynamicComponent as c, LinearListControlInfoModel as c$, PushCheckService as c0, IdbService as c1, RUNTIME_NAV_STATE_SCHEMA_V1 as c2, buildRuntimeNavStateCacheKey as c3, RuntimeNavStateCacheService as c4, PushNotificationService as c5, CardViewService as c6, BaseSettingsService as c7, SimpleTemplateEngine as c8, TEMPLATE_ENGINE as c9, APP_VERSION as cA, DIALOG_SERVICE as cB, FORM_DIALOG_COMPONENT as cC, NOTIFICATAION_POPUP_SERVER as cD, TOAST_SERVICE as cE, NOTIFICATION_WEBWORKER_FACTORY as cF, GeneralControlInfoModel as cG, StringControlInfoModel as cH, RichStringControlInfoModel as cI, NumberControlInfoModel as cJ, FilePictureInfoModel as cK, FileControlInfoModel as cL, CommandControlInfoModel as cM, IconControlInfoModel as cN, PictureFileControlInfoModel as cO, GaugeControlInfoModel as cP, RelationListControlInfoModel as cQ, HistoryControlInfoModel as cR, RabetehAkseTakiListiControlInfoModel as cS, RelatedReportControlInfoModel as cT, CodeEditorControlInfoModel as cU, EnumControlInfoModel as cV, RowDataOption as cW, DateTimeControlInfoModel as cX, BoolControlInfoModel as cY, CalculateControlInfoModel as cZ, SubformControlInfoModel as c_, PortalDynamicPageResolver as ca, PortalFormPageResolver as cb, PortalPageResolver as cc, PortalReportPageResolver as cd, TileGroupBreadcrumResolver as ce, LoginSettingsResolver as cf, ReportBreadcrumbResolver as cg, DateService as ch, DateHijriService as ci, DateMiladiService as cj, DateShamsiService as ck, EntitySettingsStore as cl, CalendarSettingsStore as cm, FormNewComponent as cn, ReportContainerComponent as co, FormComponent as cp, FieldUiComponent as cq, BarsaSapUiFormPageModule as cr, ReportNavigatorComponent as cs, BaseController as ct, FieldBaseController as cu, ViewBase as cv, ModalRootComponent as cw, ButtonLoadingComponent as cx, UnlimitSessionComponent as cy, SplitterComponent as cz, DynamicFormComponent as d, calcContextMenuWidth as d$, ListRelationModel as d0, SingleRelationControlInfoModel as d1, MetaobjectDataModel as d2, MoForReportModelBase as d3, MoForReportModel as d4, ReportBaseInfo as d5, FormToolbarButton as d6, ReportExtraInfo as d7, MetaobjectRelationModel as d8, FieldInfoTypeEnum as d9, ApplicationBaseComponent as dA, LayoutItemBaseComponent as dB, LayoutPanelBaseComponent as dC, PageBaseComponent as dD, NumberBaseComponent as dE, FilesValidationHelper as dF, BarsaApi as dG, ReportViewBaseComponent as dH, FormPropsBaseComponent as dI, LinearListHelper as dJ, PageWithFormHandlerBaseComponent as dK, FormPageBaseComponent as dL, FormPageComponent as dM, BaseColumnPropsComponent as dN, TilePropsComponent as dO, FormFieldReportPageComponent as dP, ColumnRendererBase as dQ, ColumnRendererViewBase as dR, BaseUlvSettingComponent as dS, TableHeaderWidthMode as dT, setTableThWidth as dU, calculateColumnContent as dV, calculateColumnWidth as dW, setColumnWidthByMaxMoContentWidth as dX, calculateMoDataListContentWidthByColumnName as dY, calculateFreeColumnSize as dZ, calculateColumnWidthFitToContainer as d_, BaseReportModel as da, DefaultCommandsAccessValue as db, CustomCommand as dc, ReportModel as dd, ReportListModel as de, ReportFormModel as df, ReportCalendarModel as dg, ReportTreeModel as dh, ReportViewColumn as di, DefaultGridSetting as dj, GridSetting as dk, ColSetting as dl, SortSetting as dm, ReportField as dn, DateRanges as dp, SortDirection as dq, SelectionMode as dr, UlvHeightSizeType as ds, FieldBaseComponent as dt, FieldViewBase as du, FormBaseComponent as dv, FormToolbarBaseComponent as dw, SystemBaseComponent as dx, ReportBaseComponent as dy, ReportItemBaseComponent as dz, DynamicItemComponent as e, getControlList as e$, RotateImage as e0, isInLocalMode as e1, getLabelWidth as e2, getColumnValueOfMoDataList as e3, throwIfAlreadyLoaded as e4, measureText2 as e5, measureText as e6, measureTextBy as e7, genrateInlineMoId as e8, enumValueToStringSize as e9, getControlSizeMode as eA, formatBytes as eB, getValidExtension as eC, getIcon as eD, isImage as eE, getNestedValue as eF, sort as eG, sortEx as eH, multilevelSort as eI, searchEx as eJ, GetAllColumnsSorted as eK, GetVisibleValue as eL, GroupBy as eM, FindGroup as eN, FillAllLayoutControls as eO, FindToolbarItem as eP, FindLayoutSettingFromLayout94 as eQ, GetAllHorizontalFromLayout94 as eR, getGridSettings as eS, getResetGridSettings as eT, GetDefaultMoObjectInfo as eU, getLayout94ObjectInfo as eV, getFormSettings as eW, createFormPanelMetaConditions as eX, getNewMoGridEditor as eY, createGridEditorFormPanel as eZ, getLayoutControl as e_, isVersionBiggerThan as ea, compareVersions as eb, scrollToElement as ec, executeUlvCommandHandler as ed, getUniqueId as ee, getDateService as ef, getAllItemsPerChildren as eg, setOneDepthLevel as eh, isFirefox as ei, getImagePath as ej, checkPermission as ek, fixUnclosedParentheses as el, isFunction as em, DeviceWidth as en, getHeaderValue as eo, elementInViewport2 as ep, PreventDefaulEvent as eq, stopPropagation as er, getParentHeight as es, getComponentDefined as et, isSafari as eu, isFF as ev, getDeviceIsPhone as ew, getDeviceIsDesktop as ex, getDeviceIsTablet as ey, getDeviceIsMobile as ez, formRoutes as f, BarsaNovinRayCoreModule as f$, shallowEqual as f0, toNumber as f1, InputNumber as f2, AffixRespondEvents as f3, isTargetWindow as f4, getTargetRect as f5, getFieldValue as f6, availablePrefixes as f7, requestAnimationFramePolyfill as f8, ExecuteDynamicCommand as f9, nullOrUndefinedString as fA, fromEntries as fB, bodyClick as fC, removeDynamicStyle as fD, addDynamicVariableTo as fE, AddDynamicFormStyles as fF, RemoveDynamicFormStyles as fG, ContainerComponent as fH, IntersectionStatus as fI, fromIntersectionObserver as fJ, CustomRouteReuseStrategy as fK, AuthGuard as fL, RedirectHomeGuard as fM, RootPageComponent as fN, ResizableComponent as fO, ResizableDirective as fP, ResizableModule as fQ, PushBannerComponent as fR, REPORT_GRID_VIEWPORT_CLASS as fS, DEFAULT_REPORT_LAYOUT_POLICY as fT, REPORT_TYPE_DEFAULT_POLICIES as fU, scrollLayoutModeToContextEnvironment as fV, contextDefaultsFromEnvironment as fW, resolveFinalScroll as fX, resolveReportLayoutPolicy as fY, getReportTypeDefaultPolicy as fZ, extractLayoutPolicyFromView as f_, ExecuteWorkflowChoiceDef as fa, getRequestAnimationFrame as fb, cancelRequestAnimationFrame as fc, easeInOutCubic as fd, WordMimeType as fe, ImageMimeType as ff, PdfMimeType as fg, AllFilesMimeType as fh, VideoMimeType as fi, AudioMimeType as fj, MimeTypes as fk, GetContentType as fl, GetViewableExtensions as fm, ChangeLayoutInfoCustomUi as fn, mobile_regex as fo, number_only as fp, forbiddenValidator as fq, GetImgTags as fr, ImagetoPrint as fs, PrintImage as ft, SaveImageToFile as fu, validateAllFormFields as fv, getFocusableTagNames as fw, addCssVariableToRoot as fx, flattenTree as fy, IsDarkMode 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, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
20272
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-D1wtX0ug.mjs.map
20292
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-eTHUyDPH.mjs.map