barsa-novin-ray-core 2.3.36 → 2.3.38
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 +249 -84
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +147 -84
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -499,12 +499,12 @@ declare class CalendarMetaobjectDataModel extends MetaobjectDataModel {
|
|
|
499
499
|
$StartDateInfo?: DateInfo;
|
|
500
500
|
$EndDateInfo?: DateInfo;
|
|
501
501
|
}
|
|
502
|
-
declare class
|
|
502
|
+
declare abstract class MoForReportModelBase<T extends MetaobjectDataModel> {
|
|
503
503
|
$Type?: string;
|
|
504
504
|
TypeDefId: string;
|
|
505
505
|
ReportId: string;
|
|
506
506
|
Icon?: string;
|
|
507
|
-
MoDataList: Array<
|
|
507
|
+
MoDataList: Array<T>;
|
|
508
508
|
DeletedList: Array<{
|
|
509
509
|
Id: string;
|
|
510
510
|
TypeDefId: string;
|
|
@@ -526,6 +526,8 @@ declare class MoForReportModel {
|
|
|
526
526
|
IsAutoSave_ReloadParentForms: boolean;
|
|
527
527
|
IsAutoSave_ReloadRootParentList: boolean;
|
|
528
528
|
};
|
|
529
|
+
}
|
|
530
|
+
declare class MoForReportModel extends MoForReportModelBase<MetaobjectDataModel> {
|
|
529
531
|
constructor();
|
|
530
532
|
}
|
|
531
533
|
declare class ReportBaseInfo {
|
|
@@ -1146,8 +1148,14 @@ interface ISystemData {
|
|
|
1146
1148
|
ShowRibbon: boolean;
|
|
1147
1149
|
JsonExtraProp: Record<string, any>;
|
|
1148
1150
|
CommandGroups: CommandGroup[];
|
|
1151
|
+
WorkflowList: WorkflowItem[];
|
|
1149
1152
|
UseTreeNavigator: boolean;
|
|
1150
1153
|
}
|
|
1154
|
+
type WorkflowItem = {
|
|
1155
|
+
Id: string;
|
|
1156
|
+
Caption: string;
|
|
1157
|
+
Name: string;
|
|
1158
|
+
};
|
|
1151
1159
|
interface CommandGroup {
|
|
1152
1160
|
Caption: string;
|
|
1153
1161
|
Name: string;
|
|
@@ -1160,25 +1168,14 @@ interface Command {
|
|
|
1160
1168
|
Name: string;
|
|
1161
1169
|
Key: string;
|
|
1162
1170
|
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
1171
|
CommandId: string;
|
|
1175
1172
|
DynamicCommand?: MetaobjectDataModel;
|
|
1176
|
-
Size: string;
|
|
1177
1173
|
IconSize: number;
|
|
1178
1174
|
Alignment: string;
|
|
1179
1175
|
Icon: string;
|
|
1180
|
-
|
|
1176
|
+
Menu: Command[];
|
|
1181
1177
|
IsGlobal: boolean;
|
|
1178
|
+
Order?: number;
|
|
1182
1179
|
}
|
|
1183
1180
|
interface Navigator {
|
|
1184
1181
|
Root: NavigatorRoot;
|
|
@@ -1258,84 +1255,53 @@ type CommonObservable = {
|
|
|
1258
1255
|
events: Record<string, any>;
|
|
1259
1256
|
fireEvent: (...args: any[]) => void;
|
|
1260
1257
|
};
|
|
1261
|
-
type
|
|
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;
|
|
1258
|
+
type NavGroupItem = {
|
|
1294
1259
|
icon: string;
|
|
1295
|
-
fontIcon: string;
|
|
1296
|
-
fontName: any;
|
|
1297
1260
|
id: string;
|
|
1298
1261
|
isDynCommand: boolean;
|
|
1299
1262
|
leaf: boolean;
|
|
1300
1263
|
text: string;
|
|
1301
|
-
|
|
1264
|
+
data: NavGroupItemData;
|
|
1265
|
+
routeId: string;
|
|
1302
1266
|
};
|
|
1303
|
-
type
|
|
1267
|
+
type NavGroupItemData = {
|
|
1304
1268
|
Caption: string;
|
|
1305
1269
|
FolderId: string;
|
|
1306
1270
|
IconUrl: string;
|
|
1307
|
-
fontIcon: string;
|
|
1308
|
-
fontName: any;
|
|
1309
1271
|
Id: string;
|
|
1310
1272
|
IsRoot: boolean;
|
|
1311
1273
|
IsTab: boolean;
|
|
1312
1274
|
Name: string;
|
|
1313
1275
|
NotLoaded: boolean;
|
|
1314
|
-
|
|
1276
|
+
DynamicCommand: MetaobjectDataModel;
|
|
1277
|
+
ReportCountExtension: boolean;
|
|
1315
1278
|
ReportId: string;
|
|
1279
|
+
fontIcon: string;
|
|
1280
|
+
fontName: any;
|
|
1281
|
+
ShowReportInNavigator: boolean;
|
|
1316
1282
|
InsideView_Height: number;
|
|
1317
1283
|
InsideView_RelatedFieldId: string;
|
|
1318
1284
|
InsideView_RelatedFieldName: string;
|
|
1319
1285
|
InsideView_ReportName: string;
|
|
1320
1286
|
};
|
|
1321
|
-
type
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1287
|
+
type CustomNavGroupUi = CommonObservable & {
|
|
1288
|
+
cls: string;
|
|
1289
|
+
Data: NavGroupItemData;
|
|
1290
|
+
icon: string;
|
|
1325
1291
|
fontIcon: string;
|
|
1326
1292
|
fontName: any;
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1293
|
+
id: string;
|
|
1294
|
+
isDynCommand: boolean;
|
|
1295
|
+
leaf: boolean;
|
|
1296
|
+
text: string;
|
|
1297
|
+
root: {
|
|
1298
|
+
children: NavGroupItem[];
|
|
1299
|
+
};
|
|
1300
|
+
ulvUi: any;
|
|
1301
|
+
_onBeforeClick: (data: any) => void;
|
|
1336
1302
|
};
|
|
1337
1303
|
type CustomNavPageUi = CommonObservable & {
|
|
1338
|
-
Data:
|
|
1304
|
+
Data: NavGroupItemData;
|
|
1339
1305
|
JsonExtraProp: Record<string, any>;
|
|
1340
1306
|
cls: string;
|
|
1341
1307
|
controlItems: Array<CustomNavGroupUi>;
|
|
@@ -1407,6 +1373,70 @@ type InfoBarType = {
|
|
|
1407
1373
|
handler?: (x: any) => void;
|
|
1408
1374
|
icon: string;
|
|
1409
1375
|
};
|
|
1376
|
+
interface AppTileGroup extends MetaobjectDataModel {
|
|
1377
|
+
Title: string;
|
|
1378
|
+
Visible: boolean;
|
|
1379
|
+
Visible$Caption: string;
|
|
1380
|
+
Locked: boolean;
|
|
1381
|
+
Locked$Caption: string;
|
|
1382
|
+
OrderNumber: string;
|
|
1383
|
+
OrderNumber$Caption: string;
|
|
1384
|
+
Predefined: boolean;
|
|
1385
|
+
Predefined$Caption: string;
|
|
1386
|
+
TileGroupType: string;
|
|
1387
|
+
TileGroupType$Caption: string;
|
|
1388
|
+
CssStyles: string;
|
|
1389
|
+
ItemCount2XL: string;
|
|
1390
|
+
ItemCount2XL$Caption: string;
|
|
1391
|
+
ItemCountXL: string;
|
|
1392
|
+
ItemCountXL$Caption: string;
|
|
1393
|
+
ItemCountL: string;
|
|
1394
|
+
ItemCountL$Caption: string;
|
|
1395
|
+
ItemCountMD: string;
|
|
1396
|
+
ItemCountMD$Caption: string;
|
|
1397
|
+
ItemCountSM: string;
|
|
1398
|
+
ItemCountSM$Caption: string;
|
|
1399
|
+
HideHeader: boolean;
|
|
1400
|
+
HideHeader$Caption: string;
|
|
1401
|
+
BackgroundColor: string;
|
|
1402
|
+
IconFont: string;
|
|
1403
|
+
IconFontName: any;
|
|
1404
|
+
Icon: string;
|
|
1405
|
+
IconImage: FilePictureInfoModel;
|
|
1406
|
+
RoutePath: string;
|
|
1407
|
+
$TypeDefCaption: string;
|
|
1408
|
+
$HasChildren: boolean;
|
|
1409
|
+
$Children: AppTileGroup[];
|
|
1410
|
+
$TileSettingChanged: boolean;
|
|
1411
|
+
$Disabledpin: boolean;
|
|
1412
|
+
navigatorTitle: string;
|
|
1413
|
+
navigatorVisible: boolean;
|
|
1414
|
+
navigatorTiles: MetaobjectDataModel[];
|
|
1415
|
+
navigatorActionLinks: any[];
|
|
1416
|
+
$TilesLoaded: boolean;
|
|
1417
|
+
AppTiles: MoForReportModelBase<AppTile>;
|
|
1418
|
+
}
|
|
1419
|
+
interface AppTile extends MetaobjectDataModel {
|
|
1420
|
+
Visible: boolean;
|
|
1421
|
+
Visible$Caption: string;
|
|
1422
|
+
Locked: boolean;
|
|
1423
|
+
Locked$Caption: string;
|
|
1424
|
+
OrderNumber: string;
|
|
1425
|
+
OrderNumber$Caption: string;
|
|
1426
|
+
IsActionLink: boolean;
|
|
1427
|
+
IsActionLink$Caption: string;
|
|
1428
|
+
AppTileGroup: MetaobjectDataModel;
|
|
1429
|
+
A_App_Component: EjrayOlgo;
|
|
1430
|
+
A_App_DynamicCommand: MetaobjectDataModel;
|
|
1431
|
+
A_App_AppKey: string;
|
|
1432
|
+
Predefined: boolean;
|
|
1433
|
+
Predefined$Caption: string;
|
|
1434
|
+
App: MetaobjectDataModel;
|
|
1435
|
+
Component: MetaobjectDataModel;
|
|
1436
|
+
DynamicCommand: MetaobjectDataModel;
|
|
1437
|
+
TileTitle: any;
|
|
1438
|
+
Subtitle: any;
|
|
1439
|
+
}
|
|
1410
1440
|
|
|
1411
1441
|
declare class MoReportValuePipe implements PipeTransform {
|
|
1412
1442
|
transform(name: string, mo: MetaobjectDataModel, Columns?: {
|
|
@@ -2974,27 +3004,59 @@ declare class ShellbarHeightService {
|
|
|
2974
3004
|
}
|
|
2975
3005
|
|
|
2976
3006
|
declare class ApplicationCtrlrService {
|
|
2977
|
-
|
|
3007
|
+
private _selectedNavGroupItemId$;
|
|
3008
|
+
private _selectedReportId$;
|
|
3009
|
+
private _selectedNavGroupId$;
|
|
3010
|
+
private _sidebarToggle$;
|
|
3011
|
+
private _selectedAppTileGroup$;
|
|
2978
3012
|
private _appMenuItems$;
|
|
2979
3013
|
private _systemsUi$;
|
|
2980
|
-
private
|
|
3014
|
+
private _selectedSystemId$;
|
|
3015
|
+
private _selectedSystemNavUi$;
|
|
3016
|
+
private _selectedCommandId$;
|
|
3017
|
+
private _isCommandGroupsSelected$;
|
|
2981
3018
|
private _customApplicationUi;
|
|
2982
3019
|
private _customApplicationMenuBodyUi;
|
|
2983
3020
|
private _log;
|
|
2984
3021
|
private _document;
|
|
3022
|
+
private _router;
|
|
2985
3023
|
get appMenuItems$(): Observable<AppMenu[]>;
|
|
2986
|
-
get
|
|
3024
|
+
get systemCommandGroups$(): Observable<Array<CommandGroup>>;
|
|
3025
|
+
get selectedCommand$(): Observable<string>;
|
|
3026
|
+
get systemWorkflowList$(): Observable<Array<WorkflowItem>>;
|
|
3027
|
+
get selectedSystemNavUi$(): Observable<CustomSystemNavUi | null>;
|
|
3028
|
+
get isCommandGroupsSelected$(): Observable<boolean>;
|
|
3029
|
+
get selectedSystemId$(): Observable<string>;
|
|
3030
|
+
get selectedAppTileGroup$(): Observable<string>;
|
|
3031
|
+
get sidebarToggle$(): Observable<boolean>;
|
|
3032
|
+
get sidebarToggle(): boolean;
|
|
3033
|
+
get selectedNavGroupId$(): Observable<string>;
|
|
3034
|
+
get selectedNavGroupItemId$(): Observable<string>;
|
|
3035
|
+
get selectedReportId$(): Observable<string>;
|
|
3036
|
+
get selectedSystemId(): string;
|
|
3037
|
+
getSelectedNavGroupItemId(systemId: string): string;
|
|
3038
|
+
getSelectedReportId(systemId: string): string;
|
|
2987
3039
|
initialize(callback: any): void;
|
|
2988
|
-
systemChange(
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
3040
|
+
systemChange(systemId: string): void;
|
|
3041
|
+
selectAppTileGroup(id: string): void;
|
|
3042
|
+
setCommandGroupsSelected(isSelected: boolean): void;
|
|
3043
|
+
selectedSystem(systemId: string): void;
|
|
3044
|
+
selectSystemCommand(command: Command): void;
|
|
3045
|
+
selectSystemCommandId(id: string): void;
|
|
3046
|
+
selectNavGroupItem(navGroupItemId: string): void;
|
|
3047
|
+
selectNavGroup(navGroupId: string, toggle?: boolean): void;
|
|
3048
|
+
sidebarToggled(value: boolean): void;
|
|
3049
|
+
loadSystem(id: any, resolve: any, reject: any): void;
|
|
3050
|
+
protected flattenLeafCommands(commands: Command[]): Command[];
|
|
3051
|
+
protected _mergeToSystemGroup(commandGroups: CommandGroup[]): CommandGroup[];
|
|
3052
|
+
protected _handleEvents(): void;
|
|
3053
|
+
protected _appMenuBodyUi_itemsChanged(items: AppMenu[]): void;
|
|
3054
|
+
protected _addSystemUi(_systemUi: any): void;
|
|
3055
|
+
protected _addToMainTabPanel(_customSystemUi: any): void;
|
|
3056
|
+
protected _selectedSystemChanged(systemId: any, _forceRelayout?: boolean): void;
|
|
3057
|
+
protected _selectSystem(system: CustomSystemUi | undefined): void;
|
|
3058
|
+
protected _setStatusBarValues(_statusbarValues: any): void;
|
|
3059
|
+
protected _showReleaseNoteWindow(_releaseNoteData: any): void;
|
|
2998
3060
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationCtrlrService, never>;
|
|
2999
3061
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationCtrlrService>;
|
|
3000
3062
|
}
|
|
@@ -4485,6 +4547,7 @@ declare class DynamicTileGroupComponent extends BaseDynamicComponent {
|
|
|
4485
4547
|
toggleGroup: EventEmitter<MetaobjectDataModel>;
|
|
4486
4548
|
resetGroup: EventEmitter<MetaobjectDataModel>;
|
|
4487
4549
|
deleteGroup: EventEmitter<MetaobjectDataModel>;
|
|
4550
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
4488
4551
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTileGroupComponent, never>;
|
|
4489
4552
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTileGroupComponent, "bnrc-dynamic-tile-group,[dynamictilegroup]", never, { "appTileGroup": { "alias": "appTileGroup"; "required": false; }; "tabRef": { "alias": "tabRef"; "required": false; }; "stackContent": { "alias": "stackContent"; "required": false; }; "cssStyles": { "alias": "cssStyles"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "isAppTileSubGroup": { "alias": "isAppTileSubGroup"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; }, { "tilesDropped": "tilesDropped"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; }, never, never, false, never>;
|
|
4490
4553
|
}
|
|
@@ -5488,5 +5551,5 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
5488
5551
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5489
5552
|
}
|
|
5490
5553
|
|
|
5491
|
-
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, LeafletLongPressDirective, 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 };
|
|
5492
|
-
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,
|
|
5554
|
+
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, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginAction, LoginForm, LoginFormData, LoginFormUi, LoginSettingsResolver, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, 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 };
|
|
5555
|
+
export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, 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, 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, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavGroupItem, NavGroupItemData, 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, WorkflowItem, columnsResizedEventArgs };
|