barsa-novin-ray-core 2.0.95 → 2.0.97
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/abstract-classes/models.mjs +1 -1
- package/esm2022/lib/barsa-novin-ray-core.module.mjs +8 -5
- package/esm2022/lib/constants.mjs +15 -5
- package/esm2022/lib/pipes/find-preview-column.pipe.mjs +19 -0
- package/esm2022/lib/pipes/index.mjs +2 -1
- package/esm2022/lib/services/portal.service.mjs +14 -3
- package/esm2022/lib/services/routing.service.mjs +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +51 -10
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/models.d.ts +12 -0
- package/lib/barsa-novin-ray-core.module.d.ts +33 -32
- package/lib/constants.d.ts +2 -1
- package/lib/pipes/find-preview-column.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/services/portal.service.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1399,6 +1399,7 @@ var TableHeaderWidthMode;
|
|
|
1399
1399
|
TableHeaderWidthMode[TableHeaderWidthMode["FitToRowContent"] = 1] = "FitToRowContent";
|
|
1400
1400
|
TableHeaderWidthMode[TableHeaderWidthMode["FitToContainer"] = 2] = "FitToContainer";
|
|
1401
1401
|
TableHeaderWidthMode[TableHeaderWidthMode["FreeColumnSize"] = 3] = "FreeColumnSize";
|
|
1402
|
+
TableHeaderWidthMode[TableHeaderWidthMode["ColumnWidth"] = 4] = "ColumnWidth";
|
|
1402
1403
|
})(TableHeaderWidthMode || (TableHeaderWidthMode = {}));
|
|
1403
1404
|
function setTableThWidth(tableHeaderMode, columns, thList, renderer2) {
|
|
1404
1405
|
let propName = '';
|
|
@@ -1412,8 +1413,11 @@ function setTableThWidth(tableHeaderMode, columns, thList, renderer2) {
|
|
|
1412
1413
|
case TableHeaderWidthMode.FreeColumnSize:
|
|
1413
1414
|
propName = '$Width';
|
|
1414
1415
|
break;
|
|
1416
|
+
case TableHeaderWidthMode.ColumnWidth:
|
|
1417
|
+
propName = '$ColumnWidth';
|
|
1418
|
+
break;
|
|
1415
1419
|
}
|
|
1416
|
-
thList.forEach((c, i) => renderer2.setStyle(c, 'width', columns[i].$IsImageOricon ? '42px' : columns[i][propName]));
|
|
1420
|
+
thList.forEach((c, i) => renderer2.setStyle(c, 'width', columns[i].$IsImageOricon && i < thList.length - 1 ? '42px' : columns[i][propName]));
|
|
1417
1421
|
}
|
|
1418
1422
|
function calculateColumnContent(columns, moDataList) {
|
|
1419
1423
|
columns.forEach((column) => {
|
|
@@ -1430,8 +1434,12 @@ function calculateColumnWidth(container, columns, moDataList, disableContextMenu
|
|
|
1430
1434
|
return { columns: [...columns], contextMenuWidth };
|
|
1431
1435
|
}
|
|
1432
1436
|
function setColumnCaptionWidth(column) {
|
|
1437
|
+
if (column.$ColumnWidthNum) {
|
|
1438
|
+
return column.$ColumnWidthNum;
|
|
1439
|
+
}
|
|
1433
1440
|
const colCaptionWidth = measureText(column.Alias) + 16 + 10;
|
|
1434
|
-
column.$
|
|
1441
|
+
column.$ColumnWidthNum = Math.ceil(colCaptionWidth);
|
|
1442
|
+
column.$ColumnWidth = `${column.$ColumnWidthNum}px`;
|
|
1435
1443
|
return colCaptionWidth;
|
|
1436
1444
|
}
|
|
1437
1445
|
function setColumnWidthByMaxMoContentWidth(moDataList, column) {
|
|
@@ -1453,7 +1461,8 @@ function calculateFreeColumnSize(columns) {
|
|
|
1453
1461
|
let allColWidth = 0;
|
|
1454
1462
|
const visibleColumns = columns.filter((c) => !c.Hidden);
|
|
1455
1463
|
visibleColumns.forEach((col, index) => {
|
|
1456
|
-
const
|
|
1464
|
+
const x = setColumnCaptionWidth(col);
|
|
1465
|
+
const w = col.Width && col.Width > 0 ? col.Width : x;
|
|
1457
1466
|
allColWidth += w;
|
|
1458
1467
|
col.$Width = index === visibleColumns.length - 1 ? '100%' : `${w}px`;
|
|
1459
1468
|
});
|
|
@@ -1466,7 +1475,8 @@ function calculateColumnWidthFitToContainer(container, canView, disableContextMe
|
|
|
1466
1475
|
columns
|
|
1467
1476
|
.filter((c) => !c.Hidden)
|
|
1468
1477
|
.forEach((col, index) => {
|
|
1469
|
-
const
|
|
1478
|
+
const x = setColumnCaptionWidth(col);
|
|
1479
|
+
const w = col.Width && col.Width > 0 ? col.Width : x;
|
|
1470
1480
|
allColWidth += w;
|
|
1471
1481
|
const percent = (w / containerWidth) * 100;
|
|
1472
1482
|
col.$FitContainerWidth = isMobile ? '100%' : `${percent}%`;
|
|
@@ -3379,11 +3389,19 @@ class PortalService {
|
|
|
3379
3389
|
}, 5000);
|
|
3380
3390
|
}));
|
|
3381
3391
|
}
|
|
3392
|
+
ReportExecuteById(reportId) {
|
|
3393
|
+
const ulvParams = this._getUlvParamsBy('', reportId);
|
|
3394
|
+
return from(this._reportExecutePromise(ulvParams));
|
|
3395
|
+
}
|
|
3382
3396
|
ReportExecute(reportName) {
|
|
3383
3397
|
return from(this.ReportExecutePromise(reportName));
|
|
3384
3398
|
}
|
|
3385
3399
|
ReportExecutePromise(reportName) {
|
|
3386
|
-
const ulvParams =
|
|
3400
|
+
const ulvParams = this._getUlvParamsBy(reportName);
|
|
3401
|
+
return this._reportExecutePromise(ulvParams);
|
|
3402
|
+
}
|
|
3403
|
+
_getUlvParamsBy(reportName, reportId) {
|
|
3404
|
+
return {
|
|
3387
3405
|
Flags: {
|
|
3388
3406
|
Data: 'True',
|
|
3389
3407
|
Extra: 'False',
|
|
@@ -3392,8 +3410,11 @@ class PortalService {
|
|
|
3392
3410
|
// General:"False", // ulvmainctrl does not craete ui control raise error
|
|
3393
3411
|
},
|
|
3394
3412
|
ReportName: reportName,
|
|
3413
|
+
ReportId: reportId,
|
|
3395
3414
|
UsageEnum: 'SystemContainer'
|
|
3396
3415
|
};
|
|
3416
|
+
}
|
|
3417
|
+
_reportExecutePromise(ulvParams) {
|
|
3397
3418
|
return new Promise((resolve, reject) => {
|
|
3398
3419
|
BarsaApi.Bw.ExecuteReport({ ulvParams }, (result) => {
|
|
3399
3420
|
resolve(result.Data);
|
|
@@ -3657,7 +3678,7 @@ class PortalService {
|
|
|
3657
3678
|
}
|
|
3658
3679
|
get loginRoute$() {
|
|
3659
3680
|
return this.portalData$.pipe(map((portalData) => {
|
|
3660
|
-
const loginPage = portalData?.ChildPageList.MoDataList.find((c) => c.IsLoginRoute);
|
|
3681
|
+
const loginPage = portalData?.ChildPageList.MoDataList.find((c) => c.IsLoginRoute === 'True');
|
|
3661
3682
|
return loginPage?.Route || 'login';
|
|
3662
3683
|
}));
|
|
3663
3684
|
}
|
|
@@ -5185,6 +5206,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
5185
5206
|
}]
|
|
5186
5207
|
}] });
|
|
5187
5208
|
|
|
5209
|
+
class FindPreviewColumnPipe {
|
|
5210
|
+
transform(columns) {
|
|
5211
|
+
if (!columns?.length) {
|
|
5212
|
+
return;
|
|
5213
|
+
}
|
|
5214
|
+
return columns.find((column) => column.IsPreview);
|
|
5215
|
+
}
|
|
5216
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: FindPreviewColumnPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5217
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "17.3.5", ngImport: i0, type: FindPreviewColumnPipe, name: "findPreviewColumn" }); }
|
|
5218
|
+
}
|
|
5219
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: FindPreviewColumnPipe, decorators: [{
|
|
5220
|
+
type: Pipe,
|
|
5221
|
+
args: [{
|
|
5222
|
+
name: 'findPreviewColumn'
|
|
5223
|
+
}]
|
|
5224
|
+
}] });
|
|
5225
|
+
|
|
5188
5226
|
class UlvMainService {
|
|
5189
5227
|
constructor(_bbbPipe, _apiService) {
|
|
5190
5228
|
this._bbbPipe = _bbbPipe;
|
|
@@ -13888,7 +13926,8 @@ const pipes = [
|
|
|
13888
13926
|
RowNumberPipe,
|
|
13889
13927
|
ComboRowImagePipe,
|
|
13890
13928
|
IsExpandedNodePipe,
|
|
13891
|
-
ThImageOrIconePipe
|
|
13929
|
+
ThImageOrIconePipe,
|
|
13930
|
+
FindPreviewColumnPipe
|
|
13892
13931
|
];
|
|
13893
13932
|
const functionL1 = function () {
|
|
13894
13933
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -14066,7 +14105,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
14066
14105
|
RowNumberPipe,
|
|
14067
14106
|
ComboRowImagePipe,
|
|
14068
14107
|
IsExpandedNodePipe,
|
|
14069
|
-
ThImageOrIconePipe,
|
|
14108
|
+
ThImageOrIconePipe,
|
|
14109
|
+
FindPreviewColumnPipe, PlaceHolderDirective,
|
|
14070
14110
|
NumbersOnlyInputDirective,
|
|
14071
14111
|
RenderUlvViewerDirective,
|
|
14072
14112
|
RenderUlvPaginDirective,
|
|
@@ -14156,7 +14196,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
14156
14196
|
RowNumberPipe,
|
|
14157
14197
|
ComboRowImagePipe,
|
|
14158
14198
|
IsExpandedNodePipe,
|
|
14159
|
-
ThImageOrIconePipe,
|
|
14199
|
+
ThImageOrIconePipe,
|
|
14200
|
+
FindPreviewColumnPipe, PlaceHolderDirective,
|
|
14160
14201
|
NumbersOnlyInputDirective,
|
|
14161
14202
|
RenderUlvViewerDirective,
|
|
14162
14203
|
RenderUlvPaginDirective,
|
|
@@ -14208,5 +14249,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
14208
14249
|
* Generated bundle index. Do not edit.
|
|
14209
14250
|
*/
|
|
14210
14251
|
|
|
14211
|
-
export { APP_VERSION, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, 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, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, 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, RenderUlvPaginDirective, RenderUlvViewerDirective, 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, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, 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, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
14252
|
+
export { APP_VERSION, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, 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, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, 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, HeaderFacetValuePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, ItemsRendererDirective, LayoutItemBaseComponent, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LocalStorageService, LogService, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, 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, RenderUlvPaginDirective, RenderUlvViewerDirective, 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, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, VisibleValuePipe, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, 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, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
14212
14253
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|