barsa-novin-ray-core 2.3.24 → 2.3.25
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 +379 -84
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +87 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4,9 +4,10 @@ import { Subject, Observable, BehaviorSubject, Subscription } from 'rxjs';
|
|
|
4
4
|
import { SafeHtml, SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
|
|
5
5
|
import * as i1 from '@angular/router';
|
|
6
6
|
import { NavigationEnd, NavigationStart, Route, Router, ActivatedRoute, ActivatedRouteSnapshot, RouteReuseStrategy, DetachedRouteHandle, CanActivate, UrlTree } from '@angular/router';
|
|
7
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
7
8
|
import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
|
|
8
9
|
import { IconFont, ContentDensity } from '@fundamental-ngx/core';
|
|
9
|
-
import * as
|
|
10
|
+
import * as i131 from '@angular/forms';
|
|
10
11
|
import { ValidatorFn, FormGroup } from '@angular/forms';
|
|
11
12
|
import * as i1$1 from '@angular/common';
|
|
12
13
|
import { TitleCasePipe } from '@angular/common';
|
|
@@ -214,6 +215,7 @@ declare class DateShamsiService extends DateService {
|
|
|
214
215
|
getStrMonthName(date: Date): string;
|
|
215
216
|
getDateTimeString(date: Date): string;
|
|
216
217
|
format(value: Date, format: string): string;
|
|
218
|
+
convertFormatToJalali(format: string): string;
|
|
217
219
|
getShortDateString(date: Date): string;
|
|
218
220
|
getDateString(date: Date, showDate: boolean, showTime: boolean): string;
|
|
219
221
|
parse(payload: {
|
|
@@ -1124,6 +1126,7 @@ interface UiResponsiveSettings {
|
|
|
1124
1126
|
MdColumns: number;
|
|
1125
1127
|
SmColumns: number;
|
|
1126
1128
|
}
|
|
1129
|
+
type CultureTypes = 'fa-IR' | 'ar-AE' | 'en-US';
|
|
1127
1130
|
|
|
1128
1131
|
declare class MoReportValuePipe implements PipeTransform {
|
|
1129
1132
|
transform(name: string, mo: MetaobjectDataModel, Columns?: {
|
|
@@ -1278,13 +1281,6 @@ declare class VisibleValuePipe implements PipeTransform {
|
|
|
1278
1281
|
static ɵpipe: i0.ɵɵPipeDeclaration<VisibleValuePipe, "barsaVisibleValue", false>;
|
|
1279
1282
|
}
|
|
1280
1283
|
|
|
1281
|
-
declare class DateTimeToCaptionPipe implements PipeTransform {
|
|
1282
|
-
_dateService: DateService;
|
|
1283
|
-
transform(value: Date | undefined, format: string, culture: string, showDate?: boolean | undefined, showTime?: boolean | undefined): string;
|
|
1284
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeToCaptionPipe, never>;
|
|
1285
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<DateTimeToCaptionPipe, "dateTimeToCaption", false>;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
1284
|
declare class FilterToolbarControlPipe implements PipeTransform {
|
|
1289
1285
|
transform(config: LayoutSetting): LayoutSetting[];
|
|
1290
1286
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterToolbarControlPipe, never>;
|
|
@@ -1326,7 +1322,7 @@ declare function genrateInlineMoId(): string;
|
|
|
1326
1322
|
declare function enumValueToStringSize(value: string, defaultValue: string): string;
|
|
1327
1323
|
declare function executeUlvCommandHandler(button: any, options?: any): void;
|
|
1328
1324
|
declare function getUniqueId(parts: number): string;
|
|
1329
|
-
declare function getDateService(logService: LogService, culture?:
|
|
1325
|
+
declare function getDateService(logService: LogService, culture?: CultureTypes): DateService;
|
|
1330
1326
|
declare function getAllItemsPerChildren(item: TreeNodeObj, level: number, array: MetaobjectDataModel[], parentNode: TreeNodeObj, autoOpenLevels: number): any;
|
|
1331
1327
|
declare function setOneDepthLevel(node: any): void;
|
|
1332
1328
|
declare function isFirefox(): boolean;
|
|
@@ -1696,6 +1692,15 @@ declare class SplitPipe implements PipeTransform {
|
|
|
1696
1692
|
static ɵpipe: i0.ɵɵPipeDeclaration<SplitPipe, "split", false>;
|
|
1697
1693
|
}
|
|
1698
1694
|
|
|
1695
|
+
declare class DynamicDarkColorPipe implements PipeTransform {
|
|
1696
|
+
transform(styleStr: string): string;
|
|
1697
|
+
private toDarkModeHSL;
|
|
1698
|
+
private rgbToHex;
|
|
1699
|
+
private parseColor;
|
|
1700
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicDarkColorPipe, never>;
|
|
1701
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DynamicDarkColorPipe, "dynamicDarkColor", false>;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1699
1704
|
declare class ApiService {
|
|
1700
1705
|
portalLoginUrl: string;
|
|
1701
1706
|
executeUrl: string;
|
|
@@ -2052,12 +2057,14 @@ declare class FormPanelService extends BaseComponent {
|
|
|
2052
2057
|
private _headerTitleSource;
|
|
2053
2058
|
private _maskSource;
|
|
2054
2059
|
private _headerRemoveContentPaddingSource;
|
|
2060
|
+
private _hideBreadCrumbSource;
|
|
2055
2061
|
private _headerDescriptionSource;
|
|
2056
2062
|
private _hideFooter$;
|
|
2057
2063
|
private _canSend$;
|
|
2058
2064
|
constructor();
|
|
2059
2065
|
get hideFooter$(): Observable<boolean>;
|
|
2060
2066
|
get sidebarState$(): Observable<'open' | 'close'>;
|
|
2067
|
+
get hideBreadCrumb$(): Observable<boolean>;
|
|
2061
2068
|
get hidePin$(): Observable<boolean>;
|
|
2062
2069
|
get hideClose$(): Observable<boolean>;
|
|
2063
2070
|
get hideTitle$(): Observable<boolean>;
|
|
@@ -2645,6 +2652,25 @@ declare class TabpageService {
|
|
|
2645
2652
|
static ɵprov: i0.ɵɵInjectableDeclaration<TabpageService>;
|
|
2646
2653
|
}
|
|
2647
2654
|
|
|
2655
|
+
declare class InMemoryStorageService {
|
|
2656
|
+
private _dictionary;
|
|
2657
|
+
setItem(key: string, value: any): void;
|
|
2658
|
+
getItem(key: string): any;
|
|
2659
|
+
remove(key: string): void;
|
|
2660
|
+
clear(): void;
|
|
2661
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InMemoryStorageService, never>;
|
|
2662
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InMemoryStorageService>;
|
|
2663
|
+
}
|
|
2664
|
+
|
|
2665
|
+
declare class ShellbarHeightService {
|
|
2666
|
+
shellbarHeight$: Observable<string>;
|
|
2667
|
+
private _dict;
|
|
2668
|
+
constructor();
|
|
2669
|
+
add(variableValue: string): void;
|
|
2670
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShellbarHeightService, never>;
|
|
2671
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ShellbarHeightService>;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2648
2674
|
interface FieldSetting {
|
|
2649
2675
|
[key: string]: any;
|
|
2650
2676
|
ControlFieldCaption: string;
|
|
@@ -2735,6 +2761,8 @@ declare abstract class FieldBaseComponent extends BaseComponent implements OnIni
|
|
|
2735
2761
|
declare class FormBaseComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
2736
2762
|
id: string;
|
|
2737
2763
|
fullscreen: boolean;
|
|
2764
|
+
_typeDefName: string;
|
|
2765
|
+
_viewName: string;
|
|
2738
2766
|
context: {
|
|
2739
2767
|
[key: string]: any;
|
|
2740
2768
|
config: any;
|
|
@@ -2778,9 +2806,13 @@ declare class FormBaseComponent extends BaseComponent implements OnInit, OnDestr
|
|
|
2778
2806
|
isModal: boolean;
|
|
2779
2807
|
isSubForm: boolean;
|
|
2780
2808
|
modernTabs$: Observable<LayoutSetting[]>;
|
|
2809
|
+
modernTabContainerComponent: EjrayOlgo;
|
|
2781
2810
|
isFormReport: boolean;
|
|
2782
2811
|
landscape$: Observable<boolean>;
|
|
2783
2812
|
standalone$: Observable<boolean>;
|
|
2813
|
+
hideBreadCrumb$: Observable<boolean>;
|
|
2814
|
+
breadCrumbs$: Observable<BreadCrumbInfo[]>;
|
|
2815
|
+
canSend$: Observable<boolean>;
|
|
2784
2816
|
formVisibilityStatus: FormVisibilityStatus;
|
|
2785
2817
|
protected _breadcrumbService: BreadcrumbService;
|
|
2786
2818
|
protected _portalService: PortalService;
|
|
@@ -3692,6 +3724,7 @@ declare class BaseDynamicComponent extends BaseComponent implements OnInit, OnDe
|
|
|
3692
3724
|
}>;
|
|
3693
3725
|
_component: ComponentRef<any>;
|
|
3694
3726
|
protected _vcr: ViewContainerRef;
|
|
3727
|
+
protected _cdr: ChangeDetectorRef;
|
|
3695
3728
|
protected _portalService: PortalService;
|
|
3696
3729
|
protected _injector: Injector;
|
|
3697
3730
|
ngOnInit(): Promise<void>;
|
|
@@ -4098,6 +4131,32 @@ declare class DynamicLayoutComponent extends BaseDynamicComponent {
|
|
|
4098
4131
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicLayoutComponent, "bnrc-dynamic-layout", never, { "selector": { "alias": "selector"; "required": false; }; "module": { "alias": "module"; "required": false; }; "name": { "alias": "name"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "moduleFileName": { "alias": "moduleFileName"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "config": { "alias": "config"; "required": false; }; "maxLabelWidth": { "alias": "maxLabelWidth"; "required": false; }; "hasHorizontalText": { "alias": "hasHorizontalText"; "required": false; }; "isSearchPanel": { "alias": "isSearchPanel"; "required": false; }; }, {}, never, never, false, never>;
|
|
4099
4132
|
}
|
|
4100
4133
|
|
|
4134
|
+
declare class DynamicTileGroupComponent extends BaseDynamicComponent {
|
|
4135
|
+
appTileGroup: MetaobjectDataModel;
|
|
4136
|
+
tabRef: any;
|
|
4137
|
+
stackContent: boolean;
|
|
4138
|
+
cssStyles: string;
|
|
4139
|
+
edit: boolean;
|
|
4140
|
+
rtl: boolean;
|
|
4141
|
+
isAppTileSubGroup: boolean | undefined;
|
|
4142
|
+
deviceSize: AbbrevationDeviceSize;
|
|
4143
|
+
isLast: boolean;
|
|
4144
|
+
tilesDropped: EventEmitter<{
|
|
4145
|
+
appTileGroup: MetaobjectDataModel;
|
|
4146
|
+
event: CdkDragDrop<{
|
|
4147
|
+
isTile: boolean;
|
|
4148
|
+
items: MetaobjectDataModel[];
|
|
4149
|
+
}>;
|
|
4150
|
+
}>;
|
|
4151
|
+
hideAppTileClick: EventEmitter<MetaobjectDataModel>;
|
|
4152
|
+
renameAppTileClick: EventEmitter<MetaobjectDataModel>;
|
|
4153
|
+
toggleGroup: EventEmitter<MetaobjectDataModel>;
|
|
4154
|
+
resetGroup: EventEmitter<MetaobjectDataModel>;
|
|
4155
|
+
deleteGroup: EventEmitter<MetaobjectDataModel>;
|
|
4156
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTileGroupComponent, never>;
|
|
4157
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTileGroupComponent, "bnrc-dynamic-tile-group,[dynamictilegroup]", never, { "appTileGroup": { "alias": "appTileGroup"; "required": false; }; "tabRef": { "alias": "tabRef"; "required": false; }; "stackContent": { "alias": "stackContent"; "required": false; }; "cssStyles": { "alias": "cssStyles"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "isAppTileSubGroup": { "alias": "isAppTileSubGroup"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; }, { "tilesDropped": "tilesDropped"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; }, never, never, false, never>;
|
|
4158
|
+
}
|
|
4159
|
+
|
|
4101
4160
|
declare class RootPortalComponent extends PageBaseComponent implements OnInit {
|
|
4102
4161
|
sectionRef: ElementRef;
|
|
4103
4162
|
footerRefVcr: ViewContainerRef;
|
|
@@ -4109,6 +4168,7 @@ declare class RootPortalComponent extends PageBaseComponent implements OnInit {
|
|
|
4109
4168
|
hasOverlay: boolean;
|
|
4110
4169
|
imageUrl: string;
|
|
4111
4170
|
backgroundColor: string;
|
|
4171
|
+
shellbarHeight$: Observable<string>;
|
|
4112
4172
|
ngOnInit(): void;
|
|
4113
4173
|
protected onSendOfflineDataToServer(): void;
|
|
4114
4174
|
protected onRemoveOfflineDataAndReturnToOnline(): void;
|
|
@@ -4621,10 +4681,11 @@ declare class DynamicRootVariableDirective extends BaseDirective {
|
|
|
4621
4681
|
ngOnInit(): void;
|
|
4622
4682
|
ngOnChanges(changes: SimpleChanges): void;
|
|
4623
4683
|
ngOnDestroy(): void;
|
|
4684
|
+
refresh(): void;
|
|
4624
4685
|
protected _addDynamicFormStyles(cssVariableName: string, cssVariableValue: any): void;
|
|
4625
4686
|
protected _removeDynamicFormStyles(): void;
|
|
4626
4687
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicRootVariableDirective, never>;
|
|
4627
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicRootVariableDirective, "[cssRootVariable]",
|
|
4688
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicRootVariableDirective, "[cssRootVariable]", ["cssRootVariable"], { "cssVariableName": { "alias": "cssVariableName"; "required": false; }; "cssVariableValue": { "alias": "cssVariableValue"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; }, {}, never, never, false, never>;
|
|
4628
4689
|
}
|
|
4629
4690
|
|
|
4630
4691
|
declare class HorizontalResponsiveDirective extends BaseDirective {
|
|
@@ -4713,6 +4774,18 @@ declare class ScrollToSelectedDirective extends BaseDirective implements OnChang
|
|
|
4713
4774
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollToSelectedDirective, "[scrollToSelected]", never, { "scrollToSelected": { "alias": "scrollToSelected"; "required": false; }; }, {}, never, never, false, never>;
|
|
4714
4775
|
}
|
|
4715
4776
|
|
|
4777
|
+
declare class ScrollPersistDirective implements AfterViewInit, OnDestroy {
|
|
4778
|
+
key: string;
|
|
4779
|
+
private observer;
|
|
4780
|
+
private el;
|
|
4781
|
+
private _inMemoryService;
|
|
4782
|
+
ngAfterViewInit(): void;
|
|
4783
|
+
onScroll(): void;
|
|
4784
|
+
ngOnDestroy(): void;
|
|
4785
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollPersistDirective, never>;
|
|
4786
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollPersistDirective, "[scrollPersist]", never, { "key": { "alias": "scrollPersist"; "required": false; }; }, {}, never, never, false, never>;
|
|
4787
|
+
}
|
|
4788
|
+
|
|
4716
4789
|
declare class PortalDynamicPageResolver {
|
|
4717
4790
|
private portalService;
|
|
4718
4791
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
@@ -4871,7 +4944,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
|
4871
4944
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
4872
4945
|
constructor();
|
|
4873
4946
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
4874
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof
|
|
4947
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i131.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
|
|
4875
4948
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
|
|
4876
4949
|
}
|
|
4877
4950
|
|
|
@@ -5046,9 +5119,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
5046
5119
|
constructor();
|
|
5047
5120
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
5048
5121
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
5049
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof RedirectReportNavigatorCommandComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof DynamicFormComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof
|
|
5122
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof RedirectReportNavigatorCommandComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof DynamicFormComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i131.FormsModule, typeof i131.ReactiveFormsModule], [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof RedirectReportNavigatorCommandComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof DynamicFormComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof DynamicTileGroupComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective]>;
|
|
5050
5123
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5051
5124
|
}
|
|
5052
5125
|
|
|
5053
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel,
|
|
5054
|
-
export type { AbbrevationDeviceSize, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, FormVisibilityStatus, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, IUploadingState, IViewBase, IndexableObject, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, NavigatorItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, ViewTypes, WorkflowExecuteChoiceStatus, columnsResizedEventArgs };
|
|
5126
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GanttChartHelper, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginAction, LoginForm, LoginFormData, LoginFormUi, LoginSettingsResolver, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, Offline, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, Ui, UiService, Ul, UlvCommandDirective, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
5127
|
+
export type { AbbrevationDeviceSize, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, FormVisibilityStatus, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, IUploadingState, IViewBase, IndexableObject, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, NavigatorItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, ViewTypes, WorkflowExecuteChoiceStatus, columnsResizedEventArgs };
|