barsa-novin-ray-core 2.3.165 → 3.0.1
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-barsa-novin-ray-core-Q1H9o6KT.mjs → barsa-novin-ray-core-barsa-novin-ray-core-BneCvL2Z.mjs} +647 -93
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-BneCvL2Z.mjs.map +1 -0
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-DKTPWXYB.mjs → barsa-novin-ray-core-barsa-report-page.module-CpACJpmQ.mjs} +2 -2
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-DKTPWXYB.mjs.map → barsa-novin-ray-core-barsa-report-page.module-CpACJpmQ.mjs.map} +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +1 -1
- package/package.json +1 -1
- package/types/barsa-novin-ray-core.d.ts +197 -17
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-Q1H9o6KT.mjs.map +0 -1
|
@@ -6,7 +6,7 @@ import * as i1 from '@angular/router';
|
|
|
6
6
|
import { NavigationEnd, NavigationStart, Route, Router, ActivatedRoute, ParamMap, RouterEvent, ActivatedRouteSnapshot, Resolve, RouteReuseStrategy, DetachedRouteHandle, CanActivate, UrlTree } from '@angular/router';
|
|
7
7
|
import { IconFont, ContentDensity } from '@fundamental-ngx/core';
|
|
8
8
|
import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
|
|
9
|
-
import * as
|
|
9
|
+
import * as i156 from '@angular/forms';
|
|
10
10
|
import { ValidatorFn, FormGroup } from '@angular/forms';
|
|
11
11
|
import { DBSchema } from 'idb';
|
|
12
12
|
import * as i1$1 from '@angular/common';
|
|
@@ -904,6 +904,8 @@ interface UiReportViewBaseSetting {
|
|
|
904
904
|
ScrollPolicy: string;
|
|
905
905
|
ScrollPolicy$Caption: string;
|
|
906
906
|
MinEmptyRows?: number;
|
|
907
|
+
/** کامپوننتِ داینامیکِ اختیاری که بالای گزارش بهعنوانِ «هدرِ گزارش» رندر میشود. */
|
|
908
|
+
HeaderComponent?: EjrayOlgo;
|
|
907
909
|
}
|
|
908
910
|
interface LayoutSetting {
|
|
909
911
|
[key: string]: any;
|
|
@@ -1548,6 +1550,18 @@ declare class RemoveNewlinePipe implements PipeTransform {
|
|
|
1548
1550
|
static ɵpipe: i0.ɵɵPipeDeclaration<RemoveNewlinePipe, "removeNewline", false>;
|
|
1549
1551
|
}
|
|
1550
1552
|
|
|
1553
|
+
type RelativeDateInput = Date | string | number | null | undefined;
|
|
1554
|
+
/**
|
|
1555
|
+
* پورتِ جاواسکریپتیِ DateTimeHelper.ToRelativeDate (سیشارپ).
|
|
1556
|
+
* فاصلهی تاریخِ ورودی تا «الان» را بهصورت متنِ نسبیِ فارسی برمیگرداند.
|
|
1557
|
+
*
|
|
1558
|
+
* نمونهها: «چند ثانیه پیش»، «۲ دقیقه پیش»، «۳ ساعت دیگر»، «فردا»، «۵ روز پیش»، «۲ ماه دیگر».
|
|
1559
|
+
*
|
|
1560
|
+
* @param value تاریخ ورودی (Date | رشته | timestamp میلیثانیه).
|
|
1561
|
+
* @param now مبنای «الان» بر حسب میلیثانیه؛ برای تستپذیری و بهروزرسانیِ سیگنالی قابل تزریق است.
|
|
1562
|
+
*/
|
|
1563
|
+
declare function toRelativeDate(value: RelativeDateInput, now?: number): string;
|
|
1564
|
+
|
|
1551
1565
|
declare class MoValuePipe implements PipeTransform {
|
|
1552
1566
|
constructor();
|
|
1553
1567
|
transform(name: string, mo: MetaobjectDataModel, caption?: boolean): string | any;
|
|
@@ -1654,6 +1668,12 @@ declare function calculateColumnWidthFitToContainer(container: HTMLElement, canV
|
|
|
1654
1668
|
columns: ReportViewColumn[];
|
|
1655
1669
|
contextMenuWidth: number;
|
|
1656
1670
|
};
|
|
1671
|
+
/**
|
|
1672
|
+
* تشخیص میدهد که آیا جدول باید از حالتِ FitToContainer به FreeColumnSize (عرضِ طبیعی + اسکرولِ افقی)
|
|
1673
|
+
* سوییچ کند یا نه. برای اینکه یک ستونِ outlier کلِ جدول را اسکرولی نکند، فقط وقتی `true` میدهد که
|
|
1674
|
+
* **حداقل `threshold` ستون** در سهمِ برابرِ کانتینر بیش از `maxHiddenRatio` (پیشفرض ۳۰٪) پنهان بمانند.
|
|
1675
|
+
*/
|
|
1676
|
+
declare function shouldUseFreeColumnSize(containerWidth: number, columns: ReportViewColumn[], threshold?: number, maxHiddenRatio?: number, reservedWidth?: number): boolean;
|
|
1657
1677
|
declare function calcContextMenuWidth(contextMenuItems: MenuItem[], disableContextMenuOverflow: boolean): number;
|
|
1658
1678
|
declare function RotateImage(imgEl: HTMLElement, media: {
|
|
1659
1679
|
RotationAngle: number;
|
|
@@ -1670,6 +1690,12 @@ declare function measureText2(text: string, fontSize?: string, fontName?: string
|
|
|
1670
1690
|
declare function measureText(text: string, fontSize?: string): number;
|
|
1671
1691
|
declare function measureTextBy(text: string, fontSize?: string, fontName?: string): number;
|
|
1672
1692
|
declare function genrateInlineMoId(): string;
|
|
1693
|
+
/**
|
|
1694
|
+
* تبدیل مقدار زمانی با ساختار hh:mm که از سرور بهصورت عددِ اعشاریِ «ساعت.دقیقه» میآید، به میلیثانیه.
|
|
1695
|
+
* بخشِ صحیح = ساعت و دو رقمِ اعشار = دقیقه؛ مثلاً "0.01" = 00:01 = یک دقیقه، "1.30" = 01:30 = نود دقیقه.
|
|
1696
|
+
* برای مقدار نامعتبر، خالی یا صفر و منفی، عددِ 0 (یعنی «خاموش») برمیگرداند.
|
|
1697
|
+
*/
|
|
1698
|
+
declare function hhmmToMs(value: string | number | null | undefined): number;
|
|
1673
1699
|
declare function enumValueToStringSize(value: string, defaultValue: string): string;
|
|
1674
1700
|
declare function isVersionBiggerThan(inputVersion: string): boolean;
|
|
1675
1701
|
declare function compareVersions(v1: string, v2: string): number;
|
|
@@ -1986,6 +2012,22 @@ declare class ColumnIconPipe implements PipeTransform {
|
|
|
1986
2012
|
static ɵpipe: i0.ɵɵPipeDeclaration<ColumnIconPipe, "columnIcon", false>;
|
|
1987
2013
|
}
|
|
1988
2014
|
|
|
2015
|
+
/** آیکن عمومیِ پیشفرض وقتی نه رکورد و نه موجودیت آیکن ندارند. */
|
|
2016
|
+
declare const DEFAULT_OBJECT_ICON = "/assets/Images/A/16/object.png";
|
|
2017
|
+
/**
|
|
2018
|
+
* آیکنِ یک رکورد را resolve میکند:
|
|
2019
|
+
* ۱- آیکنِ خودِ رکورد (`mo.$Icon`)
|
|
2020
|
+
* ۲- آیکنِ تعیینشده برای موجودیت (`Setting.Data.Icon`)
|
|
2021
|
+
* ۳- آیکنِ عمومیِ پیشفرض
|
|
2022
|
+
*
|
|
2023
|
+
* استفاده: `mo | moIcon: UlvMainCtrlr`
|
|
2024
|
+
*/
|
|
2025
|
+
declare class MoIconPipe implements PipeTransform {
|
|
2026
|
+
transform(mo: MetaobjectDataModel | null | undefined, Setting?: ReportModel): string;
|
|
2027
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoIconPipe, never>;
|
|
2028
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MoIconPipe, "moIcon", false>;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
1989
2031
|
declare class RowNumberPipe implements PipeTransform {
|
|
1990
2032
|
transform(moId: string, setting: PagingSetting, moDataList: MetaobjectDataModel[]): any;
|
|
1991
2033
|
static ɵfac: i0.ɵɵFactoryDeclaration<RowNumberPipe, never>;
|
|
@@ -2099,8 +2141,8 @@ declare class DynamicDarkColorPipe implements PipeTransform {
|
|
|
2099
2141
|
private cache;
|
|
2100
2142
|
private darkBackground;
|
|
2101
2143
|
private minContrast;
|
|
2144
|
+
private readonly _readableTextColorPipe;
|
|
2102
2145
|
transform(styleStr: string): string;
|
|
2103
|
-
private getReadableTextColor;
|
|
2104
2146
|
private adjustColorForDarkMode;
|
|
2105
2147
|
private parseColor;
|
|
2106
2148
|
private rgbArrayToHex;
|
|
@@ -2112,6 +2154,18 @@ declare class DynamicDarkColorPipe implements PipeTransform {
|
|
|
2112
2154
|
static ɵpipe: i0.ɵɵPipeDeclaration<DynamicDarkColorPipe, "dynamicDarkColor", false>;
|
|
2113
2155
|
}
|
|
2114
2156
|
|
|
2157
|
+
type ReadableTextColor = '#000000' | '#ffffff';
|
|
2158
|
+
declare class ReadableTextColorPipe implements PipeTransform {
|
|
2159
|
+
private readonly _document;
|
|
2160
|
+
transform(backgroundColor: unknown, context?: HTMLElement | null): ReadableTextColor | null;
|
|
2161
|
+
private _resolveColor;
|
|
2162
|
+
private _getContrastRatio;
|
|
2163
|
+
private _getLuminance;
|
|
2164
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReadableTextColorPipe, never>;
|
|
2165
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReadableTextColorPipe, "readableTextColor", false>;
|
|
2166
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReadableTextColorPipe>;
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2115
2169
|
declare class ChunkArrayPipe implements PipeTransform {
|
|
2116
2170
|
transform<T>(arr: T[] | null | undefined, size?: number): T[][];
|
|
2117
2171
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChunkArrayPipe, never>;
|
|
@@ -2175,6 +2229,28 @@ declare class ExistsColumnsPipe implements PipeTransform {
|
|
|
2175
2229
|
static ɵpipe: i0.ɵɵPipeDeclaration<ExistsColumnsPipe, "existsColumns", false>;
|
|
2176
2230
|
}
|
|
2177
2231
|
|
|
2232
|
+
/**
|
|
2233
|
+
* تاریخ را به متنِ نسبیِ فارسی تبدیل میکند و با گذرِ زمان خودش زنده بهروز میشود.
|
|
2234
|
+
*
|
|
2235
|
+
* استفاده در قالب:
|
|
2236
|
+
* ```html
|
|
2237
|
+
* <span>{{ lastUpdateTime | relativeDate }}</span>
|
|
2238
|
+
* ```
|
|
2239
|
+
*
|
|
2240
|
+
* پایپ ناخالص (`pure: false`) است تا با تغییرِ زمان دوباره اجرا شود. زمانِ مرجع از
|
|
2241
|
+
* سیگنالِ مشترکِ {@link RelativeTimeService} میآید و در هر تیکِ آن، ویو برای بازبینی
|
|
2242
|
+
* علامت زده میشود (سازگار با OnPush و حالتِ zoneless). Angular خروجیِ درونیابی را
|
|
2243
|
+
* فقط وقتی متن **واقعاً تغییر کند** در DOM اعمال میکند، پس رندرِ بیهوده رخ نمیدهد.
|
|
2244
|
+
*/
|
|
2245
|
+
declare class RelativeDatePipe implements PipeTransform {
|
|
2246
|
+
private readonly relativeTime;
|
|
2247
|
+
private readonly cdr;
|
|
2248
|
+
constructor();
|
|
2249
|
+
transform(value: RelativeDateInput): string;
|
|
2250
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelativeDatePipe, never>;
|
|
2251
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RelativeDatePipe, "relativeDate", false>;
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2178
2254
|
declare class ApiService {
|
|
2179
2255
|
portalLoginUrl: string;
|
|
2180
2256
|
executeUrl: string;
|
|
@@ -2342,7 +2418,7 @@ declare class PortalService {
|
|
|
2342
2418
|
loadServerStartupData(): Promise<Record<string, any>>;
|
|
2343
2419
|
_loadServerStartupData(resolve: any, reject: any): void;
|
|
2344
2420
|
buildNavigationParams(formpanelCtrlr: any, mo: MetaobjectDataModel, headerLayout: any, id: string, isPage: boolean): any;
|
|
2345
|
-
ShowFormPanelControl(formpanelCtrlr: any, router: Router, activatedRoute: ActivatedRoute, dialogComponent: Type<any> | null, isPage: boolean, vcr: ViewContainerRef, isReload?: boolean): void;
|
|
2421
|
+
ShowFormPanelControl(formpanelCtrlr: any, router: Router, activatedRoute: ActivatedRoute, dialogComponent: Type<any> | null, isPage: boolean, vcr: ViewContainerRef, isReload?: boolean, callerIsModal?: boolean): void;
|
|
2346
2422
|
loadSystem(id?: number): Promise<PortalDataModel>;
|
|
2347
2423
|
private _addToCachePageData;
|
|
2348
2424
|
private _getUlvParamsBy;
|
|
@@ -2474,6 +2550,7 @@ declare class DynamicComponentService {
|
|
|
2474
2550
|
private _injector;
|
|
2475
2551
|
private _compiler;
|
|
2476
2552
|
private _environmentInjector;
|
|
2553
|
+
private _nativeFederationRuntime;
|
|
2477
2554
|
private _dynamicModuleWithComponents;
|
|
2478
2555
|
private _remoteCache;
|
|
2479
2556
|
constructor();
|
|
@@ -2483,6 +2560,7 @@ declare class DynamicComponentService {
|
|
|
2483
2560
|
buildRemoteEntryUrl(moduleName: string, version: string): string;
|
|
2484
2561
|
getComponentBySelector(component: EjrayOlgo, elementInjector: Injector, environmentInjector: EnvironmentInjector): Observable<ComponentRef<unknown>>;
|
|
2485
2562
|
private _loadFromRemote;
|
|
2563
|
+
private _loadRemoteComponentMap;
|
|
2486
2564
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentService, never>;
|
|
2487
2565
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicComponentService>;
|
|
2488
2566
|
}
|
|
@@ -2767,7 +2845,7 @@ declare class UlvMainService {
|
|
|
2767
2845
|
private _parentHeightSource;
|
|
2768
2846
|
private _moveUpAccessSource;
|
|
2769
2847
|
private _reorderGroupbySource;
|
|
2770
|
-
|
|
2848
|
+
private _pollingInterval;
|
|
2771
2849
|
constructor();
|
|
2772
2850
|
_setPriorityAndPriorityGroup(toolbarButtons: any[]): any[];
|
|
2773
2851
|
get viewSettings$(): Observable<GridView | Record<string, string>>;
|
|
@@ -2827,6 +2905,7 @@ declare class UlvMainService {
|
|
|
2827
2905
|
* دسترسی MoveUp، نبودِ گروهبندی، و نبودِ حالتِ ویرایش لیستی (چون در این دو حالت اندیس ردیف با اندیس آرایه یکی نیست).
|
|
2828
2906
|
*/
|
|
2829
2907
|
get allowRecordReorder$(): Observable<boolean>;
|
|
2908
|
+
setPollingInterval(pollingInterval: string | number): void;
|
|
2830
2909
|
setReorderGroupby(groupby: SortSetting[]): void;
|
|
2831
2910
|
get alternateRowMode$(): Observable<boolean>;
|
|
2832
2911
|
setAlternateRowMode(alternateRowMode: boolean): void;
|
|
@@ -2978,6 +3057,26 @@ declare class NetworkStatusService {
|
|
|
2978
3057
|
static ɵprov: i0.ɵɵInjectableDeclaration<NetworkStatusService>;
|
|
2979
3058
|
}
|
|
2980
3059
|
|
|
3060
|
+
/**
|
|
3061
|
+
* یک ساعتِ سراسری بهصورت سیگنال؛ هر چند ثانیه یکبار «الان» را بهروز میکند
|
|
3062
|
+
* تا متنهای نسبیِ زمان (مثلِ «۲ دقیقه پیش») خودشان زنده بهروز شوند.
|
|
3063
|
+
*
|
|
3064
|
+
* چون یک تایمرِ مشترک برای کلِ برنامه استفاده میشود، تعدادِ زیادی متنِ نسبی
|
|
3065
|
+
* هم بدونِ ساختنِ تایمرِ جداگانه برای هرکدام، همزمان بهروز میمانند.
|
|
3066
|
+
*/
|
|
3067
|
+
declare class RelativeTimeService implements OnDestroy {
|
|
3068
|
+
/** فاصلهی بهروزرسانیِ «الان» بر حسبِ میلیثانیه. */
|
|
3069
|
+
private static readonly TICK_MS;
|
|
3070
|
+
private readonly _now;
|
|
3071
|
+
private readonly _nowReadonly;
|
|
3072
|
+
private readonly intervalId;
|
|
3073
|
+
/** سیگنالِ «الان» (میلیثانیه)؛ بهصورتِ دورهای بهروز میشود. */
|
|
3074
|
+
get now(): Signal<number>;
|
|
3075
|
+
ngOnDestroy(): void;
|
|
3076
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelativeTimeService, never>;
|
|
3077
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RelativeTimeService>;
|
|
3078
|
+
}
|
|
3079
|
+
|
|
2981
3080
|
interface RecordedAudioOutput {
|
|
2982
3081
|
blob: Blob;
|
|
2983
3082
|
title: string;
|
|
@@ -3211,6 +3310,8 @@ declare class RoutingService implements OnDestroy {
|
|
|
3211
3310
|
oldNavigation: any;
|
|
3212
3311
|
formpanelCtrlr: any;
|
|
3213
3312
|
isFirstPage: boolean;
|
|
3313
|
+
/** true اگر فرمِ این RoutingService خودش بهصورت مودال (داخل دیالوگ) باز شده باشد. */
|
|
3314
|
+
isOpenedAsModal: boolean;
|
|
3214
3315
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
3215
3316
|
paramId$: Observable<ParamMap>;
|
|
3216
3317
|
routeEvents$: Observable<RouterEvent>;
|
|
@@ -3672,6 +3773,7 @@ declare abstract class FieldBaseComponent extends BaseComponent implements IView
|
|
|
3672
3773
|
protected _renderer2: Renderer2;
|
|
3673
3774
|
protected _activatedRoute: ActivatedRoute;
|
|
3674
3775
|
protected _domSanitizer: DomSanitizer;
|
|
3776
|
+
protected _formPanelService: FormPanelService;
|
|
3675
3777
|
protected _dialogService: any;
|
|
3676
3778
|
protected _uploadService: UploadService | null;
|
|
3677
3779
|
protected _dateService: DateService | null;
|
|
@@ -3682,6 +3784,7 @@ declare abstract class FieldBaseComponent extends BaseComponent implements IView
|
|
|
3682
3784
|
private _valueChangedSource;
|
|
3683
3785
|
private _disableChangedSource;
|
|
3684
3786
|
private _readonlyChangedSource;
|
|
3787
|
+
get Mo(): MetaobjectDataModel;
|
|
3685
3788
|
constructor();
|
|
3686
3789
|
ngOnInit(): void;
|
|
3687
3790
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -4344,6 +4447,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
4344
4447
|
cartableTemplates: {
|
|
4345
4448
|
[key: string]: FormSetting;
|
|
4346
4449
|
};
|
|
4450
|
+
$Component: EjrayOlgo;
|
|
4347
4451
|
cartableChildsMo: {
|
|
4348
4452
|
[key: string]: MetaobjectDataModel;
|
|
4349
4453
|
};
|
|
@@ -4497,7 +4601,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
4497
4601
|
protected _containerWidthChanged(_: number): void;
|
|
4498
4602
|
protected _setRowIndicator(columns: ReportViewColumn[]): void;
|
|
4499
4603
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewBaseComponent<any>, never>;
|
|
4500
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewBaseComponent<any>, "bnrc-report-view-base", never, { "contextView": { "alias": "contextView"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "simpleInlineEdit": { "alias": "simpleInlineEdit"; "required": false; }; "alternateRowMode": { "alias": "alternateRowMode"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "access": { "alias": "access"; "required": false; }; "allowRecordReorder": { "alias": "allowRecordReorder"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "selectedCount": { "alias": "selectedCount"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "secondaryColumns": { "alias": "secondaryColumns"; "required": false; }; "popin": { "alias": "popin"; "required": false; }; "customFieldInfo": { "alias": "customFieldInfo"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "layoutInfo": { "alias": "layoutInfo"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "listEditViewId": { "alias": "listEditViewId"; "required": false; }; "typeViewId": { "alias": "typeViewId"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "relationList": { "alias": "relationList"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "rowItem": { "alias": "rowItem"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "selectedMo": { "alias": "selectedMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; "ulvHeightSizeType": { "alias": "ulvHeightSizeType"; "required": false; }; "contentHeight": { "alias": "contentHeight"; "required": false; }; "alternateEditObjectColumn": { "alias": "alternateEditObjectColumn"; "required": false; }; "disableHyperLink": { "alias": "disableHyperLink"; "required": false; }; "columnsHyperLink": { "alias": "columnsHyperLink"; "required": false; }; "effectiveReportLayout": { "alias": "effectiveReportLayout"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "hasInlineDeleteButton": { "alias": "hasInlineDeleteButton"; "required": false; }; "hasInlineEditButton": { "alias": "hasInlineEditButton"; "required": false; }; "contextSetting": { "alias": "contextSetting"; "required": false; }; "gridFreeColumnSizing": { "alias": "gridFreeColumnSizing"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "cartableTemplates": { "alias": "cartableTemplates"; "required": false; }; "cartableChildsMo": { "alias": "cartableChildsMo"; "required": false; }; "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "minEmptyRows": { "alias": "minEmptyRows"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; }, { "columnSummary": "columnSummary"; "escapeKey": "escapeKey"; "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "workflowShareButtons": "workflowShareButtons"; "sortDescending": "sortDescending"; "filter": "filter"; "executeToolbarButton": "executeToolbarButton"; "resetGridSettings": "resetGridSettings"; "sortSettingsChange": "sortSettingsChange"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "columnResized": "columnResized"; "hasDetailsInRow": "hasDetailsInRow"; }, never, never, false, never>;
|
|
4604
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewBaseComponent<any>, "bnrc-report-view-base", never, { "contextView": { "alias": "contextView"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "simpleInlineEdit": { "alias": "simpleInlineEdit"; "required": false; }; "alternateRowMode": { "alias": "alternateRowMode"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "access": { "alias": "access"; "required": false; }; "allowRecordReorder": { "alias": "allowRecordReorder"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "selectedCount": { "alias": "selectedCount"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "secondaryColumns": { "alias": "secondaryColumns"; "required": false; }; "popin": { "alias": "popin"; "required": false; }; "customFieldInfo": { "alias": "customFieldInfo"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "layoutInfo": { "alias": "layoutInfo"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "listEditViewId": { "alias": "listEditViewId"; "required": false; }; "typeViewId": { "alias": "typeViewId"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "relationList": { "alias": "relationList"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "rowItem": { "alias": "rowItem"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "selectedMo": { "alias": "selectedMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; "ulvHeightSizeType": { "alias": "ulvHeightSizeType"; "required": false; }; "contentHeight": { "alias": "contentHeight"; "required": false; }; "alternateEditObjectColumn": { "alias": "alternateEditObjectColumn"; "required": false; }; "disableHyperLink": { "alias": "disableHyperLink"; "required": false; }; "columnsHyperLink": { "alias": "columnsHyperLink"; "required": false; }; "effectiveReportLayout": { "alias": "effectiveReportLayout"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "hasInlineDeleteButton": { "alias": "hasInlineDeleteButton"; "required": false; }; "hasInlineEditButton": { "alias": "hasInlineEditButton"; "required": false; }; "contextSetting": { "alias": "contextSetting"; "required": false; }; "gridFreeColumnSizing": { "alias": "gridFreeColumnSizing"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "cartableTemplates": { "alias": "cartableTemplates"; "required": false; }; "$Component": { "alias": "$Component"; "required": false; }; "cartableChildsMo": { "alias": "cartableChildsMo"; "required": false; }; "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "minEmptyRows": { "alias": "minEmptyRows"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; }, { "columnSummary": "columnSummary"; "escapeKey": "escapeKey"; "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "workflowShareButtons": "workflowShareButtons"; "sortDescending": "sortDescending"; "filter": "filter"; "executeToolbarButton": "executeToolbarButton"; "resetGridSettings": "resetGridSettings"; "sortSettingsChange": "sortSettingsChange"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "columnResized": "columnResized"; "hasDetailsInRow": "hasDetailsInRow"; }, never, never, false, never>;
|
|
4501
4605
|
}
|
|
4502
4606
|
|
|
4503
4607
|
declare class FormPropsBaseComponent extends BaseComponent implements OnInit {
|
|
@@ -5151,6 +5255,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5151
5255
|
protected _parentFormPanelService: FormPanelService | null;
|
|
5152
5256
|
protected _formPanelService: FormPanelService | null;
|
|
5153
5257
|
protected _ulvMainService: UlvMainService | null;
|
|
5258
|
+
protected _renderer2: Renderer2;
|
|
5154
5259
|
private _saveEditedMo$;
|
|
5155
5260
|
private _formpanelValueChanged$;
|
|
5156
5261
|
private _formPanelLoaded;
|
|
@@ -5184,6 +5289,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5184
5289
|
onCartableBeforeTansition(): void;
|
|
5185
5290
|
onResetWorkflowState(): void;
|
|
5186
5291
|
_trackByColumn(index: number, column: ReportViewColumn): string;
|
|
5292
|
+
protected _addLastClass(lastItem: boolean): void;
|
|
5187
5293
|
protected _handleResetWorkflowState(): void;
|
|
5188
5294
|
protected _resetBruleActionMessage(): void;
|
|
5189
5295
|
protected _updateCartableMo(serializeMo: string): void;
|
|
@@ -5460,22 +5566,28 @@ declare class FieldDirective {
|
|
|
5460
5566
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldDirective, "[field]", never, { "field": { "alias": "field"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
5461
5567
|
}
|
|
5462
5568
|
|
|
5463
|
-
declare class ImageLazyDirective extends BaseDirective implements OnInit {
|
|
5569
|
+
declare class ImageLazyDirective extends BaseDirective implements OnInit, OnChanges, OnDestroy {
|
|
5464
5570
|
auto: boolean;
|
|
5465
5571
|
threshold: number;
|
|
5466
|
-
|
|
5572
|
+
imageLoadStarted: EventEmitter<void>;
|
|
5573
|
+
imageLoaded: EventEmitter<void>;
|
|
5574
|
+
imageLoadError: EventEmitter<void>;
|
|
5467
5575
|
imgLazy: string;
|
|
5468
|
-
protected _el: ElementRef;
|
|
5469
|
-
private portalService;
|
|
5470
5576
|
private _imgEl;
|
|
5471
|
-
private
|
|
5577
|
+
private _observer;
|
|
5578
|
+
private _initialized;
|
|
5472
5579
|
constructor();
|
|
5473
5580
|
ngOnInit(): void;
|
|
5581
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
5582
|
+
ngOnDestroy(): void;
|
|
5474
5583
|
showImage(): void;
|
|
5475
|
-
private
|
|
5476
|
-
private
|
|
5584
|
+
private readonly _loadHandler;
|
|
5585
|
+
private readonly _errorHandler;
|
|
5586
|
+
private _observeCurrentImage;
|
|
5587
|
+
private _resetImage;
|
|
5588
|
+
private _disconnectObserver;
|
|
5477
5589
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageLazyDirective, never>;
|
|
5478
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageLazyDirective, "[imgLazy]", never, { "auto": { "alias": "auto"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; "imgLazy": { "alias": "imgLazy"; "required": false; }; }, { "imageLoaded": "imageLoaded"; }, never, never, false, never>;
|
|
5590
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageLazyDirective, "[imgLazy]", never, { "auto": { "alias": "auto"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; "imgLazy": { "alias": "imgLazy"; "required": false; }; }, { "imageLoadStarted": "imageLoadStarted"; "imageLoaded": "imageLoaded"; "imageLoadError": "imageLoadError"; }, never, never, false, never>;
|
|
5479
5591
|
}
|
|
5480
5592
|
|
|
5481
5593
|
declare enum IntersectionStatus {
|
|
@@ -5709,6 +5821,7 @@ declare class FillEmptySpaceDirective extends BaseDirective implements AfterView
|
|
|
5709
5821
|
private _ro;
|
|
5710
5822
|
private _rafId;
|
|
5711
5823
|
private _viewReady;
|
|
5824
|
+
private _lastAppliedSignature;
|
|
5712
5825
|
ngAfterViewInit(): void;
|
|
5713
5826
|
ngOnChanges(_changes: SimpleChanges): void;
|
|
5714
5827
|
ngOnDestroy(): void;
|
|
@@ -6098,6 +6211,65 @@ declare class ResizeHandlerDirective extends BaseDirective implements AfterViewI
|
|
|
6098
6211
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeHandlerDirective, "[resizeHandler]", never, { "fnResize": { "alias": "fnResize"; "required": false; }; }, {}, never, never, false, never>;
|
|
6099
6212
|
}
|
|
6100
6213
|
|
|
6214
|
+
type GridBreakpoint = 's' | 'm' | 'l' | 'xl';
|
|
6215
|
+
/** تعدادِ کارت در ردیف بهازای هر breakpoint (مثلِ SizeS/SizeM/SizeL/SizeXL). */
|
|
6216
|
+
interface ResponsiveColsConfig {
|
|
6217
|
+
s?: number;
|
|
6218
|
+
m?: number;
|
|
6219
|
+
l?: number;
|
|
6220
|
+
xl?: number;
|
|
6221
|
+
}
|
|
6222
|
+
/** آستانههای عرضِ کانتینر (px) برای تعیینِ breakpoint. */
|
|
6223
|
+
interface ResponsiveBreakpoints {
|
|
6224
|
+
m: number;
|
|
6225
|
+
l: number;
|
|
6226
|
+
xl: number;
|
|
6227
|
+
}
|
|
6228
|
+
/**
|
|
6229
|
+
* یک container-query دستیِ قابلِاستفادهی مجدد: عرضِ خودِ المان (نه viewport) را با
|
|
6230
|
+
* `ResizeObserver` رصد میکند و بر اساس آن، تعدادِ ستونهای گریدِ ۱۲تاییِ فاندامنتال را
|
|
6231
|
+
* محاسبه و از طریقِ `(colSpanChange)` منتشر میکند. همچنین با `exportAs` قابلِ خواندنِ
|
|
6232
|
+
* مستقیمِ `colSpan`/`breakpoint` در همان قالب است.
|
|
6233
|
+
*
|
|
6234
|
+
* نمونه:
|
|
6235
|
+
* ```html
|
|
6236
|
+
* <fd-layout-grid
|
|
6237
|
+
* [bsuResponsiveGridCols]="{ s: 1, m: 2, l: 3, xl: 4 }"
|
|
6238
|
+
* (colSpanChange)="colSpan = $event">
|
|
6239
|
+
* <div [fdLayoutGridCol]="colSpan">...</div>
|
|
6240
|
+
* </fd-layout-grid>
|
|
6241
|
+
* ```
|
|
6242
|
+
*/
|
|
6243
|
+
declare class ResponsiveGridColsDirective implements AfterViewInit, OnChanges, OnDestroy {
|
|
6244
|
+
/** تعدادِ کارت در ردیف بهازای هر breakpoint. */
|
|
6245
|
+
config: ResponsiveColsConfig | null;
|
|
6246
|
+
/** آستانهها؛ پیشفرض همراستا با گریدِ فاندامنتال. */
|
|
6247
|
+
breakpoints: ResponsiveBreakpoints;
|
|
6248
|
+
/** span مؤثرِ گریدِ ۱۲تاییِ فاندامنتال (۱..۱۲) بر اساس عرضِ کانتینر. */
|
|
6249
|
+
colSpanChange: EventEmitter<number>;
|
|
6250
|
+
/** تعدادِ ستون در ردیف (برای گریدهای غیرِ ۱۲تایی مثل CSS/Tailwind grid). */
|
|
6251
|
+
colsPerRowChange: EventEmitter<number>;
|
|
6252
|
+
/** breakpoint فعلیِ کانتینر. */
|
|
6253
|
+
breakpointChange: EventEmitter<GridBreakpoint>;
|
|
6254
|
+
breakpoint: GridBreakpoint;
|
|
6255
|
+
colSpan: number;
|
|
6256
|
+
colsPerRow: number;
|
|
6257
|
+
private _el;
|
|
6258
|
+
private _cdr;
|
|
6259
|
+
private _zone;
|
|
6260
|
+
private _ro?;
|
|
6261
|
+
ngAfterViewInit(): void;
|
|
6262
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
6263
|
+
ngOnDestroy(): void;
|
|
6264
|
+
private _width;
|
|
6265
|
+
private _resolveBreakpoint;
|
|
6266
|
+
/** تعدادِ کارت در ردیف برای این breakpoint، با fallback به breakpointهای کوچکتر. */
|
|
6267
|
+
private _colsPerRow;
|
|
6268
|
+
private _apply;
|
|
6269
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveGridColsDirective, never>;
|
|
6270
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResponsiveGridColsDirective, "[bsuResponsiveGridCols]", ["bsuResponsiveGridCols"], { "config": { "alias": "bsuResponsiveGridCols"; "required": false; }; "breakpoints": { "alias": "breakpoints"; "required": false; }; }, { "colSpanChange": "colSpanChange"; "colsPerRowChange": "colsPerRowChange"; "breakpointChange": "breakpointChange"; }, never, never, false, never>;
|
|
6271
|
+
}
|
|
6272
|
+
|
|
6101
6273
|
declare class SafeBottomDirective extends BaseDirective {
|
|
6102
6274
|
applyTop: boolean;
|
|
6103
6275
|
disableBottom: boolean;
|
|
@@ -6267,6 +6439,7 @@ declare class FormNewComponent extends BaseComponent implements OnInit {
|
|
|
6267
6439
|
declare class ReportContainerComponent extends BaseComponent implements OnInit {
|
|
6268
6440
|
settings: ContainerReportSetting;
|
|
6269
6441
|
loading$: Observable<boolean>;
|
|
6442
|
+
_ulvMainCtrlr: any;
|
|
6270
6443
|
protected _injector: Injector;
|
|
6271
6444
|
protected _environmentInjector: EnvironmentInjector;
|
|
6272
6445
|
private _activatedRoute;
|
|
@@ -6275,6 +6448,8 @@ declare class ReportContainerComponent extends BaseComponent implements OnInit {
|
|
|
6275
6448
|
private _loadingSource;
|
|
6276
6449
|
constructor();
|
|
6277
6450
|
ngOnInit(): void;
|
|
6451
|
+
_addUlvMainUi(): void;
|
|
6452
|
+
ReloadReport(): void;
|
|
6278
6453
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportContainerComponent, never>;
|
|
6279
6454
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReportContainerComponent, "bnrc-report-container", never, { "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, false, never>;
|
|
6280
6455
|
}
|
|
@@ -6334,7 +6509,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
|
6334
6509
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
6335
6510
|
constructor();
|
|
6336
6511
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
6337
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof
|
|
6512
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i156.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
|
|
6338
6513
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
|
|
6339
6514
|
}
|
|
6340
6515
|
|
|
@@ -6448,11 +6623,16 @@ declare class SplitterComponent extends BaseComponent {
|
|
|
6448
6623
|
static ɵcmp: i0.ɵɵComponentDeclaration<SplitterComponent, "bnrc-splitter", never, { "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "config": { "alias": "config"; "required": false; }; "elDom": { "alias": "elDom"; "required": false; }; }, { "spliterResized": "spliterResized"; }, never, never, false, never>;
|
|
6449
6624
|
}
|
|
6450
6625
|
|
|
6626
|
+
interface NativeFederationRuntime {
|
|
6627
|
+
initRemoteEntry(remoteEntryUrl: string, remoteName?: string): Promise<unknown>;
|
|
6628
|
+
loadRemoteModule<TModule = unknown>(remoteName: string, exposedModule: string): Promise<TModule>;
|
|
6629
|
+
}
|
|
6451
6630
|
declare const APP_VERSION: InjectionToken<string>;
|
|
6452
6631
|
declare const DIALOG_SERVICE: InjectionToken<string>;
|
|
6453
6632
|
declare const FORM_DIALOG_COMPONENT: InjectionToken<string>;
|
|
6454
6633
|
declare const NOTIFICATAION_POPUP_SERVER: InjectionToken<NotificationPopupService>;
|
|
6455
6634
|
declare const TOAST_SERVICE: InjectionToken<ToastService>;
|
|
6635
|
+
declare const NATIVE_FEDERATION_RUNTIME: InjectionToken<NativeFederationRuntime>;
|
|
6456
6636
|
declare const NOTIFICATION_WEBWORKER_FACTORY: InjectionToken<() => Worker>;
|
|
6457
6637
|
|
|
6458
6638
|
declare abstract class BaseUlvSettingComponent extends BaseComponent implements OnInit {
|
|
@@ -6561,9 +6741,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
6561
6741
|
constructor();
|
|
6562
6742
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
6563
6743
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
6564
|
-
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 EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof DynamicUlvPagingComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof EnumCaptionPipe, 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 PicturesByGroupIdPipe, typeof ScopedCssPipe, typeof ReportActionListPipe, typeof GetCssVariableValuePipe, typeof FindColumnsPipe, typeof ExistsColumnsPipe, 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 MoLinkerDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof
|
|
6744
|
+
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 EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof DynamicUlvPagingComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof EnumCaptionPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof RelativeDatePipe, 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 MoIconPipe, 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 ReadableTextColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PicturesByGroupIdPipe, typeof ScopedCssPipe, typeof ReportActionListPipe, typeof GetCssVariableValuePipe, typeof FindColumnsPipe, typeof ExistsColumnsPipe, 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 ResponsiveGridColsDirective, typeof SafeBottomDirective, typeof MoLinkerDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i156.FormsModule, typeof i156.ReactiveFormsModule], [typeof FormComponent, typeof FieldUiComponent, typeof NotFoundComponent, typeof RootPageComponent, typeof RootPortalComponent, typeof ReportContainerComponent, typeof FormNewComponent, typeof ModalRootComponent, typeof PortalPageComponent, typeof PortalPageSidebarComponent, typeof EmptyPageWithRouterAndRouterOutletComponent, typeof DynamicItemComponent, typeof CardDynamicItemComponent, typeof DynamicFormComponent, typeof DynamicUlvToolbarComponent, typeof DynamicUlvPagingComponent, typeof BaseDynamicComponent, typeof DynamicFormToolbaritemComponent, typeof DynamicLayoutComponent, typeof EmptyPageComponent, typeof ReportEmptyPageComponent, typeof MasterDetailsPageComponent, typeof FormPageComponent, typeof FormFieldReportPageComponent, typeof ButtonLoadingComponent, typeof UnlimitSessionComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof EnumCaptionPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof RelativeDatePipe, 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 MoIconPipe, 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 ReadableTextColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PicturesByGroupIdPipe, typeof ScopedCssPipe, typeof ReportActionListPipe, typeof GetCssVariableValuePipe, typeof FindColumnsPipe, typeof ExistsColumnsPipe, 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 ResponsiveGridColsDirective, typeof SafeBottomDirective, typeof MoLinkerDirective]>;
|
|
6565
6745
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
6566
6746
|
}
|
|
6567
6747
|
|
|
6568
|
-
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, BaseSettingsService, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CalendarSettingsStore, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnRendererBase, ColumnRendererViewBase, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, CustomUiRegistryService, DEFAULT_REPORT_LAYOUT_POLICY, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DefaultCommandsAccessValue, DefaultGridSetting, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicUlvPagingComponent, DynamicUlvToolbarComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EntitySettingsStore, EnumCaptionPipe, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, ExistsColumnsPipe, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldBaseController, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FieldViewBase, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindColumnsPipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, FormToolbarButton, GanttChartHelper, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetAllHorizontalFromLayout94, GetContentType, GetCssVariableValuePipe, GetDefaultMoObjectInfo, GetImgTags, GetViewableExtensions, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, 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, MimeTypes, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoLinkerDirective, 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, PicturesByGroupIdPipe, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, REPORT_GRID_VIEWPORT_CLASS, REPORT_TYPE_DEFAULT_POLICIES, RUNTIME_NAV_STATE_SCHEMA_V1, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportActionListPipe, ReportBaseComponent, ReportBaseInfo, ReportBreadcrumbResolver, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, RowState, RuntimeNavStateCacheService, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScopedCssPipe, ScrollLayoutContextHolder, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimpleTemplateEngine, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, SplitterComponent, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TEMPLATE_ENGINE, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, Ui, UiService, Ul, UlvCommandDirective, UlvHeightSizeType, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, addDynamicVariableTo, availablePrefixes, bodyClick, buildRuntimeNavStateCacheKey, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, contextDefaultsFromEnvironment, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, extractLayoutPolicyFromView, fixUnclosedParentheses, 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, getNestedValue, getNewMoGridEditor, getParentHeight, getReportTypeDefaultPolicy, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isIOS, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, multilevelSort, nullOrUndefinedString, number_only, removeDynamicStyle, requestAnimationFramePolyfill, resolveFinalScroll, resolveReportLayoutPolicy, scrollLayoutModeToContextEnvironment, scrollToElement, searchEx, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, sort, sortEx, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
6569
|
-
export type { AbbrevationDeviceSize, AppMenu, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarConfig, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentMap, ComponentSettingsDataModel, ContainerReportSetting, ContextEnvironment, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EffectiveReportLayoutPolicy, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, ITemplateEngine, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, Media, 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, PictureGroupItem, PlaceHolderDataModel, PortalDataModel, PushState, RelationItemType, RelationListTypes, ReportItemSetting, ReportLayoutAdapter, ReportLayoutMode, ReportLayoutPolicyPartial, ReportModelTypes, ReportScrollMode, ReportSetting, RuntimeNavPayload, RuntimeNavSerializationMode, RuntimeNavStateEnvelope, ScrollLayoutMode, ScrollViewportHost, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SystemSetting, TableState, ToolbarButtonReportViewType, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
|
|
6748
|
+
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, BaseSettingsService, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CalendarSettingsStore, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnRendererBase, ColumnRendererViewBase, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, CustomUiRegistryService, DEFAULT_OBJECT_ICON, DEFAULT_REPORT_LAYOUT_POLICY, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DefaultCommandsAccessValue, DefaultGridSetting, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicUlvPagingComponent, DynamicUlvToolbarComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EntitySettingsStore, EnumCaptionPipe, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, ExistsColumnsPipe, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldBaseController, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FieldViewBase, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindColumnsPipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, FormToolbarButton, GanttChartHelper, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetAllHorizontalFromLayout94, GetContentType, GetCssVariableValuePipe, GetDefaultMoObjectInfo, GetImgTags, GetViewableExtensions, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, 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, MimeTypes, MoForReportModel, MoForReportModelBase, MoIconPipe, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoLinkerDirective, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NATIVE_FEDERATION_RUNTIME, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, Offline, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PicturesByGroupIdPipe, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, REPORT_GRID_VIEWPORT_CLASS, REPORT_TYPE_DEFAULT_POLICIES, RUNTIME_NAV_STATE_SCHEMA_V1, RabetehAkseTakiListiControlInfoModel, ReadableTextColorPipe, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RelativeDatePipe, RelativeTimeService, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportActionListPipe, ReportBaseComponent, ReportBaseInfo, ReportBreadcrumbResolver, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ResponsiveGridColsDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, RowState, RuntimeNavStateCacheService, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScopedCssPipe, ScrollLayoutContextHolder, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimpleTemplateEngine, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, SplitterComponent, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TEMPLATE_ENGINE, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, Ui, UiService, Ul, UlvCommandDirective, UlvHeightSizeType, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, addDynamicVariableTo, availablePrefixes, bodyClick, buildRuntimeNavStateCacheKey, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, contextDefaultsFromEnvironment, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, extractLayoutPolicyFromView, fixUnclosedParentheses, 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, getNestedValue, getNewMoGridEditor, getParentHeight, getReportTypeDefaultPolicy, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, hhmmToMs, isFF, isFirefox, isFunction, isIOS, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, multilevelSort, nullOrUndefinedString, number_only, removeDynamicStyle, requestAnimationFramePolyfill, resolveFinalScroll, resolveReportLayoutPolicy, scrollLayoutModeToContextEnvironment, scrollToElement, searchEx, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, shouldUseFreeColumnSize, sort, sortEx, stopPropagation, throwIfAlreadyLoaded, toNumber, toRelativeDate, validateAllFormFields };
|
|
6749
|
+
export type { AbbrevationDeviceSize, AppMenu, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarConfig, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentMap, ComponentSettingsDataModel, ContainerReportSetting, ContextEnvironment, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EffectiveReportLayoutPolicy, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridBreakpoint, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, ITemplateEngine, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, Media, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NativeFederationRuntime, NavGroupItem, NavGroupItemData, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PictureGroupItem, PlaceHolderDataModel, PortalDataModel, PushState, ReadableTextColor, RelationItemType, RelationListTypes, RelativeDateInput, ReportItemSetting, ReportLayoutAdapter, ReportLayoutMode, ReportLayoutPolicyPartial, ReportModelTypes, ReportScrollMode, ReportSetting, ResponsiveBreakpoints, ResponsiveColsConfig, RuntimeNavPayload, RuntimeNavSerializationMode, RuntimeNavStateEnvelope, ScrollLayoutMode, ScrollViewportHost, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SystemSetting, TableState, ToolbarButtonReportViewType, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
|