barsa-novin-ray-core 2.3.98 → 2.3.100
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 +512 -140
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +78 -24
- 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 i140 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();
|
|
@@ -2949,27 +2952,22 @@ declare class ColumnService {
|
|
|
2949
2952
|
}
|
|
2950
2953
|
|
|
2951
2954
|
declare class ServiceWorkerCommuncationService {
|
|
2952
|
-
|
|
2953
|
-
_hidden: boolean;
|
|
2954
|
-
operationName: string;
|
|
2955
|
+
private _toastService;
|
|
2955
2956
|
private _localStorage;
|
|
2956
|
-
private _logService;
|
|
2957
2957
|
private _portalService;
|
|
2958
|
-
private
|
|
2959
|
-
private _httpClient;
|
|
2960
|
-
private _subscription;
|
|
2958
|
+
private _pushCheckService;
|
|
2961
2959
|
get token2(): string;
|
|
2962
|
-
|
|
2960
|
+
private _usePushNotification;
|
|
2961
|
+
private _serviceWorker;
|
|
2963
2962
|
init(): void;
|
|
2964
|
-
|
|
2963
|
+
subscribePush(): Promise<void>;
|
|
2965
2964
|
protected _subscribe(): void;
|
|
2966
2965
|
protected _setDefaultOptions(): void;
|
|
2967
2966
|
protected _isLoggedIn(isLoggedIn: boolean): void;
|
|
2968
2967
|
protected _visibilitychange(documentIsHidden: boolean): void;
|
|
2969
2968
|
protected _postServiceWorker(message: any): void;
|
|
2970
|
-
private _testSend;
|
|
2971
|
-
private _initPushSubscription;
|
|
2972
2969
|
private _handlePushUnSubscription;
|
|
2970
|
+
private toast;
|
|
2973
2971
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceWorkerCommuncationService, never>;
|
|
2974
2972
|
static ɵprov: i0.ɵɵInjectableDeclaration<ServiceWorkerCommuncationService>;
|
|
2975
2973
|
}
|
|
@@ -3107,6 +3105,17 @@ declare class ApplicationCtrlrService {
|
|
|
3107
3105
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationCtrlrService>;
|
|
3108
3106
|
}
|
|
3109
3107
|
|
|
3108
|
+
declare class PushCheckService {
|
|
3109
|
+
checkPushReady(): Promise<true | string>;
|
|
3110
|
+
private getIosVersion;
|
|
3111
|
+
private isIosStandalone;
|
|
3112
|
+
private isSafari;
|
|
3113
|
+
private baseSupport;
|
|
3114
|
+
private iosSupport;
|
|
3115
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PushCheckService, never>;
|
|
3116
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PushCheckService>;
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3110
3119
|
interface FieldSetting {
|
|
3111
3120
|
[key: string]: any;
|
|
3112
3121
|
ControlFieldCaption: string;
|
|
@@ -3146,6 +3155,7 @@ declare abstract class FieldBaseComponent extends BaseComponent implements OnIni
|
|
|
3146
3155
|
formmatedValue: EventEmitter<any>;
|
|
3147
3156
|
isMobile: boolean;
|
|
3148
3157
|
isTablet: boolean;
|
|
3158
|
+
_rlt: boolean;
|
|
3149
3159
|
JsonExtraProp: any;
|
|
3150
3160
|
parameters: any;
|
|
3151
3161
|
Setting: GeneralControlInfoModel;
|
|
@@ -3527,6 +3537,7 @@ declare class ApplicationBaseComponent extends BaseComponent {
|
|
|
3527
3537
|
}
|
|
3528
3538
|
|
|
3529
3539
|
declare class LayoutItemBaseComponent extends BaseComponent {
|
|
3540
|
+
id: string;
|
|
3530
3541
|
config: LayoutSetting;
|
|
3531
3542
|
isPanel: boolean;
|
|
3532
3543
|
maxLabelWidth: number;
|
|
@@ -3534,10 +3545,10 @@ declare class LayoutItemBaseComponent extends BaseComponent {
|
|
|
3534
3545
|
isSearchPanel: boolean;
|
|
3535
3546
|
isSearcPanelInSideContent: boolean;
|
|
3536
3547
|
searchPanelIsObject: boolean;
|
|
3537
|
-
id: string;
|
|
3538
3548
|
protected formPanelService: FormPanelService;
|
|
3539
3549
|
protected _cdr: ChangeDetectorRef;
|
|
3540
3550
|
constructor();
|
|
3551
|
+
ngOnInit(): void;
|
|
3541
3552
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3542
3553
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutItemBaseComponent, never>;
|
|
3543
3554
|
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>;
|
|
@@ -3551,10 +3562,15 @@ declare class LayoutPanelBaseComponent extends LayoutItemBaseComponent implement
|
|
|
3551
3562
|
isSearchPanel: boolean;
|
|
3552
3563
|
id: string;
|
|
3553
3564
|
layoutControlCount: number;
|
|
3554
|
-
|
|
3555
|
-
|
|
3565
|
+
visible: boolean;
|
|
3566
|
+
enable: boolean;
|
|
3567
|
+
readonly: boolean;
|
|
3568
|
+
protected _renderer2: Renderer2;
|
|
3569
|
+
protected _portalService: PortalService;
|
|
3570
|
+
protected _layoutService: LayoutService;
|
|
3556
3571
|
constructor();
|
|
3557
3572
|
ngOnInit(): void;
|
|
3573
|
+
protected _setBRule(): void;
|
|
3558
3574
|
protected _calcWidth(config: any): void;
|
|
3559
3575
|
protected _setLabelWidth(item: any): void;
|
|
3560
3576
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutPanelBaseComponent, never>;
|
|
@@ -3603,12 +3619,13 @@ declare class NumberBaseComponent extends FieldBaseComponent implements OnInit,
|
|
|
3603
3619
|
protected _setValue(value: any): void;
|
|
3604
3620
|
protected _clearInterval(): void;
|
|
3605
3621
|
protected _isCharacter(evt: any): boolean;
|
|
3606
|
-
protected _getFormated(val:
|
|
3622
|
+
protected _getFormated(val: string): string;
|
|
3607
3623
|
protected _setCursorPosition(cursorPosition: any): void;
|
|
3608
3624
|
protected _getMinusValue(isMinus: boolean, newVal: string | undefined): string;
|
|
3609
3625
|
protected _syncInputElementValue(value: number, e: {
|
|
3610
3626
|
target: any;
|
|
3611
3627
|
}): void;
|
|
3628
|
+
protected _setTargetToFormatedValue(target: any, formated: string, isMinus: any): number;
|
|
3612
3629
|
private reFormatValue;
|
|
3613
3630
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberBaseComponent, never>;
|
|
3614
3631
|
static ɵcmp: i0.ɵɵComponentDeclaration<NumberBaseComponent, "bnrc-number-base", never, {}, {}, never, never, false, never>;
|
|
@@ -4123,6 +4140,7 @@ declare class RedirectReportNavigatorCommandComponent extends BaseComponent {
|
|
|
4123
4140
|
|
|
4124
4141
|
declare class PortalPageComponent extends PageWithFormHandlerBaseComponent {
|
|
4125
4142
|
_routingService: RoutingService;
|
|
4143
|
+
ngOnInit(): void;
|
|
4126
4144
|
static ɵfac: i0.ɵɵFactoryDeclaration<PortalPageComponent, never>;
|
|
4127
4145
|
static ɵcmp: i0.ɵɵComponentDeclaration<PortalPageComponent, "bnrc-portal-page", never, {}, {}, never, never, false, never>;
|
|
4128
4146
|
}
|
|
@@ -5018,8 +5036,6 @@ declare class DynamicStyleDirective extends BaseDirective {
|
|
|
5018
5036
|
ngOnInit(): void;
|
|
5019
5037
|
ngOnChanges(changes: SimpleChanges): void;
|
|
5020
5038
|
ngOnDestroy(): void;
|
|
5021
|
-
protected _addDynamicFormStyles(cssStyles: string | undefined): void;
|
|
5022
|
-
protected _removeDynamicFormStyles(): void;
|
|
5023
5039
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicStyleDirective, never>;
|
|
5024
5040
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicStyleDirective, "[cssStyle]", never, { "cssStyle": { "alias": "cssStyle"; "required": false; }; }, {}, never, never, false, never>;
|
|
5025
5041
|
}
|
|
@@ -5301,6 +5317,27 @@ declare class ResizeHandlerDirective extends BaseDirective implements AfterViewI
|
|
|
5301
5317
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeHandlerDirective, "[resizeHandler]", never, { "fnResize": { "alias": "fnResize"; "required": false; }; }, {}, never, never, false, never>;
|
|
5302
5318
|
}
|
|
5303
5319
|
|
|
5320
|
+
declare class SafeBottomDirective extends BaseDirective {
|
|
5321
|
+
applyTop: boolean;
|
|
5322
|
+
disableBottom: boolean;
|
|
5323
|
+
isMobile: boolean;
|
|
5324
|
+
ngOnInit(): void;
|
|
5325
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SafeBottomDirective, never>;
|
|
5326
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SafeBottomDirective, "[safe-area]", never, { "applyTop": { "alias": "applyTop"; "required": false; }; "disableBottom": { "alias": "disableBottom"; "required": false; }; }, {}, never, never, false, never>;
|
|
5327
|
+
}
|
|
5328
|
+
|
|
5329
|
+
declare function usePushNotification(): {
|
|
5330
|
+
bannerVisible: i0.WritableSignal<boolean>;
|
|
5331
|
+
isSubscribed: i0.WritableSignal<boolean>;
|
|
5332
|
+
permission: i0.WritableSignal<NotificationPermission>;
|
|
5333
|
+
errorMessage: i0.WritableSignal<string | null>;
|
|
5334
|
+
initPushBanner: () => Promise<void>;
|
|
5335
|
+
subscribe: () => Promise<PushSubscription>;
|
|
5336
|
+
unsubscribe: () => Promise<void>;
|
|
5337
|
+
handleNewSubscription: (subData: any) => Promise<void>;
|
|
5338
|
+
hideBanner: () => void;
|
|
5339
|
+
};
|
|
5340
|
+
|
|
5304
5341
|
declare class PortalDynamicPageResolver {
|
|
5305
5342
|
private portalService;
|
|
5306
5343
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
@@ -5384,7 +5421,8 @@ declare class FormNewComponent extends BaseComponent implements OnInit {
|
|
|
5384
5421
|
typeDefId: string;
|
|
5385
5422
|
viewId: string;
|
|
5386
5423
|
};
|
|
5387
|
-
private
|
|
5424
|
+
private _router;
|
|
5425
|
+
private _activatedRoute;
|
|
5388
5426
|
ngOnInit(): void;
|
|
5389
5427
|
onFormClose(): void;
|
|
5390
5428
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormNewComponent, never>;
|
|
@@ -5461,7 +5499,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
|
5461
5499
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
5462
5500
|
constructor();
|
|
5463
5501
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
5464
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof
|
|
5502
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i140.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
|
|
5465
5503
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
|
|
5466
5504
|
}
|
|
5467
5505
|
|
|
@@ -5622,6 +5660,22 @@ declare class ResizableModule {
|
|
|
5622
5660
|
static ɵinj: i0.ɵɵInjectorDeclaration<ResizableModule>;
|
|
5623
5661
|
}
|
|
5624
5662
|
|
|
5663
|
+
declare class PushBannerComponent {
|
|
5664
|
+
push: {
|
|
5665
|
+
bannerVisible: i0.WritableSignal<boolean>;
|
|
5666
|
+
isSubscribed: i0.WritableSignal<boolean>;
|
|
5667
|
+
permission: i0.WritableSignal<NotificationPermission>;
|
|
5668
|
+
errorMessage: i0.WritableSignal<string | null>;
|
|
5669
|
+
initPushBanner: () => Promise<void>;
|
|
5670
|
+
subscribe: () => Promise<PushSubscription>;
|
|
5671
|
+
unsubscribe: () => Promise<void>;
|
|
5672
|
+
handleNewSubscription: (subData: any) => Promise<void>;
|
|
5673
|
+
hideBanner: () => void;
|
|
5674
|
+
};
|
|
5675
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PushBannerComponent, never>;
|
|
5676
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PushBannerComponent, "bnrc-push-banner", never, {}, {}, never, never, false, never>;
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5625
5679
|
declare class BarsaNovinRayCoreRoutingModule {
|
|
5626
5680
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreRoutingModule, never>;
|
|
5627
5681
|
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
@@ -5631,14 +5685,14 @@ declare class BarsaNovinRayCoreRoutingModule {
|
|
|
5631
5685
|
declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
5632
5686
|
protected dcm: DynamicComponentService;
|
|
5633
5687
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
5634
|
-
protected dynamicComponents: (typeof EmptyPageWithRouterAndRouterOutletComponent | typeof ButtonLoadingComponent)[];
|
|
5688
|
+
protected dynamicComponents: (typeof EmptyPageWithRouterAndRouterOutletComponent | typeof ButtonLoadingComponent | typeof PushBannerComponent)[];
|
|
5635
5689
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
5636
5690
|
constructor();
|
|
5637
5691
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
5638
5692
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
5639
|
-
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
|
|
5693
|
+
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 PushBannerComponent, 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 i140.FormsModule, typeof i140.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 PushBannerComponent, 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]>;
|
|
5640
5694
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5641
5695
|
}
|
|
5642
5696
|
|
|
5643
|
-
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 };
|
|
5697
|
+
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, PushBannerComponent, 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, usePushNotification, validateAllFormFields };
|
|
5644
5698
|
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 };
|