barsa-novin-ray-core 2.3.32 → 2.3.33
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.mjs +150 -10
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +142 -5
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewContainerRef, ViewChild,
|
|
2
|
+
import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, signal, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewContainerRef, ViewChild, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
|
|
3
3
|
import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, combineLatest, fromEvent, forkJoin, throwError, merge, interval, filter as filter$1, tap as tap$1, concatMap as concatMap$1, catchError as catchError$1, finalize as finalize$1, Observable, takeUntil as takeUntil$1, timer, debounceTime as debounceTime$1, mergeWith } from 'rxjs';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
5
|
import { Router, NavigationEnd, ActivatedRoute, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
|
|
@@ -4027,6 +4027,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
4027
4027
|
}]
|
|
4028
4028
|
}] });
|
|
4029
4029
|
|
|
4030
|
+
class ChunkArrayPipe {
|
|
4031
|
+
transform(arr, size = 2) {
|
|
4032
|
+
if (!arr || !Array.isArray(arr) || size <= 0) {
|
|
4033
|
+
return [];
|
|
4034
|
+
}
|
|
4035
|
+
const out = [];
|
|
4036
|
+
for (let i = 0; i < arr.length; i += size) {
|
|
4037
|
+
out.push(arr.slice(i, i + size));
|
|
4038
|
+
}
|
|
4039
|
+
return out;
|
|
4040
|
+
}
|
|
4041
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ChunkArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4042
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: ChunkArrayPipe, isStandalone: false, name: "chunkArray" }); }
|
|
4043
|
+
}
|
|
4044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ChunkArrayPipe, decorators: [{
|
|
4045
|
+
type: Pipe,
|
|
4046
|
+
args: [{
|
|
4047
|
+
name: 'chunkArray',
|
|
4048
|
+
pure: true,
|
|
4049
|
+
standalone: false
|
|
4050
|
+
}]
|
|
4051
|
+
}] });
|
|
4052
|
+
|
|
4030
4053
|
class ApiService {
|
|
4031
4054
|
constructor() {
|
|
4032
4055
|
this.portalLoginUrl = `/api/auth/portal/login`;
|
|
@@ -4974,19 +4997,38 @@ function formRoutes(authGuard = false) {
|
|
|
4974
4997
|
|
|
4975
4998
|
class ApplicationCtrlrService {
|
|
4976
4999
|
constructor() {
|
|
5000
|
+
this.sidebarToggle = signal(false);
|
|
4977
5001
|
this._appMenuItems$ = new BehaviorSubject([]);
|
|
4978
5002
|
this._systemsUi$ = new BehaviorSubject([]);
|
|
4979
5003
|
this._selectedSystem$ = new BehaviorSubject(null);
|
|
4980
5004
|
this._log = inject(LogService);
|
|
5005
|
+
this._document = inject(DOCUMENT);
|
|
4981
5006
|
}
|
|
4982
5007
|
get appMenuItems$() {
|
|
4983
5008
|
return this._appMenuItems$.asObservable();
|
|
4984
5009
|
}
|
|
5010
|
+
get selectedSystem$() {
|
|
5011
|
+
return this._selectedSystem$.asObservable();
|
|
5012
|
+
}
|
|
4985
5013
|
initialize(callback) {
|
|
4986
5014
|
BarsaApi.Ul.ApplicationCtrlr.Initialize(() => {
|
|
4987
5015
|
this._handleEvents();
|
|
4988
5016
|
callback && callback();
|
|
4989
5017
|
});
|
|
5018
|
+
this._document.documentElement.setAttribute('data-layout', 'vertical');
|
|
5019
|
+
}
|
|
5020
|
+
systemChange(appMenuItem) {
|
|
5021
|
+
this._customApplicationMenuBodyUi.fireEvent('SelectedSystemChanged', this._customApplicationMenuBodyUi, appMenuItem.SystemData);
|
|
5022
|
+
}
|
|
5023
|
+
sidebarToggled(sidebarToggle) {
|
|
5024
|
+
this.sidebarToggle.set(sidebarToggle);
|
|
5025
|
+
if (sidebarToggle) {
|
|
5026
|
+
// [data-layout=vertical] [data-sidebartype=mini-sidebar]
|
|
5027
|
+
this._document.body.removeAttribute('data-sidebartype');
|
|
5028
|
+
}
|
|
5029
|
+
else {
|
|
5030
|
+
this._document.body.setAttribute('data-sidebartype', 'mini-sidebar');
|
|
5031
|
+
}
|
|
4990
5032
|
}
|
|
4991
5033
|
_loadSystem(id, resolve, reject) {
|
|
4992
5034
|
BarsaApi.Ul.ApplicationCtrlr._loadSystem(id, true, (data) => {
|
|
@@ -5000,7 +5042,7 @@ class ApplicationCtrlrService {
|
|
|
5000
5042
|
context.on({
|
|
5001
5043
|
AddSystemUi: this._addSystemUi.bind(this),
|
|
5002
5044
|
AddToMainTabPanel: this._addToMainTabPanel.bind(this),
|
|
5003
|
-
|
|
5045
|
+
SystemChanged: this._selectedSystemChanged.bind(this),
|
|
5004
5046
|
SetStatusBarValues: this._setStatusBarValues.bind(this),
|
|
5005
5047
|
ShowReleaseNoteWindow: this._showReleaseNoteWindow.bind(this)
|
|
5006
5048
|
});
|
|
@@ -5924,11 +5966,15 @@ class PortalService {
|
|
|
5924
5966
|
}
|
|
5925
5967
|
}
|
|
5926
5968
|
_initAfterLoginFormData() {
|
|
5927
|
-
this.
|
|
5969
|
+
this._setRtl(BarsaApi.LoginFormData.IsRtl);
|
|
5928
5970
|
this._isAnonumousSource.next(BarsaApi.LoginFormData.IsAnonymous);
|
|
5929
5971
|
this.setUserLoginStatus(BarsaApi.LoginFormData.IsUserLoggedIn);
|
|
5930
5972
|
this._loggedInSource.next(this._loggedInSource.getValue() && BarsaApi.LoginFormData.IsAnonymous === false);
|
|
5931
5973
|
}
|
|
5974
|
+
_setRtl(isRtl) {
|
|
5975
|
+
this.rtlSource.next(isRtl);
|
|
5976
|
+
this._document.documentElement.setAttribute('dir', isRtl ? 'rtl' : 'ltr');
|
|
5977
|
+
}
|
|
5932
5978
|
_initVisibilityChange() {
|
|
5933
5979
|
document.addEventListener('visibilitychange', () => {
|
|
5934
5980
|
if (document.visibilityState === 'visible') {
|
|
@@ -14796,6 +14842,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
14796
14842
|
args: ['scroll']
|
|
14797
14843
|
}] } });
|
|
14798
14844
|
|
|
14845
|
+
class TooltipDirective {
|
|
14846
|
+
constructor() {
|
|
14847
|
+
this.bnrcTooltip = input.required();
|
|
14848
|
+
this.hostRef = inject(ElementRef);
|
|
14849
|
+
this.renderer = inject(Renderer2);
|
|
14850
|
+
this.document = inject(DOCUMENT);
|
|
14851
|
+
this.tooltipEl = null;
|
|
14852
|
+
}
|
|
14853
|
+
ngOnDestroy() {
|
|
14854
|
+
this.removeTooltip();
|
|
14855
|
+
}
|
|
14856
|
+
onMouseEnter() {
|
|
14857
|
+
const { dir } = this.document.body;
|
|
14858
|
+
const isRtl = dir === 'rtl';
|
|
14859
|
+
this.tooltipEl = this.renderer.createElement('div');
|
|
14860
|
+
this.renderer.appendChild(document.body, this.tooltipEl);
|
|
14861
|
+
this.renderer.addClass(this.tooltipEl, 'bnrc-tooltip');
|
|
14862
|
+
this.tooltipEl.textContent = this.bnrcTooltip();
|
|
14863
|
+
const hostPosistion = this.hostRef.nativeElement.getBoundingClientRect();
|
|
14864
|
+
const tooltipPosistion = this.tooltipEl.getBoundingClientRect();
|
|
14865
|
+
const top = hostPosistion.top + hostPosistion.height / 2 - 12;
|
|
14866
|
+
let left = 0;
|
|
14867
|
+
if (isRtl) {
|
|
14868
|
+
left = hostPosistion.left - tooltipPosistion.width - 12;
|
|
14869
|
+
}
|
|
14870
|
+
else {
|
|
14871
|
+
left = hostPosistion.left + hostPosistion.width + 12;
|
|
14872
|
+
}
|
|
14873
|
+
this.renderer.setStyle(this.tooltipEl, 'top', `${top}px`);
|
|
14874
|
+
this.renderer.setStyle(this.tooltipEl, 'left', `${left}px`);
|
|
14875
|
+
}
|
|
14876
|
+
onMouseLeave() {
|
|
14877
|
+
this.removeTooltip();
|
|
14878
|
+
}
|
|
14879
|
+
removeTooltip() {
|
|
14880
|
+
if (this.tooltipEl) {
|
|
14881
|
+
this.renderer.removeChild(document.body, this.tooltipEl);
|
|
14882
|
+
this.tooltipEl = null;
|
|
14883
|
+
}
|
|
14884
|
+
}
|
|
14885
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TooltipDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14886
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.6", type: TooltipDirective, isStandalone: false, selector: "[bnrcTooltip]", inputs: { bnrcTooltip: { classPropertyName: "bnrcTooltip", publicName: "bnrcTooltip", isSignal: true, isRequired: true, transformFunction: null } }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" } }, ngImport: i0 }); }
|
|
14887
|
+
}
|
|
14888
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TooltipDirective, decorators: [{
|
|
14889
|
+
type: Directive,
|
|
14890
|
+
args: [{
|
|
14891
|
+
selector: '[bnrcTooltip]',
|
|
14892
|
+
standalone: false
|
|
14893
|
+
}]
|
|
14894
|
+
}], propDecorators: { onMouseEnter: [{
|
|
14895
|
+
type: HostListener,
|
|
14896
|
+
args: ['mouseenter']
|
|
14897
|
+
}], onMouseLeave: [{
|
|
14898
|
+
type: HostListener,
|
|
14899
|
+
args: ['mouseleave']
|
|
14900
|
+
}] } });
|
|
14901
|
+
|
|
14902
|
+
class SimplebarDirective extends BaseDirective {
|
|
14903
|
+
async ngAfterViewInit() {
|
|
14904
|
+
if (typeof window === 'undefined') {
|
|
14905
|
+
return;
|
|
14906
|
+
} // برای SSR
|
|
14907
|
+
// CSS را فقط یکبار ایمپورت کن
|
|
14908
|
+
if (!window._simplebarCssLoaded) {
|
|
14909
|
+
const linkEl = this._renderer2.createElement('link');
|
|
14910
|
+
linkEl.rel = 'stylesheet';
|
|
14911
|
+
linkEl.href = 'assets/simplebar/simplebar.min.css'; // مسیر فایل CSS
|
|
14912
|
+
this._renderer2.appendChild(document.head, linkEl);
|
|
14913
|
+
window._simplebarCssLoaded = true;
|
|
14914
|
+
}
|
|
14915
|
+
// JS را lazy-load کن
|
|
14916
|
+
const SimpleBar = (await import('simplebar')).default;
|
|
14917
|
+
new SimpleBar(this._el.nativeElement, { autoHide: true });
|
|
14918
|
+
}
|
|
14919
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SimplebarDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14920
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: SimplebarDirective, isStandalone: false, selector: "[simplebar]", usesInheritance: true, ngImport: i0 }); }
|
|
14921
|
+
}
|
|
14922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: SimplebarDirective, decorators: [{
|
|
14923
|
+
type: Directive,
|
|
14924
|
+
args: [{
|
|
14925
|
+
selector: '[simplebar]',
|
|
14926
|
+
standalone: false
|
|
14927
|
+
}]
|
|
14928
|
+
}] });
|
|
14929
|
+
|
|
14799
14930
|
class PortalDynamicPageResolver {
|
|
14800
14931
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
14801
14932
|
constructor() {
|
|
@@ -15941,7 +16072,9 @@ const directives = [
|
|
|
15941
16072
|
ResizeObserverDirective,
|
|
15942
16073
|
ColumnValueDirective,
|
|
15943
16074
|
ScrollToSelectedDirective,
|
|
15944
|
-
ScrollPersistDirective
|
|
16075
|
+
ScrollPersistDirective,
|
|
16076
|
+
TooltipDirective,
|
|
16077
|
+
SimplebarDirective
|
|
15945
16078
|
];
|
|
15946
16079
|
const services = [
|
|
15947
16080
|
PortalService,
|
|
@@ -16027,7 +16160,8 @@ const pipes = [
|
|
|
16027
16160
|
CardMediaSizePipe,
|
|
16028
16161
|
LabelStarTrimPipe,
|
|
16029
16162
|
SplitPipe,
|
|
16030
|
-
DynamicDarkColorPipe
|
|
16163
|
+
DynamicDarkColorPipe,
|
|
16164
|
+
ChunkArrayPipe
|
|
16031
16165
|
];
|
|
16032
16166
|
const functionL1 = async function () {
|
|
16033
16167
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -16195,7 +16329,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16195
16329
|
CardMediaSizePipe,
|
|
16196
16330
|
LabelStarTrimPipe,
|
|
16197
16331
|
SplitPipe,
|
|
16198
|
-
DynamicDarkColorPipe,
|
|
16332
|
+
DynamicDarkColorPipe,
|
|
16333
|
+
ChunkArrayPipe, PlaceHolderDirective,
|
|
16199
16334
|
NumbersOnlyInputDirective,
|
|
16200
16335
|
RenderUlvViewerDirective,
|
|
16201
16336
|
RenderUlvPaginDirective,
|
|
@@ -16241,7 +16376,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16241
16376
|
ResizeObserverDirective,
|
|
16242
16377
|
ColumnValueDirective,
|
|
16243
16378
|
ScrollToSelectedDirective,
|
|
16244
|
-
ScrollPersistDirective
|
|
16379
|
+
ScrollPersistDirective,
|
|
16380
|
+
TooltipDirective,
|
|
16381
|
+
SimplebarDirective], imports: [CommonModule,
|
|
16245
16382
|
BarsaNovinRayCoreRoutingModule,
|
|
16246
16383
|
BarsaSapUiFormPageModule,
|
|
16247
16384
|
ResizableModule,
|
|
@@ -16323,7 +16460,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16323
16460
|
CardMediaSizePipe,
|
|
16324
16461
|
LabelStarTrimPipe,
|
|
16325
16462
|
SplitPipe,
|
|
16326
|
-
DynamicDarkColorPipe,
|
|
16463
|
+
DynamicDarkColorPipe,
|
|
16464
|
+
ChunkArrayPipe, PlaceHolderDirective,
|
|
16327
16465
|
NumbersOnlyInputDirective,
|
|
16328
16466
|
RenderUlvViewerDirective,
|
|
16329
16467
|
RenderUlvPaginDirective,
|
|
@@ -16369,7 +16507,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16369
16507
|
ResizeObserverDirective,
|
|
16370
16508
|
ColumnValueDirective,
|
|
16371
16509
|
ScrollToSelectedDirective,
|
|
16372
|
-
ScrollPersistDirective
|
|
16510
|
+
ScrollPersistDirective,
|
|
16511
|
+
TooltipDirective,
|
|
16512
|
+
SimplebarDirective] }); }
|
|
16373
16513
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
16374
16514
|
BarsaNovinRayCoreRoutingModule,
|
|
16375
16515
|
BarsaSapUiFormPageModule,
|
|
@@ -16399,5 +16539,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
16399
16539
|
* Generated bundle index. Do not edit.
|
|
16400
16540
|
*/
|
|
16401
16541
|
|
|
16402
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MeasureFormTitleWidthDirective, 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, OverflowTextDirective, 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, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
16542
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MeasureFormTitleWidthDirective, 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, OverflowTextDirective, 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, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
16403
16543
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|