barsa-novin-ray-core 1.0.362 → 1.0.365
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/esm2020/lib/constants.mjs +50 -1
- package/esm2020/lib/pipes/multiple-groupby.pipe.mjs +3 -29
- package/esm2020/lib/pipes/visible-value.pipe.mjs +4 -10
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/barsa-novin-ray-core.mjs +153 -138
- package/fesm2015/barsa-novin-ray-core.mjs.map +1 -1
- package/fesm2020/barsa-novin-ray-core.mjs +151 -136
- package/fesm2020/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/constants.d.ts +16 -1
- package/lib/pipes/multiple-groupby.pipe.d.ts +1 -9
- package/lib/pipes/visible-value.pipe.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, SkipSelf, NgModuleFactory, Pipe, Inject, EventEmitter, Self, Output, HostBinding, HostListener, ViewContainerRef, ViewChild, Directive,
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, SkipSelf, NgModuleFactory, Pipe, Inject, EventEmitter, Self, Output, HostBinding, HostListener, ViewContainerRef, ViewChild, Directive, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, ElementRef, ErrorHandler, APP_INITIALIZER } from '@angular/core';
|
|
3
3
|
import { Subject, from, BehaviorSubject, of, 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, switchMap as switchMap$1, timer, debounceTime as debounceTime$1 } from 'rxjs';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
5
|
import { NavigationEnd, ActivatedRoute, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
|
|
@@ -1715,6 +1715,57 @@ function GetAllColumnsSorted(context) {
|
|
|
1715
1715
|
});
|
|
1716
1716
|
return columns;
|
|
1717
1717
|
}
|
|
1718
|
+
function GetVisibleValue(object, field) {
|
|
1719
|
+
var _a;
|
|
1720
|
+
let outputValue;
|
|
1721
|
+
if (((_a = object[field]) === null || _a === void 0 ? void 0 : _a.$Caption) !== undefined) {
|
|
1722
|
+
outputValue = object[field].$Caption;
|
|
1723
|
+
}
|
|
1724
|
+
else {
|
|
1725
|
+
outputValue = object[field + '$Caption'] !== undefined ? object[field + '$Caption'] : object[field];
|
|
1726
|
+
}
|
|
1727
|
+
return outputValue;
|
|
1728
|
+
}
|
|
1729
|
+
function GroupBy(collection, sortSettings) {
|
|
1730
|
+
const grouped = {};
|
|
1731
|
+
const groups = sortSettings.map((c) => c.Name);
|
|
1732
|
+
const getTitle = (mo, fieldName) => GetVisibleValue(mo, fieldName);
|
|
1733
|
+
collection.forEach((a) => {
|
|
1734
|
+
groups
|
|
1735
|
+
.reduce((o, g, i) => {
|
|
1736
|
+
var _a;
|
|
1737
|
+
const groupTitle = getTitle(a, g);
|
|
1738
|
+
o[groupTitle] = o[groupTitle] || (i + 1 === groups.length ? [] : {});
|
|
1739
|
+
if (Array.isArray(o[groupTitle])) {
|
|
1740
|
+
a.$Level = groups.length;
|
|
1741
|
+
let title = getTitle(a, groups[0]);
|
|
1742
|
+
let parent = grouped[title];
|
|
1743
|
+
parent.$Count = ((_a = parent.$Count) !== null && _a !== void 0 ? _a : 0) + 1;
|
|
1744
|
+
for (let j = 1; j < groups.length - 1; j++) {
|
|
1745
|
+
title = getTitle(a, groups[j]);
|
|
1746
|
+
parent = parent[title];
|
|
1747
|
+
parent.$Count = o[groupTitle].length + 1;
|
|
1748
|
+
}
|
|
1749
|
+
}
|
|
1750
|
+
else {
|
|
1751
|
+
const a2 = FindGroup(groupTitle, a);
|
|
1752
|
+
o[groupTitle].$Expanded = a2 === null || a2 === void 0 ? void 0 : a2.$Expanded;
|
|
1753
|
+
o[groupTitle].$Visibility = a2 === null || a2 === void 0 ? void 0 : a2.$Visibility;
|
|
1754
|
+
}
|
|
1755
|
+
return o[groupTitle];
|
|
1756
|
+
}, grouped)
|
|
1757
|
+
.push(a);
|
|
1758
|
+
});
|
|
1759
|
+
return { grouped, groups };
|
|
1760
|
+
}
|
|
1761
|
+
function FindGroup(groupTitle, a) {
|
|
1762
|
+
if (a.$Group === groupTitle) {
|
|
1763
|
+
return a;
|
|
1764
|
+
}
|
|
1765
|
+
if (a.$Parent) {
|
|
1766
|
+
return FindGroup(groupTitle, a.$Parent);
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1718
1769
|
function FillAllLayoutControls(item, layoutControls) {
|
|
1719
1770
|
var _a;
|
|
1720
1771
|
if (item.xtype === 'Ly.LayoutControl') {
|
|
@@ -4165,16 +4216,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
4165
4216
|
|
|
4166
4217
|
class VisibleValuePipe {
|
|
4167
4218
|
constructor() { }
|
|
4168
|
-
transform(object,
|
|
4169
|
-
|
|
4170
|
-
let outputValue;
|
|
4171
|
-
if (((_a = object[feild]) === null || _a === void 0 ? void 0 : _a.$Caption) !== undefined) {
|
|
4172
|
-
outputValue = object[feild].$Caption;
|
|
4173
|
-
}
|
|
4174
|
-
else {
|
|
4175
|
-
outputValue = object[feild + '$Caption'] !== undefined ? object[feild + '$Caption'] : object[feild];
|
|
4176
|
-
}
|
|
4177
|
-
return outputValue;
|
|
4219
|
+
transform(object, field) {
|
|
4220
|
+
return GetVisibleValue(object, field);
|
|
4178
4221
|
}
|
|
4179
4222
|
}
|
|
4180
4223
|
VisibleValuePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: VisibleValuePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
@@ -4237,41 +4280,13 @@ class MultipleGroupByPipe {
|
|
|
4237
4280
|
this.visibleValuePipe = visibleValuePipe;
|
|
4238
4281
|
}
|
|
4239
4282
|
transform(collection, sortSettings) {
|
|
4240
|
-
const grouped = {};
|
|
4241
4283
|
if (sortSettings.length === 0) {
|
|
4242
4284
|
collection.forEach((c) => {
|
|
4243
4285
|
delete c.$Parent;
|
|
4244
4286
|
});
|
|
4245
4287
|
return collection;
|
|
4246
4288
|
}
|
|
4247
|
-
const groups =
|
|
4248
|
-
const getTitle = (mo, fieldName) => this.visibleValuePipe.transform(mo, fieldName);
|
|
4249
|
-
collection.forEach((a) => {
|
|
4250
|
-
groups
|
|
4251
|
-
.reduce((o, g, i) => {
|
|
4252
|
-
var _a;
|
|
4253
|
-
const groupTitle = getTitle(a, g);
|
|
4254
|
-
o[groupTitle] = o[groupTitle] || (i + 1 === groups.length ? [] : {});
|
|
4255
|
-
if (Array.isArray(o[groupTitle])) {
|
|
4256
|
-
a.$Level = groups.length;
|
|
4257
|
-
let title = getTitle(a, groups[0]);
|
|
4258
|
-
let parent = grouped[title];
|
|
4259
|
-
parent.$Count = ((_a = parent.$Count) !== null && _a !== void 0 ? _a : 0) + 1;
|
|
4260
|
-
for (let j = 1; j < groups.length - 1; j++) {
|
|
4261
|
-
title = getTitle(a, groups[j]);
|
|
4262
|
-
parent = parent[title];
|
|
4263
|
-
parent.$Count = o[groupTitle].length + 1;
|
|
4264
|
-
}
|
|
4265
|
-
}
|
|
4266
|
-
else {
|
|
4267
|
-
const a2 = this.findGroup(groupTitle, a);
|
|
4268
|
-
o[groupTitle].$Expanded = a2 === null || a2 === void 0 ? void 0 : a2.$Expanded;
|
|
4269
|
-
o[groupTitle].$Visibility = a2 === null || a2 === void 0 ? void 0 : a2.$Visibility;
|
|
4270
|
-
}
|
|
4271
|
-
return o[groupTitle];
|
|
4272
|
-
}, grouped)
|
|
4273
|
-
.push(a);
|
|
4274
|
-
});
|
|
4289
|
+
const { grouped, groups } = GroupBy(collection, sortSettings);
|
|
4275
4290
|
const arr = [];
|
|
4276
4291
|
this.prepareArr(arr, null, grouped, groups.length, 0);
|
|
4277
4292
|
return arr;
|
|
@@ -11819,6 +11834,103 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
11819
11834
|
args: ['placeholder', { read: ViewContainerRef, static: true }]
|
|
11820
11835
|
}] } });
|
|
11821
11836
|
|
|
11837
|
+
function formRoutes(authGuard = false) {
|
|
11838
|
+
return {
|
|
11839
|
+
path: 'form',
|
|
11840
|
+
canActivate: authGuard ? [AuthGuard] : [],
|
|
11841
|
+
loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((m) => m.BarsaSapUiFormPageModule)
|
|
11842
|
+
};
|
|
11843
|
+
}
|
|
11844
|
+
|
|
11845
|
+
const routes$1 = [
|
|
11846
|
+
{
|
|
11847
|
+
path: '',
|
|
11848
|
+
component: EmptyPageWithRouterAndRouterOutletComponent,
|
|
11849
|
+
children: [
|
|
11850
|
+
{
|
|
11851
|
+
path: 'show',
|
|
11852
|
+
outlet: 'main',
|
|
11853
|
+
component: FormPageComponent,
|
|
11854
|
+
data: { breadcrumb: (data) => `${data.breadcrumb}` },
|
|
11855
|
+
resolve: { breadcrumb: PortalFormPageResolver },
|
|
11856
|
+
children: [
|
|
11857
|
+
{
|
|
11858
|
+
path: 'popup',
|
|
11859
|
+
loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((c) => c.BarsaSapUiFormPageModule)
|
|
11860
|
+
}
|
|
11861
|
+
]
|
|
11862
|
+
}
|
|
11863
|
+
]
|
|
11864
|
+
}
|
|
11865
|
+
];
|
|
11866
|
+
class BarsaSapUiFormPageRoutingModule {
|
|
11867
|
+
}
|
|
11868
|
+
BarsaSapUiFormPageRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
11869
|
+
BarsaSapUiFormPageRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [i1.RouterModule], exports: [RouterModule] });
|
|
11870
|
+
BarsaSapUiFormPageRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [RouterModule.forChild(routes$1), RouterModule] });
|
|
11871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, decorators: [{
|
|
11872
|
+
type: NgModule,
|
|
11873
|
+
args: [{
|
|
11874
|
+
imports: [RouterModule.forChild(routes$1)],
|
|
11875
|
+
exports: [RouterModule]
|
|
11876
|
+
}]
|
|
11877
|
+
}] });
|
|
11878
|
+
|
|
11879
|
+
class BaseModule {
|
|
11880
|
+
constructor(dcm, componentFactoryResolver, moduleName) {
|
|
11881
|
+
this.dcm = dcm;
|
|
11882
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
11883
|
+
this.moduleName = moduleName;
|
|
11884
|
+
this.selectorToFactoryMap = {};
|
|
11885
|
+
this.isInitialize = false;
|
|
11886
|
+
dcm === null || dcm === void 0 ? void 0 : dcm.addModuleWithComponents(moduleName, this);
|
|
11887
|
+
}
|
|
11888
|
+
getComponentFactory(componentName) {
|
|
11889
|
+
if (!this.isInitialize) {
|
|
11890
|
+
// lazy initialisation
|
|
11891
|
+
this.populateRegistry();
|
|
11892
|
+
}
|
|
11893
|
+
return this.selectorToFactoryMap[componentName];
|
|
11894
|
+
}
|
|
11895
|
+
populateRegistry() {
|
|
11896
|
+
this.selectorToFactoryMap = {};
|
|
11897
|
+
this.isInitialize = true;
|
|
11898
|
+
if (Array.isArray(this.dynamicComponents) && this.dynamicComponents.length > 0) {
|
|
11899
|
+
this.dynamicComponents.forEach((compType) => {
|
|
11900
|
+
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(compType);
|
|
11901
|
+
this.selectorToFactoryMap[componentFactory.selector] = componentFactory;
|
|
11902
|
+
});
|
|
11903
|
+
}
|
|
11904
|
+
}
|
|
11905
|
+
}
|
|
11906
|
+
|
|
11907
|
+
const components$1 = [];
|
|
11908
|
+
class BarsaSapUiFormPageModule extends BaseModule {
|
|
11909
|
+
constructor(dcm, cfr) {
|
|
11910
|
+
super(dcm, cfr, 'BarsaSapUiFormPageModule');
|
|
11911
|
+
this.dcm = dcm;
|
|
11912
|
+
this.cfr = cfr;
|
|
11913
|
+
this.dynamicComponents = [...components$1];
|
|
11914
|
+
}
|
|
11915
|
+
}
|
|
11916
|
+
BarsaSapUiFormPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, deps: [{ token: DynamicComponentService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
11917
|
+
BarsaSapUiFormPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
|
|
11918
|
+
BarsaSapUiFormPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
|
|
11919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, decorators: [{
|
|
11920
|
+
type: NgModule,
|
|
11921
|
+
args: [{
|
|
11922
|
+
imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule],
|
|
11923
|
+
declarations: [...components$1],
|
|
11924
|
+
exports: [...components$1],
|
|
11925
|
+
schemas: [NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA]
|
|
11926
|
+
}]
|
|
11927
|
+
}], ctorParameters: function () { return [{ type: DynamicComponentService }, { type: i0.ComponentFactoryResolver }]; } });
|
|
11928
|
+
|
|
11929
|
+
var barsaSapUiFormPage_module = /*#__PURE__*/Object.freeze({
|
|
11930
|
+
__proto__: null,
|
|
11931
|
+
BarsaSapUiFormPageModule: BarsaSapUiFormPageModule
|
|
11932
|
+
});
|
|
11933
|
+
|
|
11822
11934
|
class BaseUlvSettingComponent extends BaseComponent {
|
|
11823
11935
|
constructor() {
|
|
11824
11936
|
super(...arguments);
|
|
@@ -11942,34 +12054,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
11942
12054
|
args: ['class.page-content']
|
|
11943
12055
|
}] } });
|
|
11944
12056
|
|
|
11945
|
-
class BaseModule {
|
|
11946
|
-
constructor(dcm, componentFactoryResolver, moduleName) {
|
|
11947
|
-
this.dcm = dcm;
|
|
11948
|
-
this.componentFactoryResolver = componentFactoryResolver;
|
|
11949
|
-
this.moduleName = moduleName;
|
|
11950
|
-
this.selectorToFactoryMap = {};
|
|
11951
|
-
this.isInitialize = false;
|
|
11952
|
-
dcm === null || dcm === void 0 ? void 0 : dcm.addModuleWithComponents(moduleName, this);
|
|
11953
|
-
}
|
|
11954
|
-
getComponentFactory(componentName) {
|
|
11955
|
-
if (!this.isInitialize) {
|
|
11956
|
-
// lazy initialisation
|
|
11957
|
-
this.populateRegistry();
|
|
11958
|
-
}
|
|
11959
|
-
return this.selectorToFactoryMap[componentName];
|
|
11960
|
-
}
|
|
11961
|
-
populateRegistry() {
|
|
11962
|
-
this.selectorToFactoryMap = {};
|
|
11963
|
-
this.isInitialize = true;
|
|
11964
|
-
if (Array.isArray(this.dynamicComponents) && this.dynamicComponents.length > 0) {
|
|
11965
|
-
this.dynamicComponents.forEach((compType) => {
|
|
11966
|
-
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(compType);
|
|
11967
|
-
this.selectorToFactoryMap[componentFactory.selector] = componentFactory;
|
|
11968
|
-
});
|
|
11969
|
-
}
|
|
11970
|
-
}
|
|
11971
|
-
}
|
|
11972
|
-
|
|
11973
12057
|
class ResizableDirective {
|
|
11974
12058
|
constructor(documentRef, elementRef) {
|
|
11975
12059
|
this.documentRef = documentRef;
|
|
@@ -12050,75 +12134,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
12050
12134
|
}]
|
|
12051
12135
|
}] });
|
|
12052
12136
|
|
|
12053
|
-
function formRoutes(authGuard = false) {
|
|
12054
|
-
return {
|
|
12055
|
-
path: 'form',
|
|
12056
|
-
canActivate: authGuard ? [AuthGuard] : [],
|
|
12057
|
-
loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((m) => m.BarsaSapUiFormPageModule)
|
|
12058
|
-
};
|
|
12059
|
-
}
|
|
12060
|
-
|
|
12061
|
-
const routes$1 = [
|
|
12062
|
-
{
|
|
12063
|
-
path: '',
|
|
12064
|
-
component: EmptyPageWithRouterAndRouterOutletComponent,
|
|
12065
|
-
children: [
|
|
12066
|
-
{
|
|
12067
|
-
path: 'show',
|
|
12068
|
-
outlet: 'main',
|
|
12069
|
-
component: FormPageComponent,
|
|
12070
|
-
data: { breadcrumb: (data) => `${data.breadcrumb}` },
|
|
12071
|
-
resolve: { breadcrumb: PortalFormPageResolver },
|
|
12072
|
-
children: [
|
|
12073
|
-
{
|
|
12074
|
-
path: 'popup',
|
|
12075
|
-
loadChildren: () => Promise.resolve().then(function () { return barsaSapUiFormPage_module; }).then((c) => c.BarsaSapUiFormPageModule)
|
|
12076
|
-
}
|
|
12077
|
-
]
|
|
12078
|
-
}
|
|
12079
|
-
]
|
|
12080
|
-
}
|
|
12081
|
-
];
|
|
12082
|
-
class BarsaSapUiFormPageRoutingModule {
|
|
12083
|
-
}
|
|
12084
|
-
BarsaSapUiFormPageRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
12085
|
-
BarsaSapUiFormPageRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [i1.RouterModule], exports: [RouterModule] });
|
|
12086
|
-
BarsaSapUiFormPageRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, imports: [RouterModule.forChild(routes$1), RouterModule] });
|
|
12087
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageRoutingModule, decorators: [{
|
|
12088
|
-
type: NgModule,
|
|
12089
|
-
args: [{
|
|
12090
|
-
imports: [RouterModule.forChild(routes$1)],
|
|
12091
|
-
exports: [RouterModule]
|
|
12092
|
-
}]
|
|
12093
|
-
}] });
|
|
12094
|
-
|
|
12095
|
-
const components$1 = [];
|
|
12096
|
-
class BarsaSapUiFormPageModule extends BaseModule {
|
|
12097
|
-
constructor(dcm, cfr) {
|
|
12098
|
-
super(dcm, cfr, 'BarsaSapUiFormPageModule');
|
|
12099
|
-
this.dcm = dcm;
|
|
12100
|
-
this.cfr = cfr;
|
|
12101
|
-
this.dynamicComponents = [...components$1];
|
|
12102
|
-
}
|
|
12103
|
-
}
|
|
12104
|
-
BarsaSapUiFormPageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, deps: [{ token: DynamicComponentService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
12105
|
-
BarsaSapUiFormPageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
|
|
12106
|
-
BarsaSapUiFormPageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule] });
|
|
12107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiFormPageModule, decorators: [{
|
|
12108
|
-
type: NgModule,
|
|
12109
|
-
args: [{
|
|
12110
|
-
imports: [CommonModule, FormsModule, BarsaSapUiFormPageRoutingModule],
|
|
12111
|
-
declarations: [...components$1],
|
|
12112
|
-
exports: [...components$1],
|
|
12113
|
-
schemas: [NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA]
|
|
12114
|
-
}]
|
|
12115
|
-
}], ctorParameters: function () { return [{ type: DynamicComponentService }, { type: i0.ComponentFactoryResolver }]; } });
|
|
12116
|
-
|
|
12117
|
-
var barsaSapUiFormPage_module = /*#__PURE__*/Object.freeze({
|
|
12118
|
-
__proto__: null,
|
|
12119
|
-
BarsaSapUiFormPageModule: BarsaSapUiFormPageModule
|
|
12120
|
-
});
|
|
12121
|
-
|
|
12122
12137
|
const routesDefault = [
|
|
12123
12138
|
{
|
|
12124
12139
|
path: 'login',
|
|
@@ -12693,5 +12708,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
12693
12708
|
* Generated bundle index. Do not edit.
|
|
12694
12709
|
*/
|
|
12695
12710
|
|
|
12696
|
-
export { APP_VERSION, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, 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, FindColumnByDbNamePipe, FindLayoutSettingFromLayout94, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GridSetting, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, ItemsRendererDirective, 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, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalReportPageResolver, PortalService, PreventDefaulEvent, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RowDataOption, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, _calcContextMenuWidth, availablePrefixes, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateMoDataListContentWidthByColumnName, calculateWidthOfListColumn, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formatBytes, fromIntersectionObserver, genrateInlineMoId, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getTargetRect, getUniqueId, getValidExtension, isFirefox, isFunction, isImage, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, shallowEqual, throwIfAlreadyLoaded, toNumber };
|
|
12711
|
+
export { APP_VERSION, 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, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValuePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, 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, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, 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, ItemsRendererDirective, 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, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalReportPageResolver, PortalService, PreventDefaulEvent, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvPaginDirective, RenderUlvViewerDirective, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RowDataOption, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StringControlInfoModel, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, _calcContextMenuWidth, availablePrefixes, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateMoDataListContentWidthByColumnName, calculateWidthOfListColumn, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getTargetRect, getUniqueId, getValidExtension, isFirefox, isFunction, isImage, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, shallowEqual, throwIfAlreadyLoaded, toNumber };
|
|
12697
12712
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|