barsa-novin-ray-core 2.0.120 → 2.0.122
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/esm2022/lib/barsa-novin-ray-core.module.mjs +15 -9
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/directives/load-external-files.directive.mjs +37 -0
- package/esm2022/lib/pipes/hide-columns-inmobile.pipe.mjs +22 -0
- package/esm2022/lib/pipes/index.mjs +2 -1
- package/esm2022/lib/root-portal/root-portal.component.mjs +69 -91
- package/esm2022/lib/services/portal.service.mjs +4 -1
- package/fesm2022/barsa-novin-ray-core.mjs +136 -97
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/barsa-novin-ray-core.module.d.ts +36 -34
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/load-external-files.directive.d.ts +8 -0
- package/lib/pipes/hide-columns-inmobile.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3913,6 +3913,9 @@ class PortalService {
|
|
|
3913
3913
|
if (BarsaApi.LoginFormData?.error?.userMessage) {
|
|
3914
3914
|
return Promise.reject(BarsaApi.LoginFormData?.error?.userMessage);
|
|
3915
3915
|
}
|
|
3916
|
+
if (id === 0) {
|
|
3917
|
+
BarsaApi.Ul.ApplicationCtrlr.DefaultSystemId = null;
|
|
3918
|
+
}
|
|
3916
3919
|
return new Promise((resolve, reject) => {
|
|
3917
3920
|
BarsaApi.Ul.ApplicationCtrlr._loadSystem(id, true, (data) => {
|
|
3918
3921
|
resolve(data);
|
|
@@ -5332,6 +5335,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
5332
5335
|
}]
|
|
5333
5336
|
}], ctorParameters: () => [] });
|
|
5334
5337
|
|
|
5338
|
+
class HideColumnsInmobilePipe {
|
|
5339
|
+
transform(columns, hideColumnsInMobile) {
|
|
5340
|
+
if (!columns?.length || !hideColumnsInMobile || !getDeviceIsMobile()) {
|
|
5341
|
+
return columns;
|
|
5342
|
+
}
|
|
5343
|
+
const arrOfColumns = hideColumnsInMobile.split(',');
|
|
5344
|
+
const x = columns.filter((column, i) => arrOfColumns.indexOf(column.Caption) === -1 && arrOfColumns.indexOf(column.Name) === -1);
|
|
5345
|
+
return x;
|
|
5346
|
+
}
|
|
5347
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: HideColumnsInmobilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5348
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.5", ngImport: i0, type: HideColumnsInmobilePipe, name: "hideColumnsInmobile" }); }
|
|
5349
|
+
}
|
|
5350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: HideColumnsInmobilePipe, decorators: [{
|
|
5351
|
+
type: Pipe,
|
|
5352
|
+
args: [{
|
|
5353
|
+
name: 'hideColumnsInmobile'
|
|
5354
|
+
}]
|
|
5355
|
+
}] });
|
|
5356
|
+
|
|
5335
5357
|
class UlvMainService {
|
|
5336
5358
|
constructor(_bbbPipe, _apiService) {
|
|
5337
5359
|
this._bbbPipe = _bbbPipe;
|
|
@@ -11446,6 +11468,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
11446
11468
|
type: Input
|
|
11447
11469
|
}] } });
|
|
11448
11470
|
|
|
11471
|
+
class LoadExternalFilesDirective {
|
|
11472
|
+
constructor() {
|
|
11473
|
+
this._renderer2 = inject(Renderer2);
|
|
11474
|
+
}
|
|
11475
|
+
ngOnInit() {
|
|
11476
|
+
const jsfiles = [];
|
|
11477
|
+
const cssfiles = [];
|
|
11478
|
+
Object.keys(BarsaApi.LoginFormData).forEach((key) => {
|
|
11479
|
+
if (key.startsWith('JSFile')) {
|
|
11480
|
+
jsfiles.push(BarsaApi.LoginFormData[key]);
|
|
11481
|
+
}
|
|
11482
|
+
if (key.startsWith('CSSFile')) {
|
|
11483
|
+
cssfiles.push(BarsaApi.LoginFormData[key]);
|
|
11484
|
+
}
|
|
11485
|
+
});
|
|
11486
|
+
if (jsfiles.length > 0) {
|
|
11487
|
+
head.load(jsfiles);
|
|
11488
|
+
}
|
|
11489
|
+
if (cssfiles.length > 0) {
|
|
11490
|
+
cssfiles.forEach((c) => {
|
|
11491
|
+
document.head.insertAdjacentHTML('beforeend', ` <link href="${c}" rel="stylesheet" noportal />`);
|
|
11492
|
+
});
|
|
11493
|
+
}
|
|
11494
|
+
}
|
|
11495
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: LoadExternalFilesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11496
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.5", type: LoadExternalFilesDirective, selector: "[loadExternalFiles]", ngImport: i0 }); }
|
|
11497
|
+
}
|
|
11498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: LoadExternalFilesDirective, decorators: [{
|
|
11499
|
+
type: Directive,
|
|
11500
|
+
args: [{
|
|
11501
|
+
selector: '[loadExternalFiles]'
|
|
11502
|
+
}]
|
|
11503
|
+
}] });
|
|
11504
|
+
|
|
11449
11505
|
class RootPortalComponent extends PageBaseComponent {
|
|
11450
11506
|
constructor() {
|
|
11451
11507
|
super(...arguments);
|
|
@@ -11510,110 +11566,87 @@ class RootPortalComponent extends PageBaseComponent {
|
|
|
11510
11566
|
renderPlaceHolders(pageData) {
|
|
11511
11567
|
super.renderPlaceHolders(pageData);
|
|
11512
11568
|
this.addFooter(pageData);
|
|
11513
|
-
const jsfiles = [];
|
|
11514
|
-
const cssfiles = [];
|
|
11515
|
-
Object.keys(BarsaApi.LoginFormData).forEach((key) => {
|
|
11516
|
-
if (key.startsWith('JSFile')) {
|
|
11517
|
-
jsfiles.push(BarsaApi.LoginFormData[key]);
|
|
11518
|
-
}
|
|
11519
|
-
if (key.startsWith('CSSFile')) {
|
|
11520
|
-
cssfiles.push(BarsaApi.LoginFormData[key]);
|
|
11521
|
-
}
|
|
11522
|
-
});
|
|
11523
11569
|
BigNumber.prototype.subtract = BigNumber.prototype.minus;
|
|
11524
11570
|
BigNumber.prototype.add = BigNumber.prototype.plus;
|
|
11525
|
-
if (jsfiles.length > 0) {
|
|
11526
|
-
head.load(jsfiles);
|
|
11527
|
-
}
|
|
11528
|
-
if (cssfiles.length > 0) {
|
|
11529
|
-
cssfiles.forEach((c) => {
|
|
11530
|
-
document.head.insertAdjacentHTML('beforeend', ` <link href="${c}" rel="stylesheet" noportal />`);
|
|
11531
|
-
});
|
|
11532
|
-
}
|
|
11533
11571
|
const { BackgroundId } = this.pageData;
|
|
11534
11572
|
if (BackgroundId) {
|
|
11535
11573
|
this._renderer2.addClass(this._el.nativeElement, 'root-custom-background');
|
|
11536
11574
|
this.imageUrl = `/IH.ashx?ty=ID&moId=&id=${BackgroundId}&si=1920&sih=1080`;
|
|
11537
|
-
// this._renderer2.setStyle(
|
|
11538
|
-
// this._el.nativeElement,
|
|
11539
|
-
// 'background',
|
|
11540
|
-
// );
|
|
11541
|
-
// this._renderer2.setStyle(this._el.nativeElement, 'background-size', `cover`);
|
|
11542
11575
|
}
|
|
11543
11576
|
}
|
|
11544
11577
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: RootPortalComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11545
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.5", type: RootPortalComponent, selector: "bnrc-root-portal", viewQueries: [{ propertyName: "sectionRef", first: true, predicate: ["sectionRef"], descendants: true }, { propertyName: "footerRefVcr", first: true, predicate: ["footerRef"], descendants: true, read: ViewContainerRef }], usesInheritance: true, ngImport: i0, template: `
|
|
11546
|
-
@if(inLocalMode){
|
|
11547
|
-
<div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
|
|
11548
|
-
<button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
|
|
11549
|
-
حذف اطلاعات آفلاین
|
|
11550
|
-
</button>
|
|
11551
|
-
<button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
|
|
11552
|
-
حذف اطلاعات آفلاین و برگشت به حالت آنلاین
|
|
11553
|
-
</button>
|
|
11554
|
-
<button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
|
|
11555
|
-
ارسال اطلاعات آفلاین به سرور
|
|
11556
|
-
</button>
|
|
11557
|
-
</div>
|
|
11558
|
-
} @if (imageUrl) {
|
|
11559
|
-
<div id="headerSpaceHolder" #headerSpaceHolder>
|
|
11560
|
-
<div id="bgOuterHolder" #bgOuterHolder>
|
|
11561
|
-
<div id="bgInnerHolder" style="height: 100vh">
|
|
11562
|
-
<div class="backgroundImage" id="backgroundImage">
|
|
11563
|
-
<img class="picture" [src]="imageUrl" loading="lazy" />
|
|
11564
|
-
<span id="backgroundImageOverlay" class="overlay"></span>
|
|
11565
|
-
</div>
|
|
11566
|
-
</div>
|
|
11567
|
-
</div>
|
|
11568
|
-
</div>
|
|
11569
|
-
}
|
|
11570
|
-
<section class="section" id="mainpage" #sectionRef>
|
|
11571
|
-
<div #containerRef></div>
|
|
11572
|
-
</section>
|
|
11573
|
-
<div class="page-wrapper">
|
|
11574
|
-
<router-outlet></router-outlet>
|
|
11575
|
-
</div>
|
|
11576
|
-
<!-- <footer #footerRef></footer> -->
|
|
11577
|
-
<ng-container #footerRef></ng-container>
|
|
11578
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
11578
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.5", type: RootPortalComponent, selector: "bnrc-root-portal", viewQueries: [{ propertyName: "sectionRef", first: true, predicate: ["sectionRef"], descendants: true }, { propertyName: "footerRefVcr", first: true, predicate: ["footerRef"], descendants: true, read: ViewContainerRef }], usesInheritance: true, ngImport: i0, template: `
|
|
11579
|
+
@if(inLocalMode){
|
|
11580
|
+
<div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
|
|
11581
|
+
<button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
|
|
11582
|
+
حذف اطلاعات آفلاین
|
|
11583
|
+
</button>
|
|
11584
|
+
<button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
|
|
11585
|
+
حذف اطلاعات آفلاین و برگشت به حالت آنلاین
|
|
11586
|
+
</button>
|
|
11587
|
+
<button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
|
|
11588
|
+
ارسال اطلاعات آفلاین به سرور
|
|
11589
|
+
</button>
|
|
11590
|
+
</div>
|
|
11591
|
+
} @if (imageUrl) {
|
|
11592
|
+
<div id="headerSpaceHolder" #headerSpaceHolder>
|
|
11593
|
+
<div id="bgOuterHolder" #bgOuterHolder>
|
|
11594
|
+
<div id="bgInnerHolder" style="height: 100vh">
|
|
11595
|
+
<div class="backgroundImage" id="backgroundImage">
|
|
11596
|
+
<img class="picture" [src]="imageUrl" loading="lazy" />
|
|
11597
|
+
<span id="backgroundImageOverlay" class="overlay"></span>
|
|
11598
|
+
</div>
|
|
11599
|
+
</div>
|
|
11600
|
+
</div>
|
|
11601
|
+
</div>
|
|
11602
|
+
}
|
|
11603
|
+
<section loadExternalFiles class="section" id="mainpage" #sectionRef>
|
|
11604
|
+
<div #containerRef></div>
|
|
11605
|
+
</section>
|
|
11606
|
+
<div class="page-wrapper">
|
|
11607
|
+
<router-outlet></router-outlet>
|
|
11608
|
+
</div>
|
|
11609
|
+
<!-- <footer #footerRef></footer> -->
|
|
11610
|
+
<ng-container #footerRef></ng-container>
|
|
11611
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: LoadExternalFilesDirective, selector: "[loadExternalFiles]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
11579
11612
|
}
|
|
11580
11613
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: RootPortalComponent, decorators: [{
|
|
11581
11614
|
type: Component,
|
|
11582
11615
|
args: [{
|
|
11583
11616
|
selector: 'bnrc-root-portal',
|
|
11584
|
-
template: `
|
|
11585
|
-
@if(inLocalMode){
|
|
11586
|
-
<div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
|
|
11587
|
-
<button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
|
|
11588
|
-
حذف اطلاعات آفلاین
|
|
11589
|
-
</button>
|
|
11590
|
-
<button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
|
|
11591
|
-
حذف اطلاعات آفلاین و برگشت به حالت آنلاین
|
|
11592
|
-
</button>
|
|
11593
|
-
<button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
|
|
11594
|
-
ارسال اطلاعات آفلاین به سرور
|
|
11595
|
-
</button>
|
|
11596
|
-
</div>
|
|
11597
|
-
} @if (imageUrl) {
|
|
11598
|
-
<div id="headerSpaceHolder" #headerSpaceHolder>
|
|
11599
|
-
<div id="bgOuterHolder" #bgOuterHolder>
|
|
11600
|
-
<div id="bgInnerHolder" style="height: 100vh">
|
|
11601
|
-
<div class="backgroundImage" id="backgroundImage">
|
|
11602
|
-
<img class="picture" [src]="imageUrl" loading="lazy" />
|
|
11603
|
-
<span id="backgroundImageOverlay" class="overlay"></span>
|
|
11604
|
-
</div>
|
|
11605
|
-
</div>
|
|
11606
|
-
</div>
|
|
11607
|
-
</div>
|
|
11608
|
-
}
|
|
11609
|
-
<section class="section" id="mainpage" #sectionRef>
|
|
11610
|
-
<div #containerRef></div>
|
|
11611
|
-
</section>
|
|
11612
|
-
<div class="page-wrapper">
|
|
11613
|
-
<router-outlet></router-outlet>
|
|
11614
|
-
</div>
|
|
11615
|
-
<!-- <footer #footerRef></footer> -->
|
|
11616
|
-
<ng-container #footerRef></ng-container>
|
|
11617
|
+
template: `
|
|
11618
|
+
@if(inLocalMode){
|
|
11619
|
+
<div class="fd-toolbar" style="flex-wrap:wrap;padding:0.5rem;height:auto">
|
|
11620
|
+
<button class="fd-button fd-button--attention is-compact" (click)="onRemoveOfflineData()">
|
|
11621
|
+
حذف اطلاعات آفلاین
|
|
11622
|
+
</button>
|
|
11623
|
+
<button class="fd-button fd-button--negative is-compact" (click)="onRemoveOfflineDataAndReturnToOnline()">
|
|
11624
|
+
حذف اطلاعات آفلاین و برگشت به حالت آنلاین
|
|
11625
|
+
</button>
|
|
11626
|
+
<button class="fd-button fd-button--positive is-compact" (click)="onSendOfflineDataToServer()">
|
|
11627
|
+
ارسال اطلاعات آفلاین به سرور
|
|
11628
|
+
</button>
|
|
11629
|
+
</div>
|
|
11630
|
+
} @if (imageUrl) {
|
|
11631
|
+
<div id="headerSpaceHolder" #headerSpaceHolder>
|
|
11632
|
+
<div id="bgOuterHolder" #bgOuterHolder>
|
|
11633
|
+
<div id="bgInnerHolder" style="height: 100vh">
|
|
11634
|
+
<div class="backgroundImage" id="backgroundImage">
|
|
11635
|
+
<img class="picture" [src]="imageUrl" loading="lazy" />
|
|
11636
|
+
<span id="backgroundImageOverlay" class="overlay"></span>
|
|
11637
|
+
</div>
|
|
11638
|
+
</div>
|
|
11639
|
+
</div>
|
|
11640
|
+
</div>
|
|
11641
|
+
}
|
|
11642
|
+
<section loadExternalFiles class="section" id="mainpage" #sectionRef>
|
|
11643
|
+
<div #containerRef></div>
|
|
11644
|
+
</section>
|
|
11645
|
+
<div class="page-wrapper">
|
|
11646
|
+
<router-outlet></router-outlet>
|
|
11647
|
+
</div>
|
|
11648
|
+
<!-- <footer #footerRef></footer> -->
|
|
11649
|
+
<ng-container #footerRef></ng-container>
|
|
11617
11650
|
`,
|
|
11618
11651
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
11619
11652
|
}]
|
|
@@ -14093,7 +14126,8 @@ const directives = [
|
|
|
14093
14126
|
DynamicStyleDirective,
|
|
14094
14127
|
NowraptextDirective,
|
|
14095
14128
|
LabelmandatoryDirective,
|
|
14096
|
-
AbsoluteDivBodyDirective
|
|
14129
|
+
AbsoluteDivBodyDirective,
|
|
14130
|
+
LoadExternalFilesDirective
|
|
14097
14131
|
];
|
|
14098
14132
|
const pipes = [
|
|
14099
14133
|
NumeralPipe,
|
|
@@ -14141,7 +14175,8 @@ const pipes = [
|
|
|
14141
14175
|
ThImageOrIconePipe,
|
|
14142
14176
|
FindPreviewColumnPipe,
|
|
14143
14177
|
ReplacePipe,
|
|
14144
|
-
FilterWorkflowInMobilePipe
|
|
14178
|
+
FilterWorkflowInMobilePipe,
|
|
14179
|
+
HideColumnsInmobilePipe
|
|
14145
14180
|
];
|
|
14146
14181
|
const functionL1 = function () {
|
|
14147
14182
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -14322,7 +14357,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
14322
14357
|
ThImageOrIconePipe,
|
|
14323
14358
|
FindPreviewColumnPipe,
|
|
14324
14359
|
ReplacePipe,
|
|
14325
|
-
FilterWorkflowInMobilePipe,
|
|
14360
|
+
FilterWorkflowInMobilePipe,
|
|
14361
|
+
HideColumnsInmobilePipe, PlaceHolderDirective,
|
|
14326
14362
|
NumbersOnlyInputDirective,
|
|
14327
14363
|
RenderUlvViewerDirective,
|
|
14328
14364
|
RenderUlvPaginDirective,
|
|
@@ -14349,7 +14385,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
14349
14385
|
DynamicStyleDirective,
|
|
14350
14386
|
NowraptextDirective,
|
|
14351
14387
|
LabelmandatoryDirective,
|
|
14352
|
-
AbsoluteDivBodyDirective
|
|
14388
|
+
AbsoluteDivBodyDirective,
|
|
14389
|
+
LoadExternalFilesDirective], imports: [CommonModule,
|
|
14353
14390
|
HttpClientModule,
|
|
14354
14391
|
BarsaNovinRayCoreRoutingModule,
|
|
14355
14392
|
BarsaSapUiFormPageModule,
|
|
@@ -14417,7 +14454,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
14417
14454
|
ThImageOrIconePipe,
|
|
14418
14455
|
FindPreviewColumnPipe,
|
|
14419
14456
|
ReplacePipe,
|
|
14420
|
-
FilterWorkflowInMobilePipe,
|
|
14457
|
+
FilterWorkflowInMobilePipe,
|
|
14458
|
+
HideColumnsInmobilePipe, PlaceHolderDirective,
|
|
14421
14459
|
NumbersOnlyInputDirective,
|
|
14422
14460
|
RenderUlvViewerDirective,
|
|
14423
14461
|
RenderUlvPaginDirective,
|
|
@@ -14444,7 +14482,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
14444
14482
|
DynamicStyleDirective,
|
|
14445
14483
|
NowraptextDirective,
|
|
14446
14484
|
LabelmandatoryDirective,
|
|
14447
|
-
AbsoluteDivBodyDirective
|
|
14485
|
+
AbsoluteDivBodyDirective,
|
|
14486
|
+
LoadExternalFilesDirective] }); }
|
|
14448
14487
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: BarsaNovinRayCoreModule, imports: [CommonModule,
|
|
14449
14488
|
HttpClientModule,
|
|
14450
14489
|
BarsaNovinRayCoreRoutingModule,
|
|
@@ -14471,5 +14510,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
14471
14510
|
* Generated bundle index. Do not edit.
|
|
14472
14511
|
*/
|
|
14473
14512
|
|
|
14474
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, 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, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, 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, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
14513
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, 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, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, HeaderFacetValuePipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, 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, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
14475
14514
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|