barsa-novin-ray-core 2.3.31 → 2.3.32
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 +124 -20
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +200 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1127,6 +1127,173 @@ 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
|
+
};
|
|
1260
|
+
type CustomSystemNavUi = CommonObservable & {
|
|
1261
|
+
title: string;
|
|
1262
|
+
FastSearchNavItemList: Array<any>;
|
|
1263
|
+
JsonExtraProp: Record<string, any>;
|
|
1264
|
+
SystemData: ISystemData;
|
|
1265
|
+
};
|
|
1266
|
+
type CustomSystemContainerUi = CommonObservable & {
|
|
1267
|
+
SystemData: ISystemData;
|
|
1268
|
+
};
|
|
1269
|
+
type CustomSystemUi = CommonObservable & {
|
|
1270
|
+
SystemNavUi: CustomSystemNavUi;
|
|
1271
|
+
SystemData: ISystemData;
|
|
1272
|
+
SystemContainerUi: CustomSystemContainerUi;
|
|
1273
|
+
Ribbon: CustomRibbon;
|
|
1274
|
+
};
|
|
1275
|
+
type CustomApplicationUi = CommonObservable & {
|
|
1276
|
+
_selectedSystemId: string;
|
|
1277
|
+
_systemsUi: Array<CustomSystemUi>;
|
|
1278
|
+
_appMenuBody: CustomApplicationMenuBodyUi;
|
|
1279
|
+
};
|
|
1280
|
+
type CustomApplicationMenuBodyUi = CommonObservable & {
|
|
1281
|
+
SystemDataDict: Record<string, ISystemData>;
|
|
1282
|
+
items: Array<AppMenu>;
|
|
1283
|
+
};
|
|
1284
|
+
type CustomRibbon = CommonObservable;
|
|
1285
|
+
type AppMenu = {
|
|
1286
|
+
id: string;
|
|
1287
|
+
title: string;
|
|
1288
|
+
subtitle?: string;
|
|
1289
|
+
callback?: (event: MouseEvent) => void;
|
|
1290
|
+
icon?: string;
|
|
1291
|
+
font?: string;
|
|
1292
|
+
selected?: boolean;
|
|
1293
|
+
disabledDragAndDrop?: boolean;
|
|
1294
|
+
stickToPosition?: boolean;
|
|
1295
|
+
SystemData: ISystemData;
|
|
1296
|
+
};
|
|
1130
1297
|
|
|
1131
1298
|
declare class MoReportValuePipe implements PipeTransform {
|
|
1132
1299
|
transform(name: string, mo: MetaobjectDataModel, Columns?: {
|
|
@@ -1456,6 +1623,7 @@ declare function addCssVariableToRoot(variableName: string, variableValue: strin
|
|
|
1456
1623
|
declare function flattenTree(root: Record<string, any>, prop: string): Record<string, any>[];
|
|
1457
1624
|
declare function IsDarkMode(): boolean;
|
|
1458
1625
|
declare function nullOrUndefinedString(param: any): string;
|
|
1626
|
+
declare function fromEntries<K extends string, V>(entries: [K, V][]): Record<K, V>;
|
|
1459
1627
|
|
|
1460
1628
|
declare class MultipleGroupByPipe implements PipeTransform {
|
|
1461
1629
|
private bbbPipe;
|
|
@@ -1762,6 +1930,7 @@ declare class PortalService {
|
|
|
1762
1930
|
private _location;
|
|
1763
1931
|
private _localStorage;
|
|
1764
1932
|
private _document;
|
|
1933
|
+
private _applicationCtrlrService;
|
|
1765
1934
|
private _deviceSizeSource;
|
|
1766
1935
|
private _loggedInSource;
|
|
1767
1936
|
private routeInitializedSource;
|
|
@@ -1829,7 +1998,7 @@ declare class PortalService {
|
|
|
1829
1998
|
getModule(dependency: LibraryDepenecy): Observable<any>;
|
|
1830
1999
|
setValueOnObject(path: any, index: any, modules: any, object: any): void;
|
|
1831
2000
|
getComponentType(moduleName: string, componentName: string, selector: string): Type<any> | undefined;
|
|
1832
|
-
getComponent(moduleName: string, _modulePath: string,
|
|
2001
|
+
getComponent(moduleName: string, _modulePath: string, componentName: string, selector: string, parentInjector: Injector): Observable<ComponentRef<any>>;
|
|
1833
2002
|
loadJs$(path: any): Observable<string>;
|
|
1834
2003
|
ReportExecuteById(reportId: string): Observable<MoForReportModel>;
|
|
1835
2004
|
ReportExecute(reportName: string): Observable<MoForReportModel>;
|
|
@@ -1984,13 +2153,19 @@ declare class BarsaDialogService {
|
|
|
1984
2153
|
}
|
|
1985
2154
|
|
|
1986
2155
|
declare class DynamicComponentService {
|
|
2156
|
+
requires: Record<string, any>;
|
|
1987
2157
|
private cfr;
|
|
2158
|
+
private _injector;
|
|
1988
2159
|
private _dynamicModuleWithComponents;
|
|
2160
|
+
private _compiler;
|
|
1989
2161
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
1990
2162
|
constructor();
|
|
2163
|
+
addDynamicModuleResolver(modules: {
|
|
2164
|
+
[key: string]: () => Promise<any>;
|
|
2165
|
+
}): Promise<Record<string, any>>;
|
|
1991
2166
|
addModuleWithComponents(moduleName: string, ngModuleRef: any): void;
|
|
1992
2167
|
getComponentType(componentSelector: string, componentName: string, moduleName: string): Type<any> | undefined;
|
|
1993
|
-
getComponentBySelector(selector: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
2168
|
+
getComponentBySelector(selector: string, componentName: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
1994
2169
|
getComponentByName(componentName: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
1995
2170
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentService, never>;
|
|
1996
2171
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicComponentService>;
|
|
@@ -2671,6 +2846,27 @@ declare class ShellbarHeightService {
|
|
|
2671
2846
|
static ɵprov: i0.ɵɵInjectableDeclaration<ShellbarHeightService>;
|
|
2672
2847
|
}
|
|
2673
2848
|
|
|
2849
|
+
declare class ApplicationCtrlrService {
|
|
2850
|
+
private _appMenuItems$;
|
|
2851
|
+
private _systemsUi$;
|
|
2852
|
+
private _selectedSystem$;
|
|
2853
|
+
private _customApplicationUi;
|
|
2854
|
+
private _customApplicationMenuBodyUi;
|
|
2855
|
+
private _log;
|
|
2856
|
+
get appMenuItems$(): Observable<AppMenu[]>;
|
|
2857
|
+
initialize(callback: any): void;
|
|
2858
|
+
_loadSystem(id: any, resolve: any, reject: any): void;
|
|
2859
|
+
_handleEvents(): void;
|
|
2860
|
+
_appMenuBodyUi_itemsChanged(items: AppMenu[]): void;
|
|
2861
|
+
_addSystemUi(systemUi: any): void;
|
|
2862
|
+
_addToMainTabPanel(customSystemUi: any): void;
|
|
2863
|
+
_selectedSystemChanged(systemId: any, forceRelayout?: boolean): void;
|
|
2864
|
+
_setStatusBarValues(statusbarValues: any): void;
|
|
2865
|
+
_showReleaseNoteWindow(releaseNoteData: any): void;
|
|
2866
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationCtrlrService, never>;
|
|
2867
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationCtrlrService>;
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2674
2870
|
interface FieldSetting {
|
|
2675
2871
|
[key: string]: any;
|
|
2676
2872
|
ControlFieldCaption: string;
|
|
@@ -5123,5 +5319,5 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
5123
5319
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5124
5320
|
}
|
|
5125
5321
|
|
|
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 };
|
|
5322
|
+
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, 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, 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 };
|
|
5323
|
+
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, 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, 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, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, ViewTypes, WorkflowExecuteChoiceStatus, columnsResizedEventArgs };
|