barsa-novin-ray-core 2.3.31 → 2.3.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/barsa-novin-ray-core.mjs +272 -28
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +340 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { NavigationEnd, NavigationStart, Route, Router, ActivatedRoute, Activate
|
|
|
7
7
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
8
8
|
import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
|
|
9
9
|
import { IconFont, ContentDensity } from '@fundamental-ngx/core';
|
|
10
|
-
import * as
|
|
10
|
+
import * as i134 from '@angular/forms';
|
|
11
11
|
import { ValidatorFn, FormGroup } from '@angular/forms';
|
|
12
12
|
import * as i1$1 from '@angular/common';
|
|
13
13
|
import { TitleCasePipe } from '@angular/common';
|
|
@@ -1127,6 +1127,278 @@ interface UiResponsiveSettings {
|
|
|
1127
1127
|
SmColumns: number;
|
|
1128
1128
|
}
|
|
1129
1129
|
type CultureTypes = 'fa-IR' | 'ar-AE' | 'en-US';
|
|
1130
|
+
interface ISystemData {
|
|
1131
|
+
Id: string;
|
|
1132
|
+
Name: string;
|
|
1133
|
+
Caption: string;
|
|
1134
|
+
IconName: string;
|
|
1135
|
+
RootFolderId: string;
|
|
1136
|
+
IsLoaded: boolean;
|
|
1137
|
+
IsUiCreated: boolean;
|
|
1138
|
+
IsActive: boolean;
|
|
1139
|
+
CustomCodeList: any;
|
|
1140
|
+
OnlyCode: boolean;
|
|
1141
|
+
NoUi: boolean;
|
|
1142
|
+
HasVerifyPassword: boolean;
|
|
1143
|
+
ExtraData: any;
|
|
1144
|
+
Navigator: Navigator;
|
|
1145
|
+
Modules: Modules;
|
|
1146
|
+
ShowRibbon: boolean;
|
|
1147
|
+
JsonExtraProp: Record<string, any>;
|
|
1148
|
+
CommandGroups: CommandGroup[];
|
|
1149
|
+
UseTreeNavigator: boolean;
|
|
1150
|
+
}
|
|
1151
|
+
interface CommandGroup {
|
|
1152
|
+
Caption: string;
|
|
1153
|
+
Name: string;
|
|
1154
|
+
Key: string;
|
|
1155
|
+
Order: number;
|
|
1156
|
+
Commands: Command[];
|
|
1157
|
+
}
|
|
1158
|
+
interface Command {
|
|
1159
|
+
Caption: string;
|
|
1160
|
+
Name: string;
|
|
1161
|
+
Key: string;
|
|
1162
|
+
Size: string;
|
|
1163
|
+
IconSize: number;
|
|
1164
|
+
Alignment: string;
|
|
1165
|
+
Icon: string;
|
|
1166
|
+
Menu: Menu[];
|
|
1167
|
+
IsGlobal: boolean;
|
|
1168
|
+
Order?: number;
|
|
1169
|
+
}
|
|
1170
|
+
interface Menu {
|
|
1171
|
+
Caption: string;
|
|
1172
|
+
Name: string;
|
|
1173
|
+
Key: string;
|
|
1174
|
+
CommandId: string;
|
|
1175
|
+
DynamicCommand?: MetaobjectDataModel;
|
|
1176
|
+
Size: string;
|
|
1177
|
+
IconSize: number;
|
|
1178
|
+
Alignment: string;
|
|
1179
|
+
Icon: string;
|
|
1180
|
+
Order?: number;
|
|
1181
|
+
IsGlobal: boolean;
|
|
1182
|
+
}
|
|
1183
|
+
interface Navigator {
|
|
1184
|
+
Root: NavigatorRoot;
|
|
1185
|
+
Width: number;
|
|
1186
|
+
}
|
|
1187
|
+
interface NavigatorRoot {
|
|
1188
|
+
IsRoot: boolean;
|
|
1189
|
+
IsTab: boolean;
|
|
1190
|
+
Id: string;
|
|
1191
|
+
FolderId: string;
|
|
1192
|
+
ReportId: string;
|
|
1193
|
+
Name: string;
|
|
1194
|
+
Caption: string;
|
|
1195
|
+
ReportCountExtension: boolean;
|
|
1196
|
+
NotLoaded: boolean;
|
|
1197
|
+
IconUrl: string;
|
|
1198
|
+
Items: NavigatorRootItem[];
|
|
1199
|
+
}
|
|
1200
|
+
interface NavigatorRootItem {
|
|
1201
|
+
IsRoot: boolean;
|
|
1202
|
+
IsTab: boolean;
|
|
1203
|
+
Id: string;
|
|
1204
|
+
FolderId: string;
|
|
1205
|
+
ReportId: string;
|
|
1206
|
+
Name: string;
|
|
1207
|
+
Caption: string;
|
|
1208
|
+
ReportCountExtension: boolean;
|
|
1209
|
+
NotLoaded: boolean;
|
|
1210
|
+
IconUrl: string;
|
|
1211
|
+
Items: NavigatorFolder[];
|
|
1212
|
+
}
|
|
1213
|
+
interface NavigatorFolder {
|
|
1214
|
+
IsRoot: boolean;
|
|
1215
|
+
IsTab: boolean;
|
|
1216
|
+
Id: string;
|
|
1217
|
+
FolderId: string;
|
|
1218
|
+
ReportId: string;
|
|
1219
|
+
Name: string;
|
|
1220
|
+
Caption: string;
|
|
1221
|
+
ReportCountExtension: boolean;
|
|
1222
|
+
NotLoaded: boolean;
|
|
1223
|
+
IconUrl: string;
|
|
1224
|
+
Items: NavigatorFolderItem[];
|
|
1225
|
+
FolderJsonExtraProp?: Record<string, any>;
|
|
1226
|
+
}
|
|
1227
|
+
interface NavigatorFolderItem {
|
|
1228
|
+
IsRoot: boolean;
|
|
1229
|
+
IsTab: boolean;
|
|
1230
|
+
Id: string;
|
|
1231
|
+
FolderId: string;
|
|
1232
|
+
ReportId: string;
|
|
1233
|
+
Name: string;
|
|
1234
|
+
Caption: string;
|
|
1235
|
+
ReportCountExtension: boolean;
|
|
1236
|
+
NotLoaded: boolean;
|
|
1237
|
+
ShowReportInNavigator?: boolean;
|
|
1238
|
+
InsideView_Height?: number;
|
|
1239
|
+
InsideView_RelatedFieldName?: string;
|
|
1240
|
+
InsideView_RelatedFieldId?: string;
|
|
1241
|
+
InsideView_ReportName?: string;
|
|
1242
|
+
IconUrl?: string;
|
|
1243
|
+
DynamicCommand?: MetaobjectDataModel;
|
|
1244
|
+
}
|
|
1245
|
+
interface Modules {
|
|
1246
|
+
GetListMethod: string;
|
|
1247
|
+
AddToFavoriteMethod: string;
|
|
1248
|
+
RemoveFromFavoriteMethod: string;
|
|
1249
|
+
}
|
|
1250
|
+
interface ISystem {
|
|
1251
|
+
Caption: string;
|
|
1252
|
+
Id: string;
|
|
1253
|
+
Name: string;
|
|
1254
|
+
SystemData: ISystemData;
|
|
1255
|
+
}
|
|
1256
|
+
type CommonObservable = {
|
|
1257
|
+
on: (args: any) => void;
|
|
1258
|
+
events: Record<string, any>;
|
|
1259
|
+
fireEvent: (...args: any[]) => void;
|
|
1260
|
+
};
|
|
1261
|
+
type NavData = {
|
|
1262
|
+
Caption: string;
|
|
1263
|
+
FolderId: string;
|
|
1264
|
+
IconUrl: string;
|
|
1265
|
+
Id: string;
|
|
1266
|
+
IsRoot: boolean;
|
|
1267
|
+
IsTab: boolean;
|
|
1268
|
+
Items: Array<any>;
|
|
1269
|
+
Name: string;
|
|
1270
|
+
NotLoaded: boolean;
|
|
1271
|
+
Parent: NavData;
|
|
1272
|
+
ReportCountExtension: boolean;
|
|
1273
|
+
selected: boolean;
|
|
1274
|
+
ReportId: string;
|
|
1275
|
+
childControl: {
|
|
1276
|
+
controlItems: Array<CustomNavPageUi>;
|
|
1277
|
+
};
|
|
1278
|
+
};
|
|
1279
|
+
type NavChildData = {
|
|
1280
|
+
Caption: string;
|
|
1281
|
+
FolderId: string;
|
|
1282
|
+
IconUrl: string;
|
|
1283
|
+
Id: string;
|
|
1284
|
+
IsRoot: boolean;
|
|
1285
|
+
IsTab: boolean;
|
|
1286
|
+
Name: string;
|
|
1287
|
+
NotLoaded: boolean;
|
|
1288
|
+
ReportCountExtension: boolean;
|
|
1289
|
+
ReportId: string;
|
|
1290
|
+
};
|
|
1291
|
+
type NavGroupNode = {
|
|
1292
|
+
cls: string;
|
|
1293
|
+
data: NavChildData;
|
|
1294
|
+
icon: string;
|
|
1295
|
+
fontIcon: string;
|
|
1296
|
+
fontName: any;
|
|
1297
|
+
id: string;
|
|
1298
|
+
isDynCommand: boolean;
|
|
1299
|
+
leaf: boolean;
|
|
1300
|
+
text: string;
|
|
1301
|
+
children: NavGroupNode[];
|
|
1302
|
+
};
|
|
1303
|
+
type CustomNavGroupUi = CommonObservable & {
|
|
1304
|
+
Caption: string;
|
|
1305
|
+
FolderId: string;
|
|
1306
|
+
IconUrl: string;
|
|
1307
|
+
fontIcon: string;
|
|
1308
|
+
fontName: any;
|
|
1309
|
+
Id: string;
|
|
1310
|
+
IsRoot: boolean;
|
|
1311
|
+
IsTab: boolean;
|
|
1312
|
+
Name: string;
|
|
1313
|
+
NotLoaded: boolean;
|
|
1314
|
+
ShowReportInNavigator: boolean;
|
|
1315
|
+
ReportId: string;
|
|
1316
|
+
InsideView_Height: number;
|
|
1317
|
+
InsideView_RelatedFieldId: string;
|
|
1318
|
+
InsideView_RelatedFieldName: string;
|
|
1319
|
+
InsideView_ReportName: string;
|
|
1320
|
+
};
|
|
1321
|
+
type CustomNavGroupsUi = CommonObservable & {
|
|
1322
|
+
Caption: string;
|
|
1323
|
+
FolderId: string;
|
|
1324
|
+
IconUrl: string;
|
|
1325
|
+
fontIcon: string;
|
|
1326
|
+
fontName: any;
|
|
1327
|
+
Id: string;
|
|
1328
|
+
IsRoot: boolean;
|
|
1329
|
+
IsTab: boolean;
|
|
1330
|
+
Items: Array<CustomNavGroupUi>;
|
|
1331
|
+
Name: string;
|
|
1332
|
+
NotLoaded: boolean;
|
|
1333
|
+
Parent: CustomNavPageUi;
|
|
1334
|
+
ShowReportInNavigator: boolean;
|
|
1335
|
+
ReportId: string;
|
|
1336
|
+
};
|
|
1337
|
+
type CustomNavPageUi = CommonObservable & {
|
|
1338
|
+
Data: NavData;
|
|
1339
|
+
JsonExtraProp: Record<string, any>;
|
|
1340
|
+
cls: string;
|
|
1341
|
+
controlItems: Array<CustomNavGroupUi>;
|
|
1342
|
+
events: Record<string, any>;
|
|
1343
|
+
itemId: string;
|
|
1344
|
+
title: string;
|
|
1345
|
+
selected: boolean;
|
|
1346
|
+
icon: string;
|
|
1347
|
+
};
|
|
1348
|
+
type CustomSystemNavUi = CommonObservable & {
|
|
1349
|
+
itemId: string;
|
|
1350
|
+
title: string;
|
|
1351
|
+
FastSearchNavItemList: Array<any>;
|
|
1352
|
+
JsonExtraProp: Record<string, any>;
|
|
1353
|
+
SystemData: ISystemData;
|
|
1354
|
+
childControl: {
|
|
1355
|
+
controlItems: Array<CustomNavPageUi>;
|
|
1356
|
+
};
|
|
1357
|
+
};
|
|
1358
|
+
type CustomSystemContainerUi = CommonObservable & {
|
|
1359
|
+
SystemData: ISystemData;
|
|
1360
|
+
};
|
|
1361
|
+
type CustomSystemUi = CommonObservable & {
|
|
1362
|
+
SystemNavUi: CustomSystemNavUi;
|
|
1363
|
+
SystemData: ISystemData;
|
|
1364
|
+
SystemContainerUi: CustomSystemContainerUi;
|
|
1365
|
+
Ribbon: CustomRibbon;
|
|
1366
|
+
};
|
|
1367
|
+
type CustomApplicationUi = CommonObservable & {
|
|
1368
|
+
_selectedSystemId: string;
|
|
1369
|
+
_systemsUi: Array<CustomSystemUi>;
|
|
1370
|
+
_appMenuBody: CustomApplicationMenuBodyUi;
|
|
1371
|
+
};
|
|
1372
|
+
type CustomApplicationMenuBodyUi = CommonObservable & {
|
|
1373
|
+
SystemDataDict: Record<string, ISystemData>;
|
|
1374
|
+
items: Array<AppMenu>;
|
|
1375
|
+
};
|
|
1376
|
+
type CustomRibbon = CommonObservable;
|
|
1377
|
+
type AppMenu = {
|
|
1378
|
+
id: string;
|
|
1379
|
+
title: string;
|
|
1380
|
+
subtitle?: string;
|
|
1381
|
+
callback?: (event: MouseEvent) => void;
|
|
1382
|
+
icon?: string;
|
|
1383
|
+
iconImage?: string;
|
|
1384
|
+
font?: string;
|
|
1385
|
+
selected?: boolean;
|
|
1386
|
+
disabledDragAndDrop?: boolean;
|
|
1387
|
+
stickToPosition?: boolean;
|
|
1388
|
+
SystemData: ISystemData;
|
|
1389
|
+
};
|
|
1390
|
+
type ShellbarSetting = MetaobjectDataModel & {
|
|
1391
|
+
CssStyles: string;
|
|
1392
|
+
subtitle: string;
|
|
1393
|
+
calcSubtitle: string;
|
|
1394
|
+
logo: FilePictureInfoModel;
|
|
1395
|
+
ProductSwitchItems: MoForReportModel;
|
|
1396
|
+
ProductMenuItems: MoForReportModel;
|
|
1397
|
+
UserMenuItems: MoForReportModel;
|
|
1398
|
+
ActionItems: MoForReportModel;
|
|
1399
|
+
SidebarReport: MetaobjectDataModel;
|
|
1400
|
+
ProfileImageReport: MetaobjectDataModel;
|
|
1401
|
+
};
|
|
1130
1402
|
|
|
1131
1403
|
declare class MoReportValuePipe implements PipeTransform {
|
|
1132
1404
|
transform(name: string, mo: MetaobjectDataModel, Columns?: {
|
|
@@ -1456,6 +1728,7 @@ declare function addCssVariableToRoot(variableName: string, variableValue: strin
|
|
|
1456
1728
|
declare function flattenTree(root: Record<string, any>, prop: string): Record<string, any>[];
|
|
1457
1729
|
declare function IsDarkMode(): boolean;
|
|
1458
1730
|
declare function nullOrUndefinedString(param: any): string;
|
|
1731
|
+
declare function fromEntries<K extends string, V>(entries: [K, V][]): Record<K, V>;
|
|
1459
1732
|
|
|
1460
1733
|
declare class MultipleGroupByPipe implements PipeTransform {
|
|
1461
1734
|
private bbbPipe;
|
|
@@ -1701,6 +1974,12 @@ declare class DynamicDarkColorPipe implements PipeTransform {
|
|
|
1701
1974
|
static ɵpipe: i0.ɵɵPipeDeclaration<DynamicDarkColorPipe, "dynamicDarkColor", false>;
|
|
1702
1975
|
}
|
|
1703
1976
|
|
|
1977
|
+
declare class ChunkArrayPipe implements PipeTransform {
|
|
1978
|
+
transform<T>(arr: T[] | null | undefined, size?: number): T[][];
|
|
1979
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChunkArrayPipe, never>;
|
|
1980
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ChunkArrayPipe, "chunkArray", false>;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1704
1983
|
declare class ApiService {
|
|
1705
1984
|
portalLoginUrl: string;
|
|
1706
1985
|
executeUrl: string;
|
|
@@ -1762,6 +2041,7 @@ declare class PortalService {
|
|
|
1762
2041
|
private _location;
|
|
1763
2042
|
private _localStorage;
|
|
1764
2043
|
private _document;
|
|
2044
|
+
private _applicationCtrlrService;
|
|
1765
2045
|
private _deviceSizeSource;
|
|
1766
2046
|
private _loggedInSource;
|
|
1767
2047
|
private routeInitializedSource;
|
|
@@ -1829,7 +2109,7 @@ declare class PortalService {
|
|
|
1829
2109
|
getModule(dependency: LibraryDepenecy): Observable<any>;
|
|
1830
2110
|
setValueOnObject(path: any, index: any, modules: any, object: any): void;
|
|
1831
2111
|
getComponentType(moduleName: string, componentName: string, selector: string): Type<any> | undefined;
|
|
1832
|
-
getComponent(moduleName: string, _modulePath: string,
|
|
2112
|
+
getComponent(moduleName: string, _modulePath: string, componentName: string, selector: string, parentInjector: Injector): Observable<ComponentRef<any>>;
|
|
1833
2113
|
loadJs$(path: any): Observable<string>;
|
|
1834
2114
|
ReportExecuteById(reportId: string): Observable<MoForReportModel>;
|
|
1835
2115
|
ReportExecute(reportName: string): Observable<MoForReportModel>;
|
|
@@ -1872,6 +2152,7 @@ declare class PortalService {
|
|
|
1872
2152
|
private _removePushAction;
|
|
1873
2153
|
private _checkLocalStoragePushAction;
|
|
1874
2154
|
private _initAfterLoginFormData;
|
|
2155
|
+
private _setRtl;
|
|
1875
2156
|
private _initVisibilityChange;
|
|
1876
2157
|
private _initStandalone;
|
|
1877
2158
|
private _initPushActions;
|
|
@@ -1984,13 +2265,19 @@ declare class BarsaDialogService {
|
|
|
1984
2265
|
}
|
|
1985
2266
|
|
|
1986
2267
|
declare class DynamicComponentService {
|
|
2268
|
+
requires: Record<string, any>;
|
|
1987
2269
|
private cfr;
|
|
2270
|
+
private _injector;
|
|
1988
2271
|
private _dynamicModuleWithComponents;
|
|
2272
|
+
private _compiler;
|
|
1989
2273
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
1990
2274
|
constructor();
|
|
2275
|
+
addDynamicModuleResolver(modules: {
|
|
2276
|
+
[key: string]: () => Promise<any>;
|
|
2277
|
+
}): Promise<Record<string, any>>;
|
|
1991
2278
|
addModuleWithComponents(moduleName: string, ngModuleRef: any): void;
|
|
1992
2279
|
getComponentType(componentSelector: string, componentName: string, moduleName: string): Type<any> | undefined;
|
|
1993
|
-
getComponentBySelector(selector: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
2280
|
+
getComponentBySelector(selector: string, componentName: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
1994
2281
|
getComponentByName(componentName: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
1995
2282
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentService, never>;
|
|
1996
2283
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicComponentService>;
|
|
@@ -2671,6 +2958,32 @@ declare class ShellbarHeightService {
|
|
|
2671
2958
|
static ɵprov: i0.ɵɵInjectableDeclaration<ShellbarHeightService>;
|
|
2672
2959
|
}
|
|
2673
2960
|
|
|
2961
|
+
declare class ApplicationCtrlrService {
|
|
2962
|
+
sidebarToggle: i0.WritableSignal<boolean>;
|
|
2963
|
+
private _appMenuItems$;
|
|
2964
|
+
private _systemsUi$;
|
|
2965
|
+
private _selectedSystem$;
|
|
2966
|
+
private _customApplicationUi;
|
|
2967
|
+
private _customApplicationMenuBodyUi;
|
|
2968
|
+
private _log;
|
|
2969
|
+
private _document;
|
|
2970
|
+
get appMenuItems$(): Observable<AppMenu[]>;
|
|
2971
|
+
get selectedSystem$(): Observable<CustomSystemUi | null>;
|
|
2972
|
+
initialize(callback: any): void;
|
|
2973
|
+
systemChange(appMenuItem: AppMenu): void;
|
|
2974
|
+
sidebarToggled(sidebarToggle: boolean): void;
|
|
2975
|
+
_loadSystem(id: any, resolve: any, reject: any): void;
|
|
2976
|
+
_handleEvents(): void;
|
|
2977
|
+
_appMenuBodyUi_itemsChanged(items: AppMenu[]): void;
|
|
2978
|
+
_addSystemUi(systemUi: any): void;
|
|
2979
|
+
_addToMainTabPanel(customSystemUi: any): void;
|
|
2980
|
+
_selectedSystemChanged(systemId: any, forceRelayout?: boolean): void;
|
|
2981
|
+
_setStatusBarValues(statusbarValues: any): void;
|
|
2982
|
+
_showReleaseNoteWindow(releaseNoteData: any): void;
|
|
2983
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationCtrlrService, never>;
|
|
2984
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationCtrlrService>;
|
|
2985
|
+
}
|
|
2986
|
+
|
|
2674
2987
|
interface FieldSetting {
|
|
2675
2988
|
[key: string]: any;
|
|
2676
2989
|
ControlFieldCaption: string;
|
|
@@ -4786,6 +5099,26 @@ declare class ScrollPersistDirective implements AfterViewInit, OnDestroy {
|
|
|
4786
5099
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollPersistDirective, "[scrollPersist]", never, { "key": { "alias": "scrollPersist"; "required": false; }; }, {}, never, never, false, never>;
|
|
4787
5100
|
}
|
|
4788
5101
|
|
|
5102
|
+
declare class TooltipDirective implements OnDestroy {
|
|
5103
|
+
bnrcTooltip: i0.InputSignal<string>;
|
|
5104
|
+
private hostRef;
|
|
5105
|
+
private renderer;
|
|
5106
|
+
private document;
|
|
5107
|
+
private tooltipEl;
|
|
5108
|
+
ngOnDestroy(): void;
|
|
5109
|
+
onMouseEnter(): void;
|
|
5110
|
+
onMouseLeave(): void;
|
|
5111
|
+
private removeTooltip;
|
|
5112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
5113
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[bnrcTooltip]", never, { "bnrcTooltip": { "alias": "bnrcTooltip"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
5114
|
+
}
|
|
5115
|
+
|
|
5116
|
+
declare class SimplebarDirective extends BaseDirective {
|
|
5117
|
+
ngAfterViewInit(): Promise<void>;
|
|
5118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SimplebarDirective, never>;
|
|
5119
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SimplebarDirective, "[simplebar]", never, {}, {}, never, never, false, never>;
|
|
5120
|
+
}
|
|
5121
|
+
|
|
4789
5122
|
declare class PortalDynamicPageResolver {
|
|
4790
5123
|
private portalService;
|
|
4791
5124
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
@@ -4944,7 +5277,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
|
4944
5277
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
4945
5278
|
constructor();
|
|
4946
5279
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
4947
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof
|
|
5280
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i134.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
|
|
4948
5281
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
|
|
4949
5282
|
}
|
|
4950
5283
|
|
|
@@ -5119,9 +5452,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
5119
5452
|
constructor();
|
|
5120
5453
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
5121
5454
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
5122
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof RedirectReportNavigatorCommandComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof DynamicFormComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof
|
|
5455
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof RedirectReportNavigatorCommandComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof DynamicFormComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i134.FormsModule, typeof i134.ReactiveFormsModule], [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof RedirectReportNavigatorCommandComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof DynamicFormComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective]>;
|
|
5123
5456
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5124
5457
|
}
|
|
5125
5458
|
|
|
5126
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, 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, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, 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, Ext, 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, GanttChartHelper, 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, LoginAction, LoginForm, LoginFormData, LoginFormUi, 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, Offline, 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, Ui, UiService, Ul, UlvCommandDirective, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, 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, 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 };
|
|
5127
|
-
export type { AbbrevationDeviceSize, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, FormVisibilityStatus, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, IUploadingState, IViewBase, IndexableObject, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, NavigatorItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, ViewTypes, WorkflowExecuteChoiceStatus, columnsResizedEventArgs };
|
|
5459
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, 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, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, 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, Ext, 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, GanttChartHelper, 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, LoginAction, LoginForm, LoginFormData, LoginFormUi, 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, Offline, 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, Ui, UiService, Ul, UlvCommandDirective, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, 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 };
|
|
5460
|
+
export type { AbbrevationDeviceSize, AppMenu, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavGroupsUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, FormVisibilityStatus, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, IUploadingState, IViewBase, IndexableObject, LayoutSetting, LibraryDepenecy, LoginResult, Menu, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavChildData, NavData, NavGroupNode, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, ViewTypes, WorkflowExecuteChoiceStatus, columnsResizedEventArgs };
|