barsa-novin-ray-core 2.3.97 → 2.3.99
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 +329 -116
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +53 -18
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { NavigationEnd, NavigationStart, Route, Router, ActivatedRoute, ParamMap
|
|
|
7
7
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
8
8
|
import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
|
|
9
9
|
import { IconFont, ContentDensity } from '@fundamental-ngx/core';
|
|
10
|
-
import * as
|
|
10
|
+
import * as i139 from '@angular/forms';
|
|
11
11
|
import { ValidatorFn, FormGroup } from '@angular/forms';
|
|
12
12
|
import * as i1$1 from '@angular/common';
|
|
13
13
|
import { TitleCasePipe } from '@angular/common';
|
|
@@ -1771,6 +1771,8 @@ declare function flattenTree(root: Record<string, any>, prop: string): Record<st
|
|
|
1771
1771
|
declare function IsDarkMode(): boolean;
|
|
1772
1772
|
declare function nullOrUndefinedString(param: any): string;
|
|
1773
1773
|
declare function fromEntries<K extends string, V>(entries: [K, V][]): Record<K, V>;
|
|
1774
|
+
declare function AddDynamicFormStyles(id: string, cssStyles: string | undefined): HTMLStyleElement | null;
|
|
1775
|
+
declare function RemoveDynamicFormStyles(style: HTMLStyleElement | null): void;
|
|
1774
1776
|
|
|
1775
1777
|
declare class MultipleGroupByPipe implements PipeTransform {
|
|
1776
1778
|
private bbbPipe;
|
|
@@ -2284,6 +2286,7 @@ declare class ContainerService implements OnDestroy {
|
|
|
2284
2286
|
|
|
2285
2287
|
declare abstract class ContainerComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
2286
2288
|
containerRef: ViewContainerRef;
|
|
2289
|
+
containerBottomRef: ViewContainerRef;
|
|
2287
2290
|
oldContainerContainer: ContainerComponent;
|
|
2288
2291
|
oldNavigation: any;
|
|
2289
2292
|
parentContainer: any;
|
|
@@ -2301,7 +2304,7 @@ declare abstract class ContainerComponent extends BaseComponent implements OnIni
|
|
|
2301
2304
|
protected _renderer2: Renderer2;
|
|
2302
2305
|
protected _dialogService: string | null;
|
|
2303
2306
|
protected _containerServiceParent: ContainerService | null;
|
|
2304
|
-
protected _containerService: ContainerService;
|
|
2307
|
+
protected _containerService: ContainerService | null;
|
|
2305
2308
|
protected _formDialogComponent: Type<any> | null;
|
|
2306
2309
|
private _viewRef;
|
|
2307
2310
|
constructor();
|
|
@@ -2908,7 +2911,6 @@ interface UserNotificationSetting extends MetaobjectDataModel {
|
|
|
2908
2911
|
|
|
2909
2912
|
declare class ServiceWorkerNotificationService {
|
|
2910
2913
|
hasRegistration: boolean;
|
|
2911
|
-
private _logService;
|
|
2912
2914
|
private _swPush;
|
|
2913
2915
|
private _portalService;
|
|
2914
2916
|
private _notificationPermissionAllowed;
|
|
@@ -2916,9 +2918,12 @@ declare class ServiceWorkerNotificationService {
|
|
|
2916
2918
|
get isEnabled(): boolean;
|
|
2917
2919
|
closeNotifications(tags: string[]): Promise<void>;
|
|
2918
2920
|
showNotification(payload: ExNotificationPayload): Promise<void>;
|
|
2921
|
+
private init;
|
|
2919
2922
|
private handlePermission;
|
|
2920
2923
|
private permissionQuery;
|
|
2921
2924
|
private permissionError;
|
|
2925
|
+
private requestPermission;
|
|
2926
|
+
private registerServiceWorker;
|
|
2922
2927
|
private getSw;
|
|
2923
2928
|
private _isSupported;
|
|
2924
2929
|
private _isActionsSupported;
|
|
@@ -2946,15 +2951,20 @@ declare class ColumnService {
|
|
|
2946
2951
|
static ɵprov: i0.ɵɵInjectableDeclaration<ColumnService>;
|
|
2947
2952
|
}
|
|
2948
2953
|
|
|
2954
|
+
interface ToastService {
|
|
2955
|
+
open(msg: any, option?: any): any;
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2949
2958
|
declare class ServiceWorkerCommuncationService {
|
|
2950
2959
|
_serviceWorker: ServiceWorker;
|
|
2951
2960
|
_hidden: boolean;
|
|
2952
2961
|
operationName: string;
|
|
2962
|
+
protected _toastService: ToastService | null;
|
|
2953
2963
|
private _localStorage;
|
|
2954
|
-
private _logService;
|
|
2955
2964
|
private _portalService;
|
|
2956
2965
|
private _swPush;
|
|
2957
2966
|
private _httpClient;
|
|
2967
|
+
private _pushCheckService;
|
|
2958
2968
|
private _subscription;
|
|
2959
2969
|
get token2(): string;
|
|
2960
2970
|
get httpOptions(): any;
|
|
@@ -2966,6 +2976,7 @@ declare class ServiceWorkerCommuncationService {
|
|
|
2966
2976
|
protected _visibilitychange(documentIsHidden: boolean): void;
|
|
2967
2977
|
protected _postServiceWorker(message: any): void;
|
|
2968
2978
|
private _testSend;
|
|
2979
|
+
private toast;
|
|
2969
2980
|
private _initPushSubscription;
|
|
2970
2981
|
private _handlePushUnSubscription;
|
|
2971
2982
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWorkerCommuncationService, never>;
|
|
@@ -3105,6 +3116,17 @@ declare class ApplicationCtrlrService {
|
|
|
3105
3116
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationCtrlrService>;
|
|
3106
3117
|
}
|
|
3107
3118
|
|
|
3119
|
+
declare class PushCheckService {
|
|
3120
|
+
checkPushReady(): Promise<true | string>;
|
|
3121
|
+
private getIosVersion;
|
|
3122
|
+
private isIosStandalone;
|
|
3123
|
+
private isSafari;
|
|
3124
|
+
private baseSupport;
|
|
3125
|
+
private iosSupport;
|
|
3126
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PushCheckService, never>;
|
|
3127
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PushCheckService>;
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3108
3130
|
interface FieldSetting {
|
|
3109
3131
|
[key: string]: any;
|
|
3110
3132
|
ControlFieldCaption: string;
|
|
@@ -3144,6 +3166,7 @@ declare abstract class FieldBaseComponent extends BaseComponent implements OnIni
|
|
|
3144
3166
|
formmatedValue: EventEmitter<any>;
|
|
3145
3167
|
isMobile: boolean;
|
|
3146
3168
|
isTablet: boolean;
|
|
3169
|
+
_rlt: boolean;
|
|
3147
3170
|
JsonExtraProp: any;
|
|
3148
3171
|
parameters: any;
|
|
3149
3172
|
Setting: GeneralControlInfoModel;
|
|
@@ -3525,6 +3548,7 @@ declare class ApplicationBaseComponent extends BaseComponent {
|
|
|
3525
3548
|
}
|
|
3526
3549
|
|
|
3527
3550
|
declare class LayoutItemBaseComponent extends BaseComponent {
|
|
3551
|
+
id: string;
|
|
3528
3552
|
config: LayoutSetting;
|
|
3529
3553
|
isPanel: boolean;
|
|
3530
3554
|
maxLabelWidth: number;
|
|
@@ -3532,10 +3556,10 @@ declare class LayoutItemBaseComponent extends BaseComponent {
|
|
|
3532
3556
|
isSearchPanel: boolean;
|
|
3533
3557
|
isSearcPanelInSideContent: boolean;
|
|
3534
3558
|
searchPanelIsObject: boolean;
|
|
3535
|
-
id: string;
|
|
3536
3559
|
protected formPanelService: FormPanelService;
|
|
3537
3560
|
protected _cdr: ChangeDetectorRef;
|
|
3538
3561
|
constructor();
|
|
3562
|
+
ngOnInit(): void;
|
|
3539
3563
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3540
3564
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutItemBaseComponent, never>;
|
|
3541
3565
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutItemBaseComponent, "bnrc-layout-item-base", never, { "config": { "alias": "config"; "required": false; }; "isPanel": { "alias": "isPanel"; "required": false; }; "maxLabelWidth": { "alias": "maxLabelWidth"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -3549,10 +3573,15 @@ declare class LayoutPanelBaseComponent extends LayoutItemBaseComponent implement
|
|
|
3549
3573
|
isSearchPanel: boolean;
|
|
3550
3574
|
id: string;
|
|
3551
3575
|
layoutControlCount: number;
|
|
3552
|
-
|
|
3553
|
-
|
|
3576
|
+
visible: boolean;
|
|
3577
|
+
enable: boolean;
|
|
3578
|
+
readonly: boolean;
|
|
3579
|
+
protected _renderer2: Renderer2;
|
|
3580
|
+
protected _portalService: PortalService;
|
|
3581
|
+
protected _layoutService: LayoutService;
|
|
3554
3582
|
constructor();
|
|
3555
3583
|
ngOnInit(): void;
|
|
3584
|
+
protected _setBRule(): void;
|
|
3556
3585
|
protected _calcWidth(config: any): void;
|
|
3557
3586
|
protected _setLabelWidth(item: any): void;
|
|
3558
3587
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutPanelBaseComponent, never>;
|
|
@@ -3601,12 +3630,13 @@ declare class NumberBaseComponent extends FieldBaseComponent implements OnInit,
|
|
|
3601
3630
|
protected _setValue(value: any): void;
|
|
3602
3631
|
protected _clearInterval(): void;
|
|
3603
3632
|
protected _isCharacter(evt: any): boolean;
|
|
3604
|
-
protected _getFormated(val:
|
|
3633
|
+
protected _getFormated(val: string): string;
|
|
3605
3634
|
protected _setCursorPosition(cursorPosition: any): void;
|
|
3606
3635
|
protected _getMinusValue(isMinus: boolean, newVal: string | undefined): string;
|
|
3607
3636
|
protected _syncInputElementValue(value: number, e: {
|
|
3608
3637
|
target: any;
|
|
3609
3638
|
}): void;
|
|
3639
|
+
protected _setTargetToFormatedValue(target: any, formated: string, isMinus: any): number;
|
|
3610
3640
|
private reFormatValue;
|
|
3611
3641
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberBaseComponent, never>;
|
|
3612
3642
|
static ɵcmp: i0.ɵɵComponentDeclaration<NumberBaseComponent, "bnrc-number-base", never, {}, {}, never, never, false, never>;
|
|
@@ -4121,6 +4151,7 @@ declare class RedirectReportNavigatorCommandComponent extends BaseComponent {
|
|
|
4121
4151
|
|
|
4122
4152
|
declare class PortalPageComponent extends PageWithFormHandlerBaseComponent {
|
|
4123
4153
|
_routingService: RoutingService;
|
|
4154
|
+
ngOnInit(): void;
|
|
4124
4155
|
static ɵfac: i0.ɵɵFactoryDeclaration<PortalPageComponent, never>;
|
|
4125
4156
|
static ɵcmp: i0.ɵɵComponentDeclaration<PortalPageComponent, "bnrc-portal-page", never, {}, {}, never, never, false, never>;
|
|
4126
4157
|
}
|
|
@@ -4894,10 +4925,6 @@ declare class WorfkflowwChoiceCommandDirective {
|
|
|
4894
4925
|
static ɵdir: i0.ɵɵDirectiveDeclaration<WorfkflowwChoiceCommandDirective, "[wfChoice]", never, { "wfChoice": { "alias": "wfChoice"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "enableCommand": { "alias": "enableCommand"; "required": false; }; }, { "commandClick": "commandClick"; "workflowExecuteChoiceStatusChanged": "workflowExecuteChoiceStatusChanged"; }, never, never, false, never>;
|
|
4895
4926
|
}
|
|
4896
4927
|
|
|
4897
|
-
interface ToastService {
|
|
4898
|
-
open(msg: any, option?: any): any;
|
|
4899
|
-
}
|
|
4900
|
-
|
|
4901
4928
|
declare class CopyDirective extends BaseDirective implements OnInit {
|
|
4902
4929
|
copy: string;
|
|
4903
4930
|
_inputEl: HTMLInputElement;
|
|
@@ -5016,8 +5043,6 @@ declare class DynamicStyleDirective extends BaseDirective {
|
|
|
5016
5043
|
ngOnInit(): void;
|
|
5017
5044
|
ngOnChanges(changes: SimpleChanges): void;
|
|
5018
5045
|
ngOnDestroy(): void;
|
|
5019
|
-
protected _addDynamicFormStyles(cssStyles: string | undefined): void;
|
|
5020
|
-
protected _removeDynamicFormStyles(): void;
|
|
5021
5046
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicStyleDirective, never>;
|
|
5022
5047
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicStyleDirective, "[cssStyle]", never, { "cssStyle": { "alias": "cssStyle"; "required": false; }; }, {}, never, never, false, never>;
|
|
5023
5048
|
}
|
|
@@ -5299,6 +5324,15 @@ declare class ResizeHandlerDirective extends BaseDirective implements AfterViewI
|
|
|
5299
5324
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeHandlerDirective, "[resizeHandler]", never, { "fnResize": { "alias": "fnResize"; "required": false; }; }, {}, never, never, false, never>;
|
|
5300
5325
|
}
|
|
5301
5326
|
|
|
5327
|
+
declare class SafeBottomDirective extends BaseDirective {
|
|
5328
|
+
applyTop: boolean;
|
|
5329
|
+
disableBottom: boolean;
|
|
5330
|
+
isMobile: boolean;
|
|
5331
|
+
ngOnInit(): void;
|
|
5332
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SafeBottomDirective, never>;
|
|
5333
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SafeBottomDirective, "[safe-area]", never, { "applyTop": { "alias": "applyTop"; "required": false; }; "disableBottom": { "alias": "disableBottom"; "required": false; }; }, {}, never, never, false, never>;
|
|
5334
|
+
}
|
|
5335
|
+
|
|
5302
5336
|
declare class PortalDynamicPageResolver {
|
|
5303
5337
|
private portalService;
|
|
5304
5338
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
@@ -5382,7 +5416,8 @@ declare class FormNewComponent extends BaseComponent implements OnInit {
|
|
|
5382
5416
|
typeDefId: string;
|
|
5383
5417
|
viewId: string;
|
|
5384
5418
|
};
|
|
5385
|
-
private
|
|
5419
|
+
private _router;
|
|
5420
|
+
private _activatedRoute;
|
|
5386
5421
|
ngOnInit(): void;
|
|
5387
5422
|
onFormClose(): void;
|
|
5388
5423
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormNewComponent, never>;
|
|
@@ -5459,7 +5494,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
|
5459
5494
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
5460
5495
|
constructor();
|
|
5461
5496
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
5462
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof
|
|
5497
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i139.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
|
|
5463
5498
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
|
|
5464
5499
|
}
|
|
5465
5500
|
|
|
@@ -5634,9 +5669,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
5634
5669
|
constructor();
|
|
5635
5670
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
5636
5671
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
5637
|
-
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 MasterDetailsPageComponent, 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 ChunkArrayPipe, typeof MapToChatMessagePipe, 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 TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof
|
|
5672
|
+
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 MasterDetailsPageComponent, 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 ChunkArrayPipe, typeof MapToChatMessagePipe, 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 TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i139.FormsModule, typeof i139.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 MasterDetailsPageComponent, 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 ChunkArrayPipe, typeof MapToChatMessagePipe, 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 TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective]>;
|
|
5638
5673
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5639
5674
|
}
|
|
5640
5675
|
|
|
5641
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, 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, ChunkArrayPipe, 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, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginAction, LoginForm, LoginFormData, LoginFormUi, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, 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, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, 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, fromEntries, 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 };
|
|
5676
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, 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, ChunkArrayPipe, 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, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginAction, LoginForm, LoginFormData, LoginFormUi, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, 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, PushCheckService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, 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, fromEntries, 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 };
|
|
5642
5677
|
export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavGroupItem, NavGroupItemData, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
|