barsa-novin-ray-core 2.2.89 → 2.2.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/fesm2022/barsa-novin-ray-core.mjs +73 -16
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/models.d.ts +8 -0
- package/lib/barsa-novin-ray-core.module.d.ts +7 -6
- package/lib/constants.d.ts +1 -0
- package/lib/directives/dynamic-root-variable.directive.d.ts +2 -1
- package/lib/directives/horizontal-responsive.directive.d.ts +14 -0
- package/lib/directives/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1943,6 +1943,21 @@ function FindLayoutSettingFromLayout94(layout94, layoutTitle) {
|
|
|
1943
1943
|
}
|
|
1944
1944
|
return tempLayout94;
|
|
1945
1945
|
}
|
|
1946
|
+
function GetAllHorizontalFromLayout94(layout94) {
|
|
1947
|
+
const result = [];
|
|
1948
|
+
const tempFn = function (layout94, result) {
|
|
1949
|
+
if (layout94.Type?.indexOf('Horizontal') > -1) {
|
|
1950
|
+
result.push(layout94);
|
|
1951
|
+
}
|
|
1952
|
+
if (layout94.items?.length) {
|
|
1953
|
+
for (let i = 0; i < layout94.items.length; i++) {
|
|
1954
|
+
tempFn(layout94.items[i], result);
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
};
|
|
1958
|
+
tempFn(layout94, result);
|
|
1959
|
+
return result;
|
|
1960
|
+
}
|
|
1946
1961
|
function getGridSettings(context) {
|
|
1947
1962
|
const gridSetting = BarsaApi.Common.Util.TryGetValue(context, 'Setting.View.GridSetting', null);
|
|
1948
1963
|
return {
|
|
@@ -10597,10 +10612,10 @@ class EmptyPageComponent extends PageWithFormHandlerBaseComponent {
|
|
|
10597
10612
|
}
|
|
10598
10613
|
super.ngOnInit();
|
|
10599
10614
|
if (!BarsaApi.LoginFormData.IsServiceDesk && !isModal) {
|
|
10600
|
-
this._position = '
|
|
10615
|
+
this._position = 'initial';
|
|
10601
10616
|
}
|
|
10602
10617
|
if (this._activatedRoute.snapshot.data?.pageData?.Component?.Settings?.IsRelativePage && !isModal) {
|
|
10603
|
-
this._position = '
|
|
10618
|
+
this._position = 'initial';
|
|
10604
10619
|
}
|
|
10605
10620
|
}
|
|
10606
10621
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: EmptyPageComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -11919,16 +11934,11 @@ class DynamicLayoutComponent extends BaseDynamicComponent {
|
|
|
11919
11934
|
super.ngOnInit();
|
|
11920
11935
|
}
|
|
11921
11936
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: DynamicLayoutComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
11922
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: DynamicLayoutComponent, isStandalone: false, selector: "bnrc-dynamic-layout", inputs: { selector: "selector", module: "module", name: "name", parameters: "parameters", moduleFileName: "moduleFileName", flex: "flex", config: "config", maxLabelWidth: "maxLabelWidth", hasHorizontalText: "hasHorizontalText", isSearchPanel: "isSearchPanel" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
11937
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: DynamicLayoutComponent, isStandalone: false, selector: "bnrc-dynamic-layout", inputs: { selector: "selector", module: "module", name: "name", parameters: "parameters", moduleFileName: "moduleFileName", flex: "flex", config: "config", maxLabelWidth: "maxLabelWidth", hasHorizontalText: "hasHorizontalText", isSearchPanel: "isSearchPanel" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, styles: [":host{display:none}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
11923
11938
|
}
|
|
11924
11939
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: DynamicLayoutComponent, decorators: [{
|
|
11925
11940
|
type: Component,
|
|
11926
|
-
args: [{
|
|
11927
|
-
selector: 'bnrc-dynamic-layout',
|
|
11928
|
-
template: ``,
|
|
11929
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
11930
|
-
standalone: false
|
|
11931
|
-
}]
|
|
11941
|
+
args: [{ selector: 'bnrc-dynamic-layout', template: ``, changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, styles: [":host{display:none}\n"] }]
|
|
11932
11942
|
}], propDecorators: { selector: [{
|
|
11933
11943
|
type: Input
|
|
11934
11944
|
}], module: [{
|
|
@@ -14011,7 +14021,7 @@ class DynamicRootVariableDirective extends BaseDirective {
|
|
|
14011
14021
|
this._removeDynamicFormStyles();
|
|
14012
14022
|
}
|
|
14013
14023
|
_addDynamicFormStyles(cssVariableName, cssVariableValue) {
|
|
14014
|
-
if (!cssVariableName) {
|
|
14024
|
+
if (!cssVariableName || this.disable) {
|
|
14015
14025
|
return;
|
|
14016
14026
|
}
|
|
14017
14027
|
const head = document.head || document.getElementsByTagName('head')[0];
|
|
@@ -14036,7 +14046,7 @@ class DynamicRootVariableDirective extends BaseDirective {
|
|
|
14036
14046
|
head.removeChild(this._style);
|
|
14037
14047
|
}
|
|
14038
14048
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: DynamicRootVariableDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14039
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: DynamicRootVariableDirective, isStandalone: false, selector: "[cssRootVariable]", inputs: { cssVariableName: "cssVariableName", cssVariableValue: "cssVariableValue" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
14049
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: DynamicRootVariableDirective, isStandalone: false, selector: "[cssRootVariable]", inputs: { cssVariableName: "cssVariableName", cssVariableValue: "cssVariableValue", disable: "disable" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
14040
14050
|
}
|
|
14041
14051
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: DynamicRootVariableDirective, decorators: [{
|
|
14042
14052
|
type: Directive,
|
|
@@ -14048,6 +14058,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
|
|
|
14048
14058
|
type: Input
|
|
14049
14059
|
}], cssVariableValue: [{
|
|
14050
14060
|
type: Input
|
|
14061
|
+
}], disable: [{
|
|
14062
|
+
type: Input
|
|
14063
|
+
}] } });
|
|
14064
|
+
|
|
14065
|
+
class HorizontalResponsiveDirective extends BaseDirective {
|
|
14066
|
+
ngOnInit() {
|
|
14067
|
+
super.ngOnInit();
|
|
14068
|
+
this._addDynamicFormStyles(this.hrResponsive);
|
|
14069
|
+
}
|
|
14070
|
+
ngOnChanges(changes) {
|
|
14071
|
+
super.ngOnChanges(changes);
|
|
14072
|
+
const { hrResponsive } = changes;
|
|
14073
|
+
if (hrResponsive && !hrResponsive.firstChange) {
|
|
14074
|
+
this._addDynamicFormStyles(hrResponsive.currentValue);
|
|
14075
|
+
}
|
|
14076
|
+
}
|
|
14077
|
+
_addDynamicFormStyles(hResponsive) {
|
|
14078
|
+
if (!hResponsive || !hResponsive?.IsActive) {
|
|
14079
|
+
return;
|
|
14080
|
+
}
|
|
14081
|
+
const { XxlColumns, XlColumns, LColumns, MdColumns, SmColumns } = hResponsive;
|
|
14082
|
+
const root = this._el.nativeElement;
|
|
14083
|
+
root.style.setProperty('--horizontal-display', 'grid');
|
|
14084
|
+
root.style.setProperty('--horizontal-grid-templateXxl', `repeat(${XxlColumns},1fr)`);
|
|
14085
|
+
root.style.setProperty('--horizontal-grid-templateXl', `repeat(${XlColumns},1fr)`);
|
|
14086
|
+
root.style.setProperty('--horizontal-grid-templateL', `repeat(${LColumns},1fr)`);
|
|
14087
|
+
root.style.setProperty('--horizontal-grid-templateMd', `repeat(${MdColumns},1fr)`);
|
|
14088
|
+
root.style.setProperty('--horizontal-grid-templateSm', `repeat(${SmColumns},1fr)`);
|
|
14089
|
+
}
|
|
14090
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HorizontalResponsiveDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14091
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: HorizontalResponsiveDirective, isStandalone: false, selector: "[hrResponsive]", inputs: { disable: "disable", config: "config", hrResponsive: "hrResponsive" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
14092
|
+
}
|
|
14093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HorizontalResponsiveDirective, decorators: [{
|
|
14094
|
+
type: Directive,
|
|
14095
|
+
args: [{
|
|
14096
|
+
selector: '[hrResponsive]',
|
|
14097
|
+
standalone: false
|
|
14098
|
+
}]
|
|
14099
|
+
}], propDecorators: { disable: [{
|
|
14100
|
+
type: Input
|
|
14101
|
+
}], config: [{
|
|
14102
|
+
type: Input
|
|
14103
|
+
}], hrResponsive: [{
|
|
14104
|
+
type: Input
|
|
14051
14105
|
}] } });
|
|
14052
14106
|
|
|
14053
14107
|
class PortalDynamicPageResolver {
|
|
@@ -15028,7 +15082,7 @@ const mainRoutes = [
|
|
|
15028
15082
|
},
|
|
15029
15083
|
{
|
|
15030
15084
|
path: 'appfinder',
|
|
15031
|
-
component:
|
|
15085
|
+
component: EmptyPageComponent,
|
|
15032
15086
|
resolve: { pageData: PortalPageResolver },
|
|
15033
15087
|
data: {
|
|
15034
15088
|
pageData: {
|
|
@@ -15188,7 +15242,8 @@ const directives = [
|
|
|
15188
15242
|
SaveImageDirective,
|
|
15189
15243
|
WebOtpDirective,
|
|
15190
15244
|
SplideSliderDirective,
|
|
15191
|
-
DynamicRootVariableDirective
|
|
15245
|
+
DynamicRootVariableDirective,
|
|
15246
|
+
HorizontalResponsiveDirective
|
|
15192
15247
|
];
|
|
15193
15248
|
const pipes = [
|
|
15194
15249
|
NumeralPipe,
|
|
@@ -15460,7 +15515,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15460
15515
|
SaveImageDirective,
|
|
15461
15516
|
WebOtpDirective,
|
|
15462
15517
|
SplideSliderDirective,
|
|
15463
|
-
DynamicRootVariableDirective
|
|
15518
|
+
DynamicRootVariableDirective,
|
|
15519
|
+
HorizontalResponsiveDirective], imports: [CommonModule,
|
|
15464
15520
|
BarsaNovinRayCoreRoutingModule,
|
|
15465
15521
|
BarsaSapUiFormPageModule,
|
|
15466
15522
|
ResizableModule,
|
|
@@ -15575,7 +15631,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15575
15631
|
SaveImageDirective,
|
|
15576
15632
|
WebOtpDirective,
|
|
15577
15633
|
SplideSliderDirective,
|
|
15578
|
-
DynamicRootVariableDirective
|
|
15634
|
+
DynamicRootVariableDirective,
|
|
15635
|
+
HorizontalResponsiveDirective] }); }
|
|
15579
15636
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
15580
15637
|
BarsaNovinRayCoreRoutingModule,
|
|
15581
15638
|
BarsaSapUiFormPageModule,
|
|
@@ -15605,5 +15662,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
|
|
|
15605
15662
|
* Generated bundle index. Do not edit.
|
|
15606
15663
|
*/
|
|
15607
15664
|
|
|
15608
|
-
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, CardMediaSizePipe, 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, DynamicRootVariableDirective, 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, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, 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, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, 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, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
15665
|
+
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, CardMediaSizePipe, 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, DynamicRootVariableDirective, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, 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, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, 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, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
15609
15666
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|