barsa-novin-ray-core 2.2.11 → 2.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/barsa-novin-ray-core.module.mjs +15 -9
- package/esm2022/lib/constants.mjs +35 -1
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/directives/print-files.directive.mjs +39 -0
- package/esm2022/lib/pipes/index.mjs +2 -1
- package/esm2022/lib/pipes/isimage.pipe.mjs +20 -0
- package/fesm2022/barsa-novin-ray-core.mjs +100 -7
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/barsa-novin-ray-core.module.d.ts +40 -38
- package/lib/constants.d.ts +3 -0
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/print-files.directive.d.ts +13 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/pipes/isimage.pipe.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Pipe } from '@angular/core';
|
|
2
|
+
import { isImage } from '../constants';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class IsImagePipe {
|
|
5
|
+
transform(type
|
|
6
|
+
// fileCount: number
|
|
7
|
+
) {
|
|
8
|
+
return isImage(type);
|
|
9
|
+
}
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
11
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, name: "isImageType" }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, decorators: [{
|
|
14
|
+
type: Pipe,
|
|
15
|
+
args: [{
|
|
16
|
+
name: 'isImageType',
|
|
17
|
+
standalone: false
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNpbWFnZS5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFyc2Etbm92aW4tcmF5LWNvcmUvc3JjL2xpYi9waXBlcy9pc2ltYWdlLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFpQixJQUFJLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLGNBQWMsQ0FBQzs7QUFLdkMsTUFBTSxPQUFPLFdBQVc7SUFDcEIsU0FBUyxDQUNMLElBQVk7SUFDWixvQkFBb0I7O1FBRXBCLE9BQU8sT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3pCLENBQUM7K0dBTlEsV0FBVzs2R0FBWCxXQUFXOzs0RkFBWCxXQUFXO2tCQUp2QixJQUFJO21CQUFDO29CQUNGLElBQUksRUFBRSxhQUFhO29CQUNuQixVQUFVLEVBQUUsS0FBSztpQkFDcEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlVHJhbnNmb3JtLCBQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IGlzSW1hZ2UgfSBmcm9tICcuLi9jb25zdGFudHMnO1xyXG5AUGlwZSh7XHJcbiAgICBuYW1lOiAnaXNJbWFnZVR5cGUnLFxyXG4gICAgc3RhbmRhbG9uZTogZmFsc2VcclxufSlcclxuZXhwb3J0IGNsYXNzIElzSW1hZ2VQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7ICAgIFxyXG4gICAgdHJhbnNmb3JtKFxyXG4gICAgICAgIHR5cGU6IHN0cmluZ1xyXG4gICAgICAgIC8vIGZpbGVDb3VudDogbnVtYmVyXHJcbiAgICApOiBib29sZWFuIHtcclxuICAgICAgICByZXR1cm4gaXNJbWFnZSh0eXBlKTtcclxuICAgIH1cclxufVxyXG4iXX0=
|
|
@@ -2289,6 +2289,40 @@ function forbiddenValidator(nameRe) {
|
|
|
2289
2289
|
return !forbidden ? { forbiddenName: { value: control.value } } : null;
|
|
2290
2290
|
};
|
|
2291
2291
|
}
|
|
2292
|
+
function GetImgTags(setting) {
|
|
2293
|
+
let str = '';
|
|
2294
|
+
for (let i = 0; i < setting.sources.length; i++) {
|
|
2295
|
+
str +=
|
|
2296
|
+
"<img src='" +
|
|
2297
|
+
setting.sources[i] +
|
|
2298
|
+
"' class='" +
|
|
2299
|
+
getCenter(setting.isCenter) +
|
|
2300
|
+
"' style='" +
|
|
2301
|
+
setting.customCss +
|
|
2302
|
+
"' /> ";
|
|
2303
|
+
}
|
|
2304
|
+
return str;
|
|
2305
|
+
}
|
|
2306
|
+
function ImagetoPrint(setting) {
|
|
2307
|
+
return ('<html><head>' +
|
|
2308
|
+
'<script src="/Lib/scripts/jquery-x.min.js"></script><script src="Lib/ImagePrint/ImagePrintInternal.js"></script>' +
|
|
2309
|
+
'</head><body style="margin : 0 1 0 1">' +
|
|
2310
|
+
GetImgTags(setting) +
|
|
2311
|
+
'</body></html>');
|
|
2312
|
+
}
|
|
2313
|
+
function PrintImage(setting) {
|
|
2314
|
+
let pageLink = 'about:blank';
|
|
2315
|
+
let pwa = window.open(pageLink, '_new');
|
|
2316
|
+
pwa?.document.open();
|
|
2317
|
+
let imageToPrint = ImagetoPrint(setting);
|
|
2318
|
+
pwa?.document.write(imageToPrint);
|
|
2319
|
+
pwa?.document.close();
|
|
2320
|
+
}
|
|
2321
|
+
function getCenter(isCenter) {
|
|
2322
|
+
if (isCenter)
|
|
2323
|
+
return 'center';
|
|
2324
|
+
return '';
|
|
2325
|
+
}
|
|
2292
2326
|
|
|
2293
2327
|
class ApiService {
|
|
2294
2328
|
constructor(httpClient) {
|
|
@@ -5567,6 +5601,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
5567
5601
|
}]
|
|
5568
5602
|
}] });
|
|
5569
5603
|
|
|
5604
|
+
class IsImagePipe {
|
|
5605
|
+
transform(type
|
|
5606
|
+
// fileCount: number
|
|
5607
|
+
) {
|
|
5608
|
+
return isImage(type);
|
|
5609
|
+
}
|
|
5610
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5611
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, name: "isImageType" }); }
|
|
5612
|
+
}
|
|
5613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IsImagePipe, decorators: [{
|
|
5614
|
+
type: Pipe,
|
|
5615
|
+
args: [{
|
|
5616
|
+
name: 'isImageType',
|
|
5617
|
+
standalone: false
|
|
5618
|
+
}]
|
|
5619
|
+
}] });
|
|
5620
|
+
|
|
5570
5621
|
class UlvMainService {
|
|
5571
5622
|
constructor(_bbbPipe, _apiService) {
|
|
5572
5623
|
this._bbbPipe = _bbbPipe;
|
|
@@ -13520,6 +13571,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
13520
13571
|
}]
|
|
13521
13572
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
13522
13573
|
|
|
13574
|
+
class PrintFilesDirective {
|
|
13575
|
+
constructor() { }
|
|
13576
|
+
_handleClick() {
|
|
13577
|
+
const fullImageList = this.files?.map(function (record) {
|
|
13578
|
+
return record.mediaUrl;
|
|
13579
|
+
});
|
|
13580
|
+
const setting = {
|
|
13581
|
+
sources: fullImageList,
|
|
13582
|
+
customCss: "width:100%;margin-top:10px;",
|
|
13583
|
+
isCenter: true,
|
|
13584
|
+
header: 'لیست تصاویر',
|
|
13585
|
+
};
|
|
13586
|
+
PrintImage(setting);
|
|
13587
|
+
}
|
|
13588
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PrintFilesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
13589
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: PrintFilesDirective, selector: "[printFiles]", inputs: { files: "files", file: "file", isImageGallery: "isImageGallery", component: "component" }, host: { listeners: { "click": "_handleClick()" } }, ngImport: i0 }); }
|
|
13590
|
+
}
|
|
13591
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PrintFilesDirective, decorators: [{
|
|
13592
|
+
type: Directive,
|
|
13593
|
+
args: [{
|
|
13594
|
+
selector: '[printFiles]',
|
|
13595
|
+
standalone: false
|
|
13596
|
+
}]
|
|
13597
|
+
}], ctorParameters: () => [], propDecorators: { files: [{
|
|
13598
|
+
type: Input
|
|
13599
|
+
}], file: [{
|
|
13600
|
+
type: Input
|
|
13601
|
+
}], isImageGallery: [{
|
|
13602
|
+
type: Input
|
|
13603
|
+
}], component: [{
|
|
13604
|
+
type: Input
|
|
13605
|
+
}], _handleClick: [{
|
|
13606
|
+
type: HostListener,
|
|
13607
|
+
args: ['click']
|
|
13608
|
+
}] } });
|
|
13609
|
+
|
|
13523
13610
|
class PortalDynamicPageResolver {
|
|
13524
13611
|
constructor(portalService) {
|
|
13525
13612
|
this.portalService = portalService;
|
|
@@ -14897,7 +14984,8 @@ const directives = [
|
|
|
14897
14984
|
LoadExternalFilesDirective,
|
|
14898
14985
|
StopPropagationDirective,
|
|
14899
14986
|
PreventDefaultDirective,
|
|
14900
|
-
RenderUlvDirective
|
|
14987
|
+
RenderUlvDirective,
|
|
14988
|
+
PrintFilesDirective
|
|
14901
14989
|
];
|
|
14902
14990
|
const pipes = [
|
|
14903
14991
|
NumeralPipe,
|
|
@@ -14950,7 +15038,8 @@ const pipes = [
|
|
|
14950
15038
|
StringToNumberPipe,
|
|
14951
15039
|
ColumnValueOfParametersPipe,
|
|
14952
15040
|
HideAcceptCancelButtonsPipe,
|
|
14953
|
-
FilterInlineActionListPipe
|
|
15041
|
+
FilterInlineActionListPipe,
|
|
15042
|
+
IsImagePipe
|
|
14954
15043
|
];
|
|
14955
15044
|
const functionL1 = function () {
|
|
14956
15045
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -15140,7 +15229,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15140
15229
|
StringToNumberPipe,
|
|
15141
15230
|
ColumnValueOfParametersPipe,
|
|
15142
15231
|
HideAcceptCancelButtonsPipe,
|
|
15143
|
-
FilterInlineActionListPipe,
|
|
15232
|
+
FilterInlineActionListPipe,
|
|
15233
|
+
IsImagePipe, PlaceHolderDirective,
|
|
15144
15234
|
NumbersOnlyInputDirective,
|
|
15145
15235
|
RenderUlvViewerDirective,
|
|
15146
15236
|
RenderUlvPaginDirective,
|
|
@@ -15171,7 +15261,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15171
15261
|
LoadExternalFilesDirective,
|
|
15172
15262
|
StopPropagationDirective,
|
|
15173
15263
|
PreventDefaultDirective,
|
|
15174
|
-
RenderUlvDirective
|
|
15264
|
+
RenderUlvDirective,
|
|
15265
|
+
PrintFilesDirective], imports: [CommonModule,
|
|
15175
15266
|
BarsaNovinRayCoreRoutingModule,
|
|
15176
15267
|
BarsaSapUiFormPageModule,
|
|
15177
15268
|
ResizableModule,
|
|
@@ -15249,7 +15340,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15249
15340
|
StringToNumberPipe,
|
|
15250
15341
|
ColumnValueOfParametersPipe,
|
|
15251
15342
|
HideAcceptCancelButtonsPipe,
|
|
15252
|
-
FilterInlineActionListPipe,
|
|
15343
|
+
FilterInlineActionListPipe,
|
|
15344
|
+
IsImagePipe, PlaceHolderDirective,
|
|
15253
15345
|
NumbersOnlyInputDirective,
|
|
15254
15346
|
RenderUlvViewerDirective,
|
|
15255
15347
|
RenderUlvPaginDirective,
|
|
@@ -15280,7 +15372,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15280
15372
|
LoadExternalFilesDirective,
|
|
15281
15373
|
StopPropagationDirective,
|
|
15282
15374
|
PreventDefaultDirective,
|
|
15283
|
-
RenderUlvDirective
|
|
15375
|
+
RenderUlvDirective,
|
|
15376
|
+
PrintFilesDirective] }); }
|
|
15284
15377
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
15285
15378
|
BarsaNovinRayCoreRoutingModule,
|
|
15286
15379
|
BarsaSapUiFormPageModule,
|
|
@@ -15310,5 +15403,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
15310
15403
|
* Generated bundle index. Do not edit.
|
|
15311
15404
|
*/
|
|
15312
15405
|
|
|
15313
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, Login2Component, LoginController, LoginEnterMobileComponent, LoginVerificationComponent, LoginVerificationController, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
15406
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, Login2Component, LoginController, LoginEnterMobileComponent, LoginVerificationComponent, LoginVerificationController, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, 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, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
15314
15407
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|