barsa-novin-ray-core 2.3.167 → 3.0.2
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-CKKXv9DX.mjs → barsa-novin-ray-core-barsa-novin-ray-core-CakmZXPX.mjs} +748 -116
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-CakmZXPX.mjs.map +1 -0
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-BIBAUbnS.mjs → barsa-novin-ray-core-barsa-report-page.module-DFDfT3fn.mjs} +2 -2
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-BIBAUbnS.mjs.map → barsa-novin-ray-core-barsa-report-page.module-DFDfT3fn.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 +205 -19
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-CKKXv9DX.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;
|
|
@@ -2769,7 +2845,7 @@ declare class UlvMainService {
|
|
|
2769
2845
|
private _parentHeightSource;
|
|
2770
2846
|
private _moveUpAccessSource;
|
|
2771
2847
|
private _reorderGroupbySource;
|
|
2772
|
-
|
|
2848
|
+
private _pollingInterval;
|
|
2773
2849
|
constructor();
|
|
2774
2850
|
_setPriorityAndPriorityGroup(toolbarButtons: any[]): any[];
|
|
2775
2851
|
get viewSettings$(): Observable<GridView | Record<string, string>>;
|
|
@@ -2829,6 +2905,7 @@ declare class UlvMainService {
|
|
|
2829
2905
|
* دسترسی MoveUp، نبودِ گروهبندی، و نبودِ حالتِ ویرایش لیستی (چون در این دو حالت اندیس ردیف با اندیس آرایه یکی نیست).
|
|
2830
2906
|
*/
|
|
2831
2907
|
get allowRecordReorder$(): Observable<boolean>;
|
|
2908
|
+
setPollingInterval(pollingInterval: string | number): void;
|
|
2832
2909
|
setReorderGroupby(groupby: SortSetting[]): void;
|
|
2833
2910
|
get alternateRowMode$(): Observable<boolean>;
|
|
2834
2911
|
setAlternateRowMode(alternateRowMode: boolean): void;
|
|
@@ -2980,6 +3057,26 @@ declare class NetworkStatusService {
|
|
|
2980
3057
|
static ɵprov: i0.ɵɵInjectableDeclaration<NetworkStatusService>;
|
|
2981
3058
|
}
|
|
2982
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
|
+
|
|
2983
3080
|
interface RecordedAudioOutput {
|
|
2984
3081
|
blob: Blob;
|
|
2985
3082
|
title: string;
|
|
@@ -3213,6 +3310,8 @@ declare class RoutingService implements OnDestroy {
|
|
|
3213
3310
|
oldNavigation: any;
|
|
3214
3311
|
formpanelCtrlr: any;
|
|
3215
3312
|
isFirstPage: boolean;
|
|
3313
|
+
/** true اگر فرمِ این RoutingService خودش بهصورت مودال (داخل دیالوگ) باز شده باشد. */
|
|
3314
|
+
isOpenedAsModal: boolean;
|
|
3216
3315
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
3217
3316
|
paramId$: Observable<ParamMap>;
|
|
3218
3317
|
routeEvents$: Observable<RouterEvent>;
|
|
@@ -3674,6 +3773,7 @@ declare abstract class FieldBaseComponent extends BaseComponent implements IView
|
|
|
3674
3773
|
protected _renderer2: Renderer2;
|
|
3675
3774
|
protected _activatedRoute: ActivatedRoute;
|
|
3676
3775
|
protected _domSanitizer: DomSanitizer;
|
|
3776
|
+
protected _formPanelService: FormPanelService;
|
|
3677
3777
|
protected _dialogService: any;
|
|
3678
3778
|
protected _uploadService: UploadService | null;
|
|
3679
3779
|
protected _dateService: DateService | null;
|
|
@@ -3684,6 +3784,7 @@ declare abstract class FieldBaseComponent extends BaseComponent implements IView
|
|
|
3684
3784
|
private _valueChangedSource;
|
|
3685
3785
|
private _disableChangedSource;
|
|
3686
3786
|
private _readonlyChangedSource;
|
|
3787
|
+
get Mo(): MetaobjectDataModel;
|
|
3687
3788
|
constructor();
|
|
3688
3789
|
ngOnInit(): void;
|
|
3689
3790
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -4643,6 +4744,9 @@ declare class BaseColumnPropsComponent extends BaseComponent implements AfterVie
|
|
|
4643
4744
|
save: EventEmitter<any>;
|
|
4644
4745
|
cancel: EventEmitter<any>;
|
|
4645
4746
|
tab: EventEmitter<any>;
|
|
4747
|
+
enter: EventEmitter<any>;
|
|
4748
|
+
arrowUp: EventEmitter<any>;
|
|
4749
|
+
arrowDown: EventEmitter<any>;
|
|
4646
4750
|
changeToEditMode: EventEmitter<any>;
|
|
4647
4751
|
allColumns: ReportViewColumn[];
|
|
4648
4752
|
column: any;
|
|
@@ -4670,7 +4774,7 @@ declare class BaseColumnPropsComponent extends BaseComponent implements AfterVie
|
|
|
4670
4774
|
constructor();
|
|
4671
4775
|
_callChangeToEditMode(): void;
|
|
4672
4776
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseColumnPropsComponent, never>;
|
|
4673
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseColumnPropsComponent, "bnrc-base-column-props", never, { "allColumns": { "alias": "allColumns"; "required": false; }; "column": { "alias": "column"; "required": false; }; "attachmentViewType": { "alias": "attachmentViewType"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "index": { "alias": "index"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "customRowHeight": { "alias": "customRowHeight"; "required": false; }; "controlUi": { "alias": "controlUi"; "required": false; }; "formLayoutShowLabel": { "alias": "formLayoutShowLabel"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "layout94": { "alias": "layout94"; "required": false; }; "detailsComponentSetting": { "alias": "detailsComponentSetting"; "required": false; }; "value": { "alias": "value"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "cellEdit": { "alias": "cellEdit"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "customComponent": { "alias": "customComponent"; "required": false; }; }, { "save": "save"; "cancel": "cancel"; "tab": "tab"; "changeToEditMode": "changeToEditMode"; }, never, never, false, never>;
|
|
4777
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseColumnPropsComponent, "bnrc-base-column-props", never, { "allColumns": { "alias": "allColumns"; "required": false; }; "column": { "alias": "column"; "required": false; }; "attachmentViewType": { "alias": "attachmentViewType"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "index": { "alias": "index"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "customRowHeight": { "alias": "customRowHeight"; "required": false; }; "controlUi": { "alias": "controlUi"; "required": false; }; "formLayoutShowLabel": { "alias": "formLayoutShowLabel"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "layout94": { "alias": "layout94"; "required": false; }; "detailsComponentSetting": { "alias": "detailsComponentSetting"; "required": false; }; "value": { "alias": "value"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "cellEdit": { "alias": "cellEdit"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "customComponent": { "alias": "customComponent"; "required": false; }; }, { "save": "save"; "cancel": "cancel"; "tab": "tab"; "enter": "enter"; "arrowUp": "arrowUp"; "arrowDown": "arrowDown"; "changeToEditMode": "changeToEditMode"; }, never, never, false, never>;
|
|
4674
4778
|
}
|
|
4675
4779
|
|
|
4676
4780
|
declare class TilePropsComponent extends BaseComponent implements OnInit {
|
|
@@ -4864,6 +4968,7 @@ declare class DynamicFormComponent extends BaseDynamicComponent {
|
|
|
4864
4968
|
layout94: any;
|
|
4865
4969
|
footerDesign: any;
|
|
4866
4970
|
settings: MetaobjectDataModel;
|
|
4971
|
+
lastUpdateTime: string;
|
|
4867
4972
|
workflowPanelUi: any;
|
|
4868
4973
|
title: string;
|
|
4869
4974
|
subtitle: string;
|
|
@@ -4885,7 +4990,7 @@ declare class DynamicFormComponent extends BaseDynamicComponent {
|
|
|
4885
4990
|
} | undefined;
|
|
4886
4991
|
modernTabs: LayoutSetting[];
|
|
4887
4992
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormComponent, never>;
|
|
4888
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "bnrc-dynamic-form-component", never, { "breadCrumbs": { "alias": "breadCrumbs"; "required": false; }; "toolbarVisible": { "alias": "toolbarVisible"; "required": false; }; "toolbarItems": { "alias": "toolbarItems"; "required": false; }; "layoutActions": { "alias": "layoutActions"; "required": false; }; "layoutActionsTemplateRef": { "alias": "layoutActionsTemplateRef"; "required": false; }; "workflowButtons": { "alias": "workflowButtons"; "required": false; }; "layout94": { "alias": "layout94"; "required": false; }; "footerDesign": { "alias": "footerDesign"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; "workflowPanelUi": { "alias": "workflowPanelUi"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "facetList": { "alias": "facetList"; "required": false; }; "removeHeaderBorder": { "alias": "removeHeaderBorder"; "required": false; }; "removeContentPadding": { "alias": "removeContentPadding"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isModal": { "alias": "isModal"; "required": false; }; "avatar": { "alias": "avatar"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "dirValue": { "alias": "dirValue"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "modernTabs": { "alias": "modernTabs"; "required": false; }; }, {}, never, never, false, never>;
|
|
4993
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "bnrc-dynamic-form-component", never, { "breadCrumbs": { "alias": "breadCrumbs"; "required": false; }; "toolbarVisible": { "alias": "toolbarVisible"; "required": false; }; "toolbarItems": { "alias": "toolbarItems"; "required": false; }; "layoutActions": { "alias": "layoutActions"; "required": false; }; "layoutActionsTemplateRef": { "alias": "layoutActionsTemplateRef"; "required": false; }; "workflowButtons": { "alias": "workflowButtons"; "required": false; }; "layout94": { "alias": "layout94"; "required": false; }; "footerDesign": { "alias": "footerDesign"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; "lastUpdateTime": { "alias": "lastUpdateTime"; "required": false; }; "workflowPanelUi": { "alias": "workflowPanelUi"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "description": { "alias": "description"; "required": false; }; "facetList": { "alias": "facetList"; "required": false; }; "removeHeaderBorder": { "alias": "removeHeaderBorder"; "required": false; }; "removeContentPadding": { "alias": "removeContentPadding"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isModal": { "alias": "isModal"; "required": false; }; "avatar": { "alias": "avatar"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "dirValue": { "alias": "dirValue"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "modernTabs": { "alias": "modernTabs"; "required": false; }; }, {}, never, never, false, never>;
|
|
4889
4994
|
}
|
|
4890
4995
|
|
|
4891
4996
|
declare class DynamicItemComponent extends BaseDynamicComponent {
|
|
@@ -5125,7 +5230,6 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5125
5230
|
set cartableMo(val: MetaobjectDataModel);
|
|
5126
5231
|
set cartableWorkflowData(val: string);
|
|
5127
5232
|
hasError: boolean;
|
|
5128
|
-
_focusToFirstEidtableColumn: boolean;
|
|
5129
5233
|
_lastEditableColumnIndex: number;
|
|
5130
5234
|
inlineEditInReport: boolean;
|
|
5131
5235
|
layout$: Observable<any>;
|
|
@@ -5154,6 +5258,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5154
5258
|
protected _parentFormPanelService: FormPanelService | null;
|
|
5155
5259
|
protected _formPanelService: FormPanelService | null;
|
|
5156
5260
|
protected _ulvMainService: UlvMainService | null;
|
|
5261
|
+
protected _renderer2: Renderer2;
|
|
5157
5262
|
private _saveEditedMo$;
|
|
5158
5263
|
private _formpanelValueChanged$;
|
|
5159
5264
|
private _formPanelLoaded;
|
|
@@ -5161,6 +5266,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5161
5266
|
private _cartableTemplate;
|
|
5162
5267
|
private _cartableWorkflowData;
|
|
5163
5268
|
private _serializedRelatedMo;
|
|
5269
|
+
private _inlineNavigation;
|
|
5164
5270
|
constructor();
|
|
5165
5271
|
private get _hasFormPanelService();
|
|
5166
5272
|
ngOnInit(): void;
|
|
@@ -5172,6 +5278,8 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5172
5278
|
onRowClick(): void;
|
|
5173
5279
|
onColumnChangeToEditMode(elDom: HTMLElement, index: number): void;
|
|
5174
5280
|
onTabKeyDown(e: any, index: any): void;
|
|
5281
|
+
onEnterKeyDown(e: KeyboardEvent, index: number): void;
|
|
5282
|
+
onVerticalNavigationKeyDown(e: KeyboardEvent, index: number, direction: 'next' | 'previous'): void;
|
|
5175
5283
|
onEditFormPanelSave(_: any): void;
|
|
5176
5284
|
onEditFormPanelCancel(_: any): void;
|
|
5177
5285
|
onUlvCommand(): void;
|
|
@@ -5187,15 +5295,21 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5187
5295
|
onCartableBeforeTansition(): void;
|
|
5188
5296
|
onResetWorkflowState(): void;
|
|
5189
5297
|
_trackByColumn(index: number, column: ReportViewColumn): string;
|
|
5298
|
+
protected _addLastClass(lastItem: boolean): void;
|
|
5190
5299
|
protected _handleResetWorkflowState(): void;
|
|
5191
5300
|
protected _resetBruleActionMessage(): void;
|
|
5192
5301
|
protected _updateCartableMo(serializeMo: string): void;
|
|
5193
5302
|
protected _createCartableParams(): void;
|
|
5194
5303
|
protected _needToSave(): boolean;
|
|
5195
5304
|
protected _checkfocusOutFromRow(_target: any): void;
|
|
5305
|
+
/** آخرین ستونی که در ردیفِ inline واقعاً میتواند مقصد Tab باشد. */
|
|
5306
|
+
protected _getLastEditableColumnIndex(): number;
|
|
5307
|
+
/** نخستین ستونی که مقصد ورود به ردیف بعد با Tab است. */
|
|
5308
|
+
protected _getFirstEditableColumnIndex(): number;
|
|
5196
5309
|
protected _rowCheck(onlyCheck?: boolean): void;
|
|
5197
5310
|
protected _raiseWorkflowShareButtons(isChecked: boolean): void;
|
|
5198
5311
|
protected _handleValueChange(_formPanelCtrl: any, fieldCtrlr: any): void;
|
|
5312
|
+
protected _handleAfterSave(_formPanelCtrl: any, _err: any): void;
|
|
5199
5313
|
protected _syncMo(): Observable<void>;
|
|
5200
5314
|
protected _getMoWithoutWrapper(syncWithFormpanelMo: MetaobjectDataModel): MetaobjectDataModel;
|
|
5201
5315
|
protected _updateWithOriginalValues(source: MetaobjectDataModel, dest: MetaobjectDataModel): void;
|
|
@@ -5210,6 +5324,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5210
5324
|
succeed: boolean;
|
|
5211
5325
|
saved: boolean;
|
|
5212
5326
|
}>;
|
|
5327
|
+
private _queueInlineRecordNavigation;
|
|
5213
5328
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItemPropsComponent, never>;
|
|
5214
5329
|
static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewItemPropsComponent, "bnrc-base-view-item-props", never, { "checkboxComponent": { "alias": "checkboxComponent"; "required": false; }; "disableEllapsis": { "alias": "disableEllapsis"; "required": false; }; "isslider": { "alias": "isslider"; "required": false; }; "attachmentViewType": { "alias": "attachmentViewType"; "required": false; }; "dirtyColumns": { "alias": "dirtyColumns"; "required": false; }; "contextMenuOverflowText": { "alias": "contextMenuOverflowText"; "required": false; }; "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; "index": { "alias": "index"; "required": false; }; "last": { "alias": "last"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "hideDetailsText": { "alias": "hideDetailsText"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "isLastChildGroup": { "alias": "isLastChildGroup"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "rowNumber": { "alias": "rowNumber"; "required": false; }; "alternateRowMode": { "alias": "alternateRowMode"; "required": false; }; "noSaveInlineEditInServer": { "alias": "noSaveInlineEditInServer"; "required": false; }; "disableHyperLink": { "alias": "disableHyperLink"; "required": false; }; "columnsHyperLink": { "alias": "columnsHyperLink"; "required": false; }; "rowIndicatorColor": { "alias": "rowIndicatorColor"; "required": false; }; "alternateEditObjectColumn": { "alias": "alternateEditObjectColumn"; "required": false; }; "maxHeightHeader": { "alias": "maxHeightHeader"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "serializedRelatedMo": { "alias": "serializedRelatedMo"; "required": false; }; "cartableTemplate": { "alias": "cartableTemplate"; "required": false; }; "cartableMo": { "alias": "cartableMo"; "required": false; }; "cartableWorkflowData": { "alias": "cartableWorkflowData"; "required": false; }; }, { "actionListClick": "actionListClick"; "events": "events"; }, never, never, false, never>;
|
|
5215
5330
|
}
|
|
@@ -5463,22 +5578,28 @@ declare class FieldDirective {
|
|
|
5463
5578
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldDirective, "[field]", never, { "field": { "alias": "field"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
5464
5579
|
}
|
|
5465
5580
|
|
|
5466
|
-
declare class ImageLazyDirective extends BaseDirective implements OnInit {
|
|
5581
|
+
declare class ImageLazyDirective extends BaseDirective implements OnInit, OnChanges, OnDestroy {
|
|
5467
5582
|
auto: boolean;
|
|
5468
5583
|
threshold: number;
|
|
5469
|
-
|
|
5584
|
+
imageLoadStarted: EventEmitter<void>;
|
|
5585
|
+
imageLoaded: EventEmitter<void>;
|
|
5586
|
+
imageLoadError: EventEmitter<void>;
|
|
5470
5587
|
imgLazy: string;
|
|
5471
|
-
protected _el: ElementRef;
|
|
5472
|
-
private portalService;
|
|
5473
5588
|
private _imgEl;
|
|
5474
|
-
private
|
|
5589
|
+
private _observer;
|
|
5590
|
+
private _initialized;
|
|
5475
5591
|
constructor();
|
|
5476
5592
|
ngOnInit(): void;
|
|
5593
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
5594
|
+
ngOnDestroy(): void;
|
|
5477
5595
|
showImage(): void;
|
|
5478
|
-
private
|
|
5479
|
-
private
|
|
5596
|
+
private readonly _loadHandler;
|
|
5597
|
+
private readonly _errorHandler;
|
|
5598
|
+
private _observeCurrentImage;
|
|
5599
|
+
private _resetImage;
|
|
5600
|
+
private _disconnectObserver;
|
|
5480
5601
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageLazyDirective, never>;
|
|
5481
|
-
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>;
|
|
5602
|
+
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>;
|
|
5482
5603
|
}
|
|
5483
5604
|
|
|
5484
5605
|
declare enum IntersectionStatus {
|
|
@@ -5712,6 +5833,7 @@ declare class FillEmptySpaceDirective extends BaseDirective implements AfterView
|
|
|
5712
5833
|
private _ro;
|
|
5713
5834
|
private _rafId;
|
|
5714
5835
|
private _viewReady;
|
|
5836
|
+
private _lastAppliedSignature;
|
|
5715
5837
|
ngAfterViewInit(): void;
|
|
5716
5838
|
ngOnChanges(_changes: SimpleChanges): void;
|
|
5717
5839
|
ngOnDestroy(): void;
|
|
@@ -6101,6 +6223,65 @@ declare class ResizeHandlerDirective extends BaseDirective implements AfterViewI
|
|
|
6101
6223
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeHandlerDirective, "[resizeHandler]", never, { "fnResize": { "alias": "fnResize"; "required": false; }; }, {}, never, never, false, never>;
|
|
6102
6224
|
}
|
|
6103
6225
|
|
|
6226
|
+
type GridBreakpoint = 's' | 'm' | 'l' | 'xl';
|
|
6227
|
+
/** تعدادِ کارت در ردیف بهازای هر breakpoint (مثلِ SizeS/SizeM/SizeL/SizeXL). */
|
|
6228
|
+
interface ResponsiveColsConfig {
|
|
6229
|
+
s?: number;
|
|
6230
|
+
m?: number;
|
|
6231
|
+
l?: number;
|
|
6232
|
+
xl?: number;
|
|
6233
|
+
}
|
|
6234
|
+
/** آستانههای عرضِ کانتینر (px) برای تعیینِ breakpoint. */
|
|
6235
|
+
interface ResponsiveBreakpoints {
|
|
6236
|
+
m: number;
|
|
6237
|
+
l: number;
|
|
6238
|
+
xl: number;
|
|
6239
|
+
}
|
|
6240
|
+
/**
|
|
6241
|
+
* یک container-query دستیِ قابلِاستفادهی مجدد: عرضِ خودِ المان (نه viewport) را با
|
|
6242
|
+
* `ResizeObserver` رصد میکند و بر اساس آن، تعدادِ ستونهای گریدِ ۱۲تاییِ فاندامنتال را
|
|
6243
|
+
* محاسبه و از طریقِ `(colSpanChange)` منتشر میکند. همچنین با `exportAs` قابلِ خواندنِ
|
|
6244
|
+
* مستقیمِ `colSpan`/`breakpoint` در همان قالب است.
|
|
6245
|
+
*
|
|
6246
|
+
* نمونه:
|
|
6247
|
+
* ```html
|
|
6248
|
+
* <fd-layout-grid
|
|
6249
|
+
* [bsuResponsiveGridCols]="{ s: 1, m: 2, l: 3, xl: 4 }"
|
|
6250
|
+
* (colSpanChange)="colSpan = $event">
|
|
6251
|
+
* <div [fdLayoutGridCol]="colSpan">...</div>
|
|
6252
|
+
* </fd-layout-grid>
|
|
6253
|
+
* ```
|
|
6254
|
+
*/
|
|
6255
|
+
declare class ResponsiveGridColsDirective implements AfterViewInit, OnChanges, OnDestroy {
|
|
6256
|
+
/** تعدادِ کارت در ردیف بهازای هر breakpoint. */
|
|
6257
|
+
config: ResponsiveColsConfig | null;
|
|
6258
|
+
/** آستانهها؛ پیشفرض همراستا با گریدِ فاندامنتال. */
|
|
6259
|
+
breakpoints: ResponsiveBreakpoints;
|
|
6260
|
+
/** span مؤثرِ گریدِ ۱۲تاییِ فاندامنتال (۱..۱۲) بر اساس عرضِ کانتینر. */
|
|
6261
|
+
colSpanChange: EventEmitter<number>;
|
|
6262
|
+
/** تعدادِ ستون در ردیف (برای گریدهای غیرِ ۱۲تایی مثل CSS/Tailwind grid). */
|
|
6263
|
+
colsPerRowChange: EventEmitter<number>;
|
|
6264
|
+
/** breakpoint فعلیِ کانتینر. */
|
|
6265
|
+
breakpointChange: EventEmitter<GridBreakpoint>;
|
|
6266
|
+
breakpoint: GridBreakpoint;
|
|
6267
|
+
colSpan: number;
|
|
6268
|
+
colsPerRow: number;
|
|
6269
|
+
private _el;
|
|
6270
|
+
private _cdr;
|
|
6271
|
+
private _zone;
|
|
6272
|
+
private _ro?;
|
|
6273
|
+
ngAfterViewInit(): void;
|
|
6274
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
6275
|
+
ngOnDestroy(): void;
|
|
6276
|
+
private _width;
|
|
6277
|
+
private _resolveBreakpoint;
|
|
6278
|
+
/** تعدادِ کارت در ردیف برای این breakpoint، با fallback به breakpointهای کوچکتر. */
|
|
6279
|
+
private _colsPerRow;
|
|
6280
|
+
private _apply;
|
|
6281
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveGridColsDirective, never>;
|
|
6282
|
+
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>;
|
|
6283
|
+
}
|
|
6284
|
+
|
|
6104
6285
|
declare class SafeBottomDirective extends BaseDirective {
|
|
6105
6286
|
applyTop: boolean;
|
|
6106
6287
|
disableBottom: boolean;
|
|
@@ -6270,6 +6451,7 @@ declare class FormNewComponent extends BaseComponent implements OnInit {
|
|
|
6270
6451
|
declare class ReportContainerComponent extends BaseComponent implements OnInit {
|
|
6271
6452
|
settings: ContainerReportSetting;
|
|
6272
6453
|
loading$: Observable<boolean>;
|
|
6454
|
+
_ulvMainCtrlr: any;
|
|
6273
6455
|
protected _injector: Injector;
|
|
6274
6456
|
protected _environmentInjector: EnvironmentInjector;
|
|
6275
6457
|
private _activatedRoute;
|
|
@@ -6278,6 +6460,8 @@ declare class ReportContainerComponent extends BaseComponent implements OnInit {
|
|
|
6278
6460
|
private _loadingSource;
|
|
6279
6461
|
constructor();
|
|
6280
6462
|
ngOnInit(): void;
|
|
6463
|
+
_addUlvMainUi(): void;
|
|
6464
|
+
ReloadReport(): void;
|
|
6281
6465
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportContainerComponent, never>;
|
|
6282
6466
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReportContainerComponent, "bnrc-report-container", never, { "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, false, never>;
|
|
6283
6467
|
}
|
|
@@ -6337,7 +6521,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
|
6337
6521
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
6338
6522
|
constructor();
|
|
6339
6523
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
6340
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof
|
|
6524
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i156.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
|
|
6341
6525
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
|
|
6342
6526
|
}
|
|
6343
6527
|
|
|
@@ -6486,6 +6670,8 @@ declare class CustomRouteReuseStrategy implements RouteReuseStrategy {
|
|
|
6486
6670
|
retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle | null;
|
|
6487
6671
|
shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean;
|
|
6488
6672
|
protected _getKeyOfPath(route: ActivatedRouteSnapshot): string;
|
|
6673
|
+
private _ownPageData;
|
|
6674
|
+
private _isReuse;
|
|
6489
6675
|
}
|
|
6490
6676
|
|
|
6491
6677
|
declare class AuthGuard implements CanActivate {
|
|
@@ -6569,9 +6755,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
6569
6755
|
constructor();
|
|
6570
6756
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
6571
6757
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
6572
|
-
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
|
|
6758
|
+
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]>;
|
|
6573
6759
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
6574
6760
|
}
|
|
6575
6761
|
|
|
6576
|
-
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, 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, 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 };
|
|
6577
|
-
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, 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, 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 };
|
|
6762
|
+
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 };
|
|
6763
|
+
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 };
|