barsa-novin-ray-core 2.0.89 → 2.0.91
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-routing.module.mjs +11 -1
- package/esm2022/lib/barsa-novin-ray-core.module.mjs +26 -7
- package/esm2022/lib/constants.mjs +6 -1
- package/esm2022/lib/not-internet/not-internet.component.mjs +21 -0
- package/esm2022/lib/root-portal/root-portal.component.mjs +3 -4
- package/esm2022/lib/server-connection-error/server-connection-error.component.mjs +19 -0
- package/esm2022/lib/services/portal.service.mjs +2 -2
- package/fesm2022/barsa-novin-ray-core.mjs +71 -11
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/constants.d.ts +1 -0
- package/lib/not-internet/not-internet.component.d.ts +8 -0
- package/lib/server-connection-error/server-connection-error.component.d.ts +9 -0
- package/package.json +1 -1
|
@@ -1502,6 +1502,11 @@ function calcContextMenuWidth(contextMenuItems, disableContextMenuOverflow) {
|
|
|
1502
1502
|
}
|
|
1503
1503
|
return contextMenuWidth;
|
|
1504
1504
|
}
|
|
1505
|
+
function isInLocalMode() {
|
|
1506
|
+
const offlinceActive = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsActive', false);
|
|
1507
|
+
const offlineTrue = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsOffline', false);
|
|
1508
|
+
return offlinceActive && offlineTrue;
|
|
1509
|
+
}
|
|
1505
1510
|
function getLabelWidth(item) {
|
|
1506
1511
|
const fieldXtype = item.FieldUi?.originalXtype;
|
|
1507
1512
|
if (fieldXtype === 'Ui.Button' ||
|
|
@@ -3748,7 +3753,7 @@ class PortalService {
|
|
|
3748
3753
|
resolve(BarsaApi.LoginFormData);
|
|
3749
3754
|
}, () => {
|
|
3750
3755
|
alert('error in get server startup data.');
|
|
3751
|
-
reject(
|
|
3756
|
+
reject('error in get server startup data.');
|
|
3752
3757
|
}, null);
|
|
3753
3758
|
}
|
|
3754
3759
|
ShowFormPanelControl(formpanelCtrlr, router, activatedRoute, dialogComponent, isPage, vcr, isReload = false) {
|
|
@@ -11271,9 +11276,7 @@ class RootPortalComponent extends PageBaseComponent {
|
|
|
11271
11276
|
}
|
|
11272
11277
|
ngOnInit() {
|
|
11273
11278
|
super.ngOnInit();
|
|
11274
|
-
|
|
11275
|
-
const offlineTrue = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsOffline', false);
|
|
11276
|
-
this.inLocalMode = offlinceActive && offlineTrue;
|
|
11279
|
+
this.inLocalMode = isInLocalMode();
|
|
11277
11280
|
// this.inLocalMode = true;
|
|
11278
11281
|
this._router.events.subscribe((event) => {
|
|
11279
11282
|
if (event instanceof NavigationStart && event instanceof RouterEvent) {
|
|
@@ -13450,6 +13453,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
13450
13453
|
}]
|
|
13451
13454
|
}] });
|
|
13452
13455
|
|
|
13456
|
+
class NoInternetComponent extends BaseComponent {
|
|
13457
|
+
constructor(_networkStatusService) {
|
|
13458
|
+
super();
|
|
13459
|
+
_networkStatusService.networkStatus$.subscribe((status) => {
|
|
13460
|
+
if (status) {
|
|
13461
|
+
window.location.reload();
|
|
13462
|
+
}
|
|
13463
|
+
});
|
|
13464
|
+
}
|
|
13465
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: NoInternetComponent, deps: [{ token: NetworkStatusService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13466
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: NoInternetComponent, selector: "bnrc-not-internet", usesInheritance: true, ngImport: i0, template: "<h1>\u26A0</h1>\n<h2>No connection to the internet</h2>\n<p>This Display has a connection to your network but no connection to the internet.</p>\n<p class=\"desc\">The connection to the outside world is needed for updates and keeping the time.</p>\n", styles: [":host{background:#191919 -webkit-linear-gradient(top,#000 0%,#191919 100%) no-repeat;background:#191919 linear-gradient(to bottom,#000,#191919) no-repeat;text-align:center}:host h1,:host h2{font-weight:400}:host h1{margin:0 auto;padding:.15em;font-size:10em;text-shadow:0 2px 2px #000}:host h2{margin-bottom:2em}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13467
|
+
}
|
|
13468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: NoInternetComponent, decorators: [{
|
|
13469
|
+
type: Component,
|
|
13470
|
+
args: [{ selector: 'bnrc-not-internet', changeDetection: ChangeDetectionStrategy.OnPush, template: "<h1>\u26A0</h1>\n<h2>No connection to the internet</h2>\n<p>This Display has a connection to your network but no connection to the internet.</p>\n<p class=\"desc\">The connection to the outside world is needed for updates and keeping the time.</p>\n", styles: [":host{background:#191919 -webkit-linear-gradient(top,#000 0%,#191919 100%) no-repeat;background:#191919 linear-gradient(to bottom,#000,#191919) no-repeat;text-align:center}:host h1,:host h2{font-weight:400}:host h1{margin:0 auto;padding:.15em;font-size:10em;text-shadow:0 2px 2px #000}:host h2{margin-bottom:2em}\n"] }]
|
|
13471
|
+
}], ctorParameters: () => [{ type: NetworkStatusService }] });
|
|
13472
|
+
|
|
13473
|
+
class ServerConnectionErrorComponent extends BaseComponent {
|
|
13474
|
+
constructor(_networkStatusService) {
|
|
13475
|
+
super();
|
|
13476
|
+
}
|
|
13477
|
+
onReload() {
|
|
13478
|
+
window.location.reload();
|
|
13479
|
+
}
|
|
13480
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: ServerConnectionErrorComponent, deps: [{ token: NetworkStatusService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13481
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.5", type: ServerConnectionErrorComponent, selector: "bnrc-server-connection-error", usesInheritance: true, ngImport: i0, template: "<div class=\"container\">\n <span></span>\n <div class=\"middle\">\n <h1>502</h1>\n <p>\u0627\u0631\u062A\u0628\u0627\u0637 \u0628\u0627 \u0633\u0631\u0648\u0631 \u062F\u06CC\u062A\u0627 \u0642\u0637\u0639 \u0645\u06CC \u0628\u0627\u0634\u062F.</p>\n </div>\n <div>\n <button class=\"fd-button fd-button--transparent\" (click)=\"onReload()\">Reload</button>\n </div>\n</div>\n", styles: [":host{direction:rtl}:host .container{height:100%;text-align:center;display:flex;flex-direction:column}:host span{height:100%;vertical-align:middle;display:inline-block}:host .middle{vertical-align:middle;margin:0;display:inline-block}:host h1{font-size:25em}:host p{margin:-70px 0 0;padding:0;font-size:2em}:host a{color:#ccc}@media only screen and (max-width: 767px){:host h1{font-size:13em}:host p{font-size:1.5em;margin-top:-50px}}@media only screen and (max-width: 400px){:host h1{font-size:9em}:host p{font-size:1em;margin-top:-30px}}:host button{margin-top:5rem;border:1px solid #ccc;padding:5px;max-width:120px}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13482
|
+
}
|
|
13483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImport: i0, type: ServerConnectionErrorComponent, decorators: [{
|
|
13484
|
+
type: Component,
|
|
13485
|
+
args: [{ selector: 'bnrc-server-connection-error', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"container\">\n <span></span>\n <div class=\"middle\">\n <h1>502</h1>\n <p>\u0627\u0631\u062A\u0628\u0627\u0637 \u0628\u0627 \u0633\u0631\u0648\u0631 \u062F\u06CC\u062A\u0627 \u0642\u0637\u0639 \u0645\u06CC \u0628\u0627\u0634\u062F.</p>\n </div>\n <div>\n <button class=\"fd-button fd-button--transparent\" (click)=\"onReload()\">Reload</button>\n </div>\n</div>\n", styles: [":host{direction:rtl}:host .container{height:100%;text-align:center;display:flex;flex-direction:column}:host span{height:100%;vertical-align:middle;display:inline-block}:host .middle{vertical-align:middle;margin:0;display:inline-block}:host h1{font-size:25em}:host p{margin:-70px 0 0;padding:0;font-size:2em}:host a{color:#ccc}@media only screen and (max-width: 767px){:host h1{font-size:13em}:host p{font-size:1.5em;margin-top:-50px}}@media only screen and (max-width: 400px){:host h1{font-size:9em}:host p{font-size:1em;margin-top:-30px}}:host button{margin-top:5rem;border:1px solid #ccc;padding:5px;max-width:120px}\n"] }]
|
|
13486
|
+
}], ctorParameters: () => [{ type: NetworkStatusService }] });
|
|
13487
|
+
|
|
13453
13488
|
const routesDefault = [
|
|
13454
13489
|
{
|
|
13455
13490
|
path: 'login',
|
|
@@ -13492,6 +13527,14 @@ const routesDefault = [
|
|
|
13492
13527
|
canActivate: [RedirectHomeGuard],
|
|
13493
13528
|
children: [formRoutes(true)]
|
|
13494
13529
|
},
|
|
13530
|
+
{
|
|
13531
|
+
path: 'server-connection-error',
|
|
13532
|
+
component: ServerConnectionErrorComponent
|
|
13533
|
+
},
|
|
13534
|
+
{
|
|
13535
|
+
path: 'no-internet',
|
|
13536
|
+
component: NoInternetComponent
|
|
13537
|
+
},
|
|
13495
13538
|
{
|
|
13496
13539
|
path: 'signup',
|
|
13497
13540
|
component: EmptyPageComponent,
|
|
@@ -13872,17 +13915,34 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
13872
13915
|
providers: [
|
|
13873
13916
|
{
|
|
13874
13917
|
provide: APP_INITIALIZER,
|
|
13875
|
-
useFactory: (portalService, titleService, promptUpdateService, barsaStorageService, swCommunication
|
|
13876
|
-
|
|
13877
|
-
|
|
13878
|
-
|
|
13879
|
-
|
|
13918
|
+
useFactory: (portalService, titleService, promptUpdateService, barsaStorageService, swCommunication, networkStatusService, router) => () => {
|
|
13919
|
+
const inLocalMode = isInLocalMode();
|
|
13920
|
+
return portalService
|
|
13921
|
+
.loadServerStartupData()
|
|
13922
|
+
.then(() => Promise.all([functionL1(), functionL2(portalService, titleService)]).finally(() => {
|
|
13923
|
+
promptUpdateService.checkForUpdate();
|
|
13924
|
+
barsaStorageService.init();
|
|
13925
|
+
swCommunication.init();
|
|
13926
|
+
}))
|
|
13927
|
+
.catch((e) => {
|
|
13928
|
+
if (!inLocalMode && !navigator.onLine) {
|
|
13929
|
+
console.log('no-internet');
|
|
13930
|
+
router.navigate(['no-internet']);
|
|
13931
|
+
}
|
|
13932
|
+
else {
|
|
13933
|
+
router.navigate(['server-connection-error']);
|
|
13934
|
+
}
|
|
13935
|
+
return Promise.resolve();
|
|
13936
|
+
});
|
|
13937
|
+
},
|
|
13880
13938
|
deps: [
|
|
13881
13939
|
PortalService,
|
|
13882
13940
|
Title,
|
|
13883
13941
|
PromptUpdateService,
|
|
13884
13942
|
BarsaStorageService,
|
|
13885
|
-
ServiceWorkerCommuncationService
|
|
13943
|
+
ServiceWorkerCommuncationService,
|
|
13944
|
+
NetworkStatusService,
|
|
13945
|
+
Router
|
|
13886
13946
|
],
|
|
13887
13947
|
multi: true
|
|
13888
13948
|
},
|
|
@@ -14132,5 +14192,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.5", ngImpor
|
|
|
14132
14192
|
* Generated bundle index. Do not edit.
|
|
14133
14193
|
*/
|
|
14134
14194
|
|
|
14135
|
-
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, isSafari, isTargetWindow, measureText, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber };
|
|
14195
|
+
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 };
|
|
14136
14196
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|