barsa-novin-ray-core 2.3.32 → 2.3.34
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 +200 -11
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +153 -5
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
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,
|
|
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';
|
|
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
|
+
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, Subscription } from 'rxjs';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
5
|
import { Router, NavigationEnd, ActivatedRoute, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
|
|
6
6
|
import { DomSanitizer, Title } from '@angular/platform-browser';
|
|
@@ -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,137 @@ 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
|
+
|
|
14930
|
+
class LeafletLongPressDirective {
|
|
14931
|
+
constructor() {
|
|
14932
|
+
this.longPressDuration = 600; // زمان نگه داشتن (ms)
|
|
14933
|
+
this.longPress = new EventEmitter(); // latlng رو به بیرون میده
|
|
14934
|
+
this.sub = new Subscription();
|
|
14935
|
+
}
|
|
14936
|
+
ngOnInit() {
|
|
14937
|
+
if (!this.map) {
|
|
14938
|
+
console.error('LeafletLongPressDirective: No map instance provided.');
|
|
14939
|
+
return;
|
|
14940
|
+
}
|
|
14941
|
+
const container = this.map.getContainer();
|
|
14942
|
+
const mousedown$ = merge(fromEvent(container, 'mousedown'), fromEvent(container, 'touchstart', { passive: false }));
|
|
14943
|
+
const mouseup$ = merge(fromEvent(container, 'mouseup'), fromEvent(container, 'touchend'));
|
|
14944
|
+
const move$ = merge(fromEvent(container, 'mousemove'), fromEvent(container, 'touchmove'));
|
|
14945
|
+
const cancelInteraction$ = merge(fromEvent(this.map, 'dragstart'), fromEvent(this.map, 'zoomstart'), fromEvent(this.map, 'movestart'));
|
|
14946
|
+
const longPress$ = mousedown$.pipe(switchMap((startEvent) => timer(this.longPressDuration).pipe(takeUntil(merge(mouseup$, move$, cancelInteraction$)), map(() => startEvent))), filter((e) => !!e));
|
|
14947
|
+
this.sub.add(longPress$.subscribe((startEvent) => {
|
|
14948
|
+
const originalEvent = startEvent instanceof MouseEvent ? startEvent : startEvent.touches?.[0] || startEvent;
|
|
14949
|
+
const latlng = this.map.mouseEventToLatLng(originalEvent);
|
|
14950
|
+
this.longPress.emit(latlng);
|
|
14951
|
+
}));
|
|
14952
|
+
// جلوگیری از contextmenu پیشفرض موبایل (اختیاری)
|
|
14953
|
+
container.addEventListener('contextmenu', (evt) => evt.preventDefault());
|
|
14954
|
+
}
|
|
14955
|
+
ngOnDestroy() {
|
|
14956
|
+
this.sub.unsubscribe();
|
|
14957
|
+
}
|
|
14958
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: LeafletLongPressDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14959
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: LeafletLongPressDirective, isStandalone: false, selector: "[leafletLongPress]", inputs: { map: ["leafletLongPress", "map"], longPressDuration: "longPressDuration" }, outputs: { longPress: "longPress" }, ngImport: i0 }); }
|
|
14960
|
+
}
|
|
14961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: LeafletLongPressDirective, decorators: [{
|
|
14962
|
+
type: Directive,
|
|
14963
|
+
args: [{
|
|
14964
|
+
selector: '[leafletLongPress]',
|
|
14965
|
+
standalone: false
|
|
14966
|
+
}]
|
|
14967
|
+
}], propDecorators: { map: [{
|
|
14968
|
+
type: Input,
|
|
14969
|
+
args: ['leafletLongPress']
|
|
14970
|
+
}], longPressDuration: [{
|
|
14971
|
+
type: Input
|
|
14972
|
+
}], longPress: [{
|
|
14973
|
+
type: Output
|
|
14974
|
+
}] } });
|
|
14975
|
+
|
|
14799
14976
|
class PortalDynamicPageResolver {
|
|
14800
14977
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
14801
14978
|
constructor() {
|
|
@@ -15941,7 +16118,10 @@ const directives = [
|
|
|
15941
16118
|
ResizeObserverDirective,
|
|
15942
16119
|
ColumnValueDirective,
|
|
15943
16120
|
ScrollToSelectedDirective,
|
|
15944
|
-
ScrollPersistDirective
|
|
16121
|
+
ScrollPersistDirective,
|
|
16122
|
+
TooltipDirective,
|
|
16123
|
+
SimplebarDirective,
|
|
16124
|
+
LeafletLongPressDirective
|
|
15945
16125
|
];
|
|
15946
16126
|
const services = [
|
|
15947
16127
|
PortalService,
|
|
@@ -16027,7 +16207,8 @@ const pipes = [
|
|
|
16027
16207
|
CardMediaSizePipe,
|
|
16028
16208
|
LabelStarTrimPipe,
|
|
16029
16209
|
SplitPipe,
|
|
16030
|
-
DynamicDarkColorPipe
|
|
16210
|
+
DynamicDarkColorPipe,
|
|
16211
|
+
ChunkArrayPipe
|
|
16031
16212
|
];
|
|
16032
16213
|
const functionL1 = async function () {
|
|
16033
16214
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -16195,7 +16376,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16195
16376
|
CardMediaSizePipe,
|
|
16196
16377
|
LabelStarTrimPipe,
|
|
16197
16378
|
SplitPipe,
|
|
16198
|
-
DynamicDarkColorPipe,
|
|
16379
|
+
DynamicDarkColorPipe,
|
|
16380
|
+
ChunkArrayPipe, PlaceHolderDirective,
|
|
16199
16381
|
NumbersOnlyInputDirective,
|
|
16200
16382
|
RenderUlvViewerDirective,
|
|
16201
16383
|
RenderUlvPaginDirective,
|
|
@@ -16241,7 +16423,10 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16241
16423
|
ResizeObserverDirective,
|
|
16242
16424
|
ColumnValueDirective,
|
|
16243
16425
|
ScrollToSelectedDirective,
|
|
16244
|
-
ScrollPersistDirective
|
|
16426
|
+
ScrollPersistDirective,
|
|
16427
|
+
TooltipDirective,
|
|
16428
|
+
SimplebarDirective,
|
|
16429
|
+
LeafletLongPressDirective], imports: [CommonModule,
|
|
16245
16430
|
BarsaNovinRayCoreRoutingModule,
|
|
16246
16431
|
BarsaSapUiFormPageModule,
|
|
16247
16432
|
ResizableModule,
|
|
@@ -16323,7 +16508,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16323
16508
|
CardMediaSizePipe,
|
|
16324
16509
|
LabelStarTrimPipe,
|
|
16325
16510
|
SplitPipe,
|
|
16326
|
-
DynamicDarkColorPipe,
|
|
16511
|
+
DynamicDarkColorPipe,
|
|
16512
|
+
ChunkArrayPipe, PlaceHolderDirective,
|
|
16327
16513
|
NumbersOnlyInputDirective,
|
|
16328
16514
|
RenderUlvViewerDirective,
|
|
16329
16515
|
RenderUlvPaginDirective,
|
|
@@ -16369,7 +16555,10 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16369
16555
|
ResizeObserverDirective,
|
|
16370
16556
|
ColumnValueDirective,
|
|
16371
16557
|
ScrollToSelectedDirective,
|
|
16372
|
-
ScrollPersistDirective
|
|
16558
|
+
ScrollPersistDirective,
|
|
16559
|
+
TooltipDirective,
|
|
16560
|
+
SimplebarDirective,
|
|
16561
|
+
LeafletLongPressDirective] }); }
|
|
16373
16562
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
16374
16563
|
BarsaNovinRayCoreRoutingModule,
|
|
16375
16564
|
BarsaSapUiFormPageModule,
|
|
@@ -16399,5 +16588,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
16399
16588
|
* Generated bundle index. Do not edit.
|
|
16400
16589
|
*/
|
|
16401
16590
|
|
|
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 };
|
|
16591
|
+
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, LeafletLongPressDirective, 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
16592
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|