barsa-novin-ray-core 2.3.150 → 2.3.151
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.
- package/fesm2022/{barsa-novin-ray-core-barsa-novin-ray-core-BL2Pra22.mjs → barsa-novin-ray-core-barsa-novin-ray-core-D1wtX0ug.mjs} +27 -13
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-D1wtX0ug.mjs.map +1 -0
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-B2VQBo1M.mjs → barsa-novin-ray-core-barsa-report-page.module-BtGKTnPf.mjs} +2 -2
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-B2VQBo1M.mjs.map → barsa-novin-ray-core-barsa-report-page.module-BtGKTnPf.mjs.map} +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-BL2Pra22.mjs.map +0 -1
|
@@ -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-
|
|
6433
|
+
loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-BtGKTnPf.mjs').then((m) => m.BarsaReportPageModule),
|
|
6434
6434
|
resolve: {
|
|
6435
6435
|
breadcrumb: ReportBreadcrumbResolver
|
|
6436
6436
|
}
|
|
@@ -10136,13 +10136,19 @@ class RuntimeNavStateCacheService {
|
|
|
10136
10136
|
return out;
|
|
10137
10137
|
})();
|
|
10138
10138
|
}
|
|
10139
|
+
_getCryptoId() {
|
|
10140
|
+
if (window?.isSecureContext) {
|
|
10141
|
+
return crypto.randomUUID();
|
|
10142
|
+
}
|
|
10143
|
+
return getUniqueId(5);
|
|
10144
|
+
}
|
|
10139
10145
|
_ensureSessionId() {
|
|
10140
10146
|
if (typeof sessionStorage === 'undefined') {
|
|
10141
|
-
return `ssr-${
|
|
10147
|
+
return `ssr-${this._getCryptoId()}`;
|
|
10142
10148
|
}
|
|
10143
10149
|
let id = sessionStorage.getItem(SESSION_STORAGE_KEY);
|
|
10144
10150
|
if (!id) {
|
|
10145
|
-
id =
|
|
10151
|
+
id = this._getCryptoId();
|
|
10146
10152
|
sessionStorage.setItem(SESSION_STORAGE_KEY, id);
|
|
10147
10153
|
}
|
|
10148
10154
|
return id;
|
|
@@ -11607,11 +11613,13 @@ class NumberBaseComponent extends FieldBaseComponent {
|
|
|
11607
11613
|
formated = this._getFormated(text);
|
|
11608
11614
|
newVal = this._numeralPipe.getValue(formated);
|
|
11609
11615
|
}
|
|
11610
|
-
|
|
11611
|
-
|
|
11616
|
+
let endPos = formated.length;
|
|
11617
|
+
isMinus && ++endPos;
|
|
11618
|
+
if (this.inputElement && this.inputElement.value.length > endPos) {
|
|
11619
|
+
this.inputElement.value = this.inputElement.value.substring(0, endPos);
|
|
11612
11620
|
}
|
|
11613
|
-
const diff1 = this._setTargetToFormatedValue(this.inputElement, formated, isMinus);
|
|
11614
|
-
const diff2 = this._setTargetToFormatedValue(e.traget, formated, isMinus);
|
|
11621
|
+
const diff1 = Math.abs(this._setTargetToFormatedValue(this.inputElement, formated, isMinus));
|
|
11622
|
+
const diff2 = Math.abs(this._setTargetToFormatedValue(e.traget, formated, isMinus));
|
|
11615
11623
|
cursorPosition && (cursorPosition += diff1);
|
|
11616
11624
|
cursorPosition && (cursorPosition += diff2);
|
|
11617
11625
|
this._setCursorPosition(cursorPosition);
|
|
@@ -11779,13 +11787,12 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
11779
11787
|
this._onVisible$ = new Subject();
|
|
11780
11788
|
this.$resize = new Subject();
|
|
11781
11789
|
this._scrollLayoutContext = inject(ScrollLayoutContextHolder, { optional: true });
|
|
11782
|
-
|
|
11790
|
+
this._scrollLayoutContext &&
|
|
11783
11791
|
effect(() => {
|
|
11784
11792
|
this._scrollLayoutContext.mode();
|
|
11785
11793
|
this._applyScrollLayoutForContextMode();
|
|
11786
11794
|
this._cdr.markForCheck();
|
|
11787
11795
|
});
|
|
11788
|
-
}
|
|
11789
11796
|
}
|
|
11790
11797
|
ngOnInit() {
|
|
11791
11798
|
super.ngOnInit();
|
|
@@ -14330,6 +14337,7 @@ class BaseViewItemPropsComponent extends BaseViewPropsComponent {
|
|
|
14330
14337
|
.subscribe((res) => {
|
|
14331
14338
|
if (res.saved) {
|
|
14332
14339
|
this.mo.$IsChecked = false;
|
|
14340
|
+
this.mo.$State = 'Unchanged';
|
|
14333
14341
|
this.editFormPanelValueChange.emit({ mo: this.mo, fieldDbName: '$InlineMoState' });
|
|
14334
14342
|
// this._formpanelValueChanged$.next('');
|
|
14335
14343
|
this._cdr.markForCheck();
|
|
@@ -15771,7 +15779,7 @@ class EllipsifyDirective extends BaseDirective {
|
|
|
15771
15779
|
}, 100);
|
|
15772
15780
|
}
|
|
15773
15781
|
_heightChange() {
|
|
15774
|
-
this.childes
|
|
15782
|
+
this.childes?.forEach((child) => {
|
|
15775
15783
|
if (child.childElementCount === 0) {
|
|
15776
15784
|
const height = child.clientHeight;
|
|
15777
15785
|
const lineHeightStr = getComputedStyle(child).lineHeight.replace('px', '');
|
|
@@ -15783,7 +15791,7 @@ class EllipsifyDirective extends BaseDirective {
|
|
|
15783
15791
|
});
|
|
15784
15792
|
}
|
|
15785
15793
|
_initStyle() {
|
|
15786
|
-
this.childes
|
|
15794
|
+
this.childes?.forEach((child) => {
|
|
15787
15795
|
if (child.childElementCount === 0) {
|
|
15788
15796
|
this.renderer.setStyle(child, 'height', 'inherit');
|
|
15789
15797
|
this.renderer.setStyle(child, 'overflow', 'hidden');
|
|
@@ -17297,6 +17305,8 @@ class SplideSliderDirective extends BaseDirective {
|
|
|
17297
17305
|
gap: +this.sliderGap,
|
|
17298
17306
|
padding: +this.sliderPadding,
|
|
17299
17307
|
perPage: +this.sliderPerPage,
|
|
17308
|
+
autoplay: this.autoPlay,
|
|
17309
|
+
interval: this.interval,
|
|
17300
17310
|
breakpoints: {
|
|
17301
17311
|
480: {
|
|
17302
17312
|
perPage: +this.breakpoint480
|
|
@@ -17326,7 +17336,7 @@ class SplideSliderDirective extends BaseDirective {
|
|
|
17326
17336
|
return BarsaApi.LoginFormData.IsRtl ? 'rtl' : 'ltr';
|
|
17327
17337
|
}
|
|
17328
17338
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SplideSliderDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
17329
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: SplideSliderDirective, isStandalone: false, selector: "[splideSlider]", inputs: { moDataList: "moDataList", type: "type", breakpoint991: "breakpoint991", breakpoint768: "breakpoint768", breakpoint480: "breakpoint480", breakpoint1279: "breakpoint1279", sliderPerPage: "sliderPerPage", sliderGap: "sliderGap", sliderPadding: "sliderPadding", width: "width" }, host: { properties: { "style.width": "this._width" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
17339
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: SplideSliderDirective, isStandalone: false, selector: "[splideSlider]", inputs: { moDataList: "moDataList", type: "type", breakpoint991: "breakpoint991", breakpoint768: "breakpoint768", breakpoint480: "breakpoint480", breakpoint1279: "breakpoint1279", sliderPerPage: "sliderPerPage", sliderGap: "sliderGap", sliderPadding: "sliderPadding", interval: "interval", autoPlay: "autoPlay", width: "width" }, host: { properties: { "style.width": "this._width" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
17330
17340
|
}
|
|
17331
17341
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SplideSliderDirective, decorators: [{
|
|
17332
17342
|
type: Directive,
|
|
@@ -17355,6 +17365,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
17355
17365
|
type: Input
|
|
17356
17366
|
}], sliderPadding: [{
|
|
17357
17367
|
type: Input
|
|
17368
|
+
}], interval: [{
|
|
17369
|
+
type: Input
|
|
17370
|
+
}], autoPlay: [{
|
|
17371
|
+
type: Input
|
|
17358
17372
|
}], width: [{
|
|
17359
17373
|
type: Input
|
|
17360
17374
|
}] } });
|
|
@@ -20255,4 +20269,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
20255
20269
|
*/
|
|
20256
20270
|
|
|
20257
20271
|
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 };
|
|
20258
|
-
//# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-
|
|
20272
|
+
//# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-D1wtX0ug.mjs.map
|