barsa-novin-ray-core 2.3.163 → 2.3.165
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-CGp55b2N.mjs → barsa-novin-ray-core-barsa-novin-ray-core-Q1H9o6KT.mjs} +1027 -793
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-Q1H9o6KT.mjs.map +1 -0
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-BfX9Hk-R.mjs → barsa-novin-ray-core-barsa-report-page.module-DKTPWXYB.mjs} +10 -10
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-BfX9Hk-R.mjs.map → barsa-novin-ray-core-barsa-report-page.module-DKTPWXYB.mjs.map} +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +1 -1
- package/package.json +3 -3
- package/types/barsa-novin-ray-core.d.ts +120 -42
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-CGp55b2N.mjs.map +0 -1
|
@@ -646,6 +646,8 @@ interface DefaultCommandsAccess {
|
|
|
646
646
|
Refresh: boolean;
|
|
647
647
|
RemoveFromList: boolean;
|
|
648
648
|
View: boolean;
|
|
649
|
+
MoveUp?: boolean;
|
|
650
|
+
MoveDown?: boolean;
|
|
649
651
|
}
|
|
650
652
|
declare class CustomCommand {
|
|
651
653
|
Data: any;
|
|
@@ -746,9 +748,9 @@ declare class ReportViewColumn {
|
|
|
746
748
|
$IsImageOricon?: boolean;
|
|
747
749
|
}
|
|
748
750
|
declare const DefaultGridSetting: {
|
|
749
|
-
ColSettingList:
|
|
751
|
+
ColSettingList: never[];
|
|
750
752
|
AutoSizeColumns: boolean;
|
|
751
|
-
SortSettingList:
|
|
753
|
+
SortSettingList: never[];
|
|
752
754
|
Hidden: boolean;
|
|
753
755
|
};
|
|
754
756
|
declare class GridSetting {
|
|
@@ -1678,6 +1680,8 @@ declare function getDateService(logService: LogService, culture?: CultureTypes):
|
|
|
1678
1680
|
declare function getAllItemsPerChildren(item: TreeNodeObj, level: number, array: MetaobjectDataModel[], parentNode: TreeNodeObj, autoOpenLevels: number): any;
|
|
1679
1681
|
declare function setOneDepthLevel(node: any): void;
|
|
1680
1682
|
declare function isFirefox(): boolean;
|
|
1683
|
+
/** تشخیص دستگاههای iOS (iPhone/iPad/iPod، شامل iPadOS 13+ در حالت دسکتاپ). */
|
|
1684
|
+
declare function isIOS(): boolean;
|
|
1681
1685
|
declare function getImagePath(type: string, moId: string | null, fileId: string, fieldDefId?: string, size?: number, sizeH?: number): string;
|
|
1682
1686
|
declare function checkPermission(): NotificationPermission;
|
|
1683
1687
|
declare function fixUnclosedParentheses(url: any): any;
|
|
@@ -1696,6 +1700,7 @@ declare function getComponentDefined(controlUi: {
|
|
|
1696
1700
|
Selector: string;
|
|
1697
1701
|
Version?: string;
|
|
1698
1702
|
ModuleFileName?: string;
|
|
1703
|
+
IsFederatedRemote?: boolean;
|
|
1699
1704
|
}): EjrayOlgo;
|
|
1700
1705
|
declare function isSafari(): boolean;
|
|
1701
1706
|
declare function isFF(): boolean;
|
|
@@ -1704,7 +1709,7 @@ declare function getDeviceIsDesktop(): boolean;
|
|
|
1704
1709
|
declare function getDeviceIsTablet(): boolean;
|
|
1705
1710
|
declare function getDeviceIsMobile(): boolean;
|
|
1706
1711
|
declare function getControlSizeMode(el: HTMLElement, deviceSize?: 's' | 'm' | 'l' | 'xl'): AbbrevationDeviceSize;
|
|
1707
|
-
declare function formatBytes(bytes: any, decimals: number, size: 'Bytes' | 'KB' | 'MB' | 'GB' | 'TB' | 'PB' | 'EB' | 'ZB' | 'YB'): string;
|
|
1712
|
+
declare function formatBytes(bytes: any, decimals: number | undefined, size: 'Bytes' | 'KB' | 'MB' | 'GB' | 'TB' | 'PB' | 'EB' | 'ZB' | 'YB'): string;
|
|
1708
1713
|
declare function getValidExtension(validExtensions: any): string;
|
|
1709
1714
|
declare function getIcon(type: string): string;
|
|
1710
1715
|
declare function isImage(type: any): boolean;
|
|
@@ -2206,7 +2211,7 @@ declare class PortalService {
|
|
|
2206
2211
|
dictionary: {
|
|
2207
2212
|
[key: string]: BehaviorSubject<any>;
|
|
2208
2213
|
};
|
|
2209
|
-
portalDataSource: BehaviorSubject<PortalDataModel>;
|
|
2214
|
+
portalDataSource: BehaviorSubject<PortalDataModel | null>;
|
|
2210
2215
|
portalSettings$: Observable<MetaobjectDataModel>;
|
|
2211
2216
|
portalData$: Observable<PortalDataModel | null>;
|
|
2212
2217
|
deviceSize$: Observable<AbbrevationDeviceSize>;
|
|
@@ -2220,7 +2225,7 @@ declare class PortalService {
|
|
|
2220
2225
|
action: string;
|
|
2221
2226
|
moid: string;
|
|
2222
2227
|
tpid: string;
|
|
2223
|
-
}>;
|
|
2228
|
+
} | null>;
|
|
2224
2229
|
DefaultPage: PageDataModel | null | undefined;
|
|
2225
2230
|
private dcm;
|
|
2226
2231
|
private apiService;
|
|
@@ -2420,10 +2425,10 @@ declare abstract class ContainerComponent extends BaseComponent implements OnIni
|
|
|
2420
2425
|
protected _router: Router;
|
|
2421
2426
|
protected _cdr: ChangeDetectorRef;
|
|
2422
2427
|
protected _renderer2: Renderer2;
|
|
2423
|
-
protected _dialogService: string;
|
|
2424
|
-
protected _parentContainerService: ContainerService;
|
|
2425
|
-
protected _containerService: ContainerService;
|
|
2426
|
-
protected _formDialogComponent: Type<any
|
|
2428
|
+
protected _dialogService: string | null;
|
|
2429
|
+
protected _parentContainerService: ContainerService | null;
|
|
2430
|
+
protected _containerService: ContainerService | null;
|
|
2431
|
+
protected _formDialogComponent: Type<any> | null;
|
|
2427
2432
|
private _viewRef;
|
|
2428
2433
|
constructor();
|
|
2429
2434
|
get injector(): Injector;
|
|
@@ -2442,7 +2447,7 @@ declare class CustomInjector implements Injector {
|
|
|
2442
2447
|
private parentInjector;
|
|
2443
2448
|
private additionalTokens;
|
|
2444
2449
|
private activatedRoute?;
|
|
2445
|
-
constructor(parentInjector: Injector, additionalTokens: WeakMap<any, any>, activatedRoute?: ActivatedRoute);
|
|
2450
|
+
constructor(parentInjector: Injector, additionalTokens: WeakMap<any, any>, activatedRoute?: ActivatedRoute | undefined);
|
|
2446
2451
|
get<T>(token: ProviderToken<T>, notFoundValue?: T, options?: InjectOptions): T;
|
|
2447
2452
|
}
|
|
2448
2453
|
declare class DialogParams implements OnDestroy {
|
|
@@ -2684,13 +2689,14 @@ declare class UlvMainService {
|
|
|
2684
2689
|
}>;
|
|
2685
2690
|
_cartableChildsMo$: BehaviorSubject<{
|
|
2686
2691
|
[key: string]: MetaobjectDataModel;
|
|
2687
|
-
}>;
|
|
2692
|
+
} | null>;
|
|
2688
2693
|
selectedCount$: Observable<number>;
|
|
2689
2694
|
hideUlvPageTitle$: Observable<boolean>;
|
|
2690
2695
|
uiViewerSelector$: Observable<string>;
|
|
2691
2696
|
openOneClick: boolean;
|
|
2692
2697
|
private _bbbPipe;
|
|
2693
2698
|
private _apiService;
|
|
2699
|
+
private _portalService;
|
|
2694
2700
|
private _setUiViewerSelector$;
|
|
2695
2701
|
private _gridFreeColumnSizing$;
|
|
2696
2702
|
private _layoutInfoSource;
|
|
@@ -2759,6 +2765,8 @@ declare class UlvMainService {
|
|
|
2759
2765
|
private _showToolbarBorderSource;
|
|
2760
2766
|
private _viewSettingsSource;
|
|
2761
2767
|
private _parentHeightSource;
|
|
2768
|
+
private _moveUpAccessSource;
|
|
2769
|
+
private _reorderGroupbySource;
|
|
2762
2770
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
2763
2771
|
constructor();
|
|
2764
2772
|
_setPriorityAndPriorityGroup(toolbarButtons: any[]): any[];
|
|
@@ -2814,6 +2822,12 @@ declare class UlvMainService {
|
|
|
2814
2822
|
get showToolbarBorder$(): Observable<boolean>;
|
|
2815
2823
|
get parentHeight$(): Observable<number>;
|
|
2816
2824
|
get parentHeight(): number;
|
|
2825
|
+
/**
|
|
2826
|
+
* مجاز بودن تغییر ترتیب رکوردها با drag/drop. بهصورت واکنشی از سه عامل ساخته میشود:
|
|
2827
|
+
* دسترسی MoveUp، نبودِ گروهبندی، و نبودِ حالتِ ویرایش لیستی (چون در این دو حالت اندیس ردیف با اندیس آرایه یکی نیست).
|
|
2828
|
+
*/
|
|
2829
|
+
get allowRecordReorder$(): Observable<boolean>;
|
|
2830
|
+
setReorderGroupby(groupby: SortSetting[]): void;
|
|
2817
2831
|
get alternateRowMode$(): Observable<boolean>;
|
|
2818
2832
|
setAlternateRowMode(alternateRowMode: boolean): void;
|
|
2819
2833
|
setParentHeight(parentHeight: number): void;
|
|
@@ -2861,6 +2875,11 @@ declare class UlvMainService {
|
|
|
2861
2875
|
createNewInlineMo(isChecked: boolean): MetaobjectDataModel;
|
|
2862
2876
|
setLayoutInfo(layoutInfo: any): void;
|
|
2863
2877
|
destroy(): void;
|
|
2878
|
+
/**
|
|
2879
|
+
* تغییر ترتیب رکورد: source را دقیقاً بالای aboveTarget قرار میدهد.
|
|
2880
|
+
* برای بردن به انتهای لیست، aboveTargetMoId برابر null فرستاده میشود.
|
|
2881
|
+
*/
|
|
2882
|
+
changeRecordOrderAbove(sourceMoId: string, aboveTargetMoId: string | null): Promise<any>;
|
|
2864
2883
|
pageSizeChanged(pageIndex: any): void;
|
|
2865
2884
|
pageChanged(pageIndex: any): void;
|
|
2866
2885
|
reSetMoDataList(moDataList?: MetaobjectDataModel[]): void;
|
|
@@ -2888,6 +2907,7 @@ declare class UlvMainService {
|
|
|
2888
2907
|
protected _isComposite(context: any): boolean;
|
|
2889
2908
|
protected _addEventListener(context: any): void;
|
|
2890
2909
|
protected _initialize(context: any): void;
|
|
2910
|
+
protected _initAllowRecordReorder(context: any): void;
|
|
2891
2911
|
protected _initGridFreeColumnSizing(context: any): void;
|
|
2892
2912
|
protected _initCartablesFormTemplate(context: any): void;
|
|
2893
2913
|
protected _initSearchpanel(context: any): void;
|
|
@@ -3200,10 +3220,10 @@ declare class RoutingService implements OnDestroy {
|
|
|
3200
3220
|
protected readonly _activatedRoute: ActivatedRoute;
|
|
3201
3221
|
protected readonly _router: Router;
|
|
3202
3222
|
protected readonly _portalService: PortalService;
|
|
3203
|
-
protected readonly _parentRoutingService: RoutingService;
|
|
3223
|
+
protected readonly _parentRoutingService: RoutingService | null;
|
|
3204
3224
|
protected readonly _onDestroy$: Subject<void>;
|
|
3205
|
-
protected _formDialogComponent: Type<any
|
|
3206
|
-
protected _dialogService: string;
|
|
3225
|
+
protected _formDialogComponent: Type<any> | null;
|
|
3226
|
+
protected _dialogService: string | null;
|
|
3207
3227
|
protected _vcr: ViewContainerRef;
|
|
3208
3228
|
protected formpanelCtrlrId: string;
|
|
3209
3229
|
constructor();
|
|
@@ -3422,7 +3442,7 @@ interface RuntimeNavStateEnvelope<TPayload = unknown> {
|
|
|
3422
3442
|
sessionId: string;
|
|
3423
3443
|
createdAt: number;
|
|
3424
3444
|
expiresAt?: number;
|
|
3425
|
-
/** e.g. report-nav-runtime/v1
|
|
3445
|
+
/** e.g. report-nav-runtime/v1 - use with version for invalidation / migration. */
|
|
3426
3446
|
schema?: string;
|
|
3427
3447
|
serializationMode: RuntimeNavSerializationMode;
|
|
3428
3448
|
payload: TPayload;
|
|
@@ -3525,6 +3545,53 @@ declare class SimpleTemplateEngine implements ITemplateEngine {
|
|
|
3525
3545
|
}
|
|
3526
3546
|
declare const TEMPLATE_ENGINE: InjectionToken<ITemplateEngine>;
|
|
3527
3547
|
|
|
3548
|
+
/**
|
|
3549
|
+
* رجیستری سراسری کامپوننتهای سفارشی (per-xtype) — با کش سمت کلاینت (stale-while-revalidate).
|
|
3550
|
+
*
|
|
3551
|
+
* دیتای رجیستری از سرور با یک BL method گرفته میشود (متد سمت سرور:
|
|
3552
|
+
* TarahiOlgo_GetComponentRegistry که یک Dictionary<xtype, ComponentSchema> برمیگرداند)
|
|
3553
|
+
* و داخل BarsaApi.CustomUiMap نگهداری میشود تا getComponentDefined بتواند
|
|
3554
|
+
* بهصورت O(1) بخواندش.
|
|
3555
|
+
*
|
|
3556
|
+
* ترتیب اولویت انتخاب کامپوننت در getComponentDefined:
|
|
3557
|
+
* ۱) CustomUi روی خود فیلد > ۲) این رجیستری (per-xtype) > ۳) DefaultUiModule + CustomUiPrefix
|
|
3558
|
+
*
|
|
3559
|
+
* استراتژی لود (هیچکدام بوت اپ را block نمیکنند):
|
|
3560
|
+
* ۱) primeFromCache() — همگام و فوری. کشِ localStorage را میخواند و در صورت معتبر بودن
|
|
3561
|
+
* (نسخهاش با ChangeKeyVersion فعلی یکی باشد) بلافاصله روی BarsaApi.CustomUiMap میگذارد.
|
|
3562
|
+
* از دومین بار به بعدِ اجرای اپ، اولین رندر هم رجیستریِ درست را میبیند — بدون هیچ شبکهای.
|
|
3563
|
+
* ۲) refresh() — ناهمگام و fire-and-forget؛ هرگز نباید await شود. روی موفقیت هم مپِ زنده
|
|
3564
|
+
* و هم کش را آپدیت میکند. روی خطا (تایماوت، قطعی شبکه، ...) هیچچیز را پاک نمیکند —
|
|
3565
|
+
* یعنی یک خطای گذرا، رجیستریِ سالمِ قبلی (کششده یا زنده) را از بین نمیبرد.
|
|
3566
|
+
*/
|
|
3567
|
+
declare class CustomUiRegistryService {
|
|
3568
|
+
/** نام BL method سمت سرور. در صورت متفاوتبودن، همینجا تغییرش بده. */
|
|
3569
|
+
private static readonly BL_METHOD;
|
|
3570
|
+
private static readonly CACHE_KEY;
|
|
3571
|
+
private _log;
|
|
3572
|
+
private _localStorage;
|
|
3573
|
+
private _loaded;
|
|
3574
|
+
/** true اگر رجیستری در همین session با موفقیت از سرور تازه شده باشد. */
|
|
3575
|
+
get isLoaded(): boolean;
|
|
3576
|
+
/**
|
|
3577
|
+
* همگام: کشِ محلیِ معتبر را (در صورت وجود) فوری روی BarsaApi.CustomUiMap اعمال میکند.
|
|
3578
|
+
* باید همیشه قبل از اولین رندرِ فرمها صدا زده شود (مثلاً بعد از loadServerStartupData
|
|
3579
|
+
* در AppInitializer)، ولی خودش هیچ کار شبکهای انجام نمیدهد پس بوت را کند نمیکند.
|
|
3580
|
+
*/
|
|
3581
|
+
primeFromCache(): void;
|
|
3582
|
+
/**
|
|
3583
|
+
* ناهمگام و fire-and-forget. هرگز نباید توی زنجیرهی AppInitializer await شود —
|
|
3584
|
+
* اگر سرور دیر جواب بدهد یا اصلاً جواب ندهد (بدون timeout داخلی در RunBlMethodAsync)،
|
|
3585
|
+
* اپ نباید معطلش بماند؛ فقط CustomUiMap دیرتر (یا هیچوقت در آن session) تازه میشود.
|
|
3586
|
+
*/
|
|
3587
|
+
refresh(): void;
|
|
3588
|
+
private get _currentVersion();
|
|
3589
|
+
private _parse;
|
|
3590
|
+
private _persist;
|
|
3591
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomUiRegistryService, never>;
|
|
3592
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CustomUiRegistryService>;
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3528
3595
|
interface IBaseController {
|
|
3529
3596
|
init: (params?: any) => void;
|
|
3530
3597
|
}
|
|
@@ -3606,11 +3673,11 @@ declare abstract class FieldBaseComponent extends BaseComponent implements IView
|
|
|
3606
3673
|
protected _activatedRoute: ActivatedRoute;
|
|
3607
3674
|
protected _domSanitizer: DomSanitizer;
|
|
3608
3675
|
protected _dialogService: any;
|
|
3609
|
-
protected _uploadService: UploadService;
|
|
3610
|
-
protected _dateService: DateService;
|
|
3611
|
-
protected _audioRecorder: AudioRecordingService;
|
|
3612
|
-
protected _videoRecoder: VideoRecordingService;
|
|
3613
|
-
protected _columnService: ColumnService;
|
|
3676
|
+
protected _uploadService: UploadService | null;
|
|
3677
|
+
protected _dateService: DateService | null;
|
|
3678
|
+
protected _audioRecorder: AudioRecordingService | null;
|
|
3679
|
+
protected _videoRecoder: VideoRecordingService | null;
|
|
3680
|
+
protected _columnService: ColumnService | null;
|
|
3614
3681
|
private _refreshSource;
|
|
3615
3682
|
private _valueChangedSource;
|
|
3616
3683
|
private _disableChangedSource;
|
|
@@ -3816,9 +3883,9 @@ declare class ReportBaseComponent extends BaseComponent implements OnInit, After
|
|
|
3816
3883
|
pageChange: EventEmitter<number>;
|
|
3817
3884
|
pageSizeChange: EventEmitter<number>;
|
|
3818
3885
|
defaultGridSetting: {
|
|
3819
|
-
ColSettingList:
|
|
3886
|
+
ColSettingList: never[];
|
|
3820
3887
|
AutoSizeColumns: boolean;
|
|
3821
|
-
SortSettingList:
|
|
3888
|
+
SortSettingList: never[];
|
|
3822
3889
|
Hidden: boolean;
|
|
3823
3890
|
};
|
|
3824
3891
|
itemSelector: string;
|
|
@@ -4041,8 +4108,8 @@ declare class PageBaseComponent extends ContainerComponent implements AfterViewI
|
|
|
4041
4108
|
fullscreen: boolean;
|
|
4042
4109
|
pageData: PageDataModel | null;
|
|
4043
4110
|
componentsAddedToPage: boolean;
|
|
4044
|
-
protected _parentRoutingService: RoutingService;
|
|
4045
|
-
protected _routingService: RoutingService;
|
|
4111
|
+
protected _parentRoutingService: RoutingService | null;
|
|
4112
|
+
protected _routingService: RoutingService | null;
|
|
4046
4113
|
ngAfterViewInit(): void;
|
|
4047
4114
|
protected addModulesToDom(): void;
|
|
4048
4115
|
protected getData$(): Observable<PortalDataModel | null>;
|
|
@@ -4120,6 +4187,14 @@ declare const Offline: any;
|
|
|
4120
4187
|
declare const GanttChartHelper: any;
|
|
4121
4188
|
declare class BarsaApi {
|
|
4122
4189
|
static idGenerator: number;
|
|
4190
|
+
/**
|
|
4191
|
+
* رجیستری سراسری کامپوننتهای سفارشی (per-xtype) که از سرور با
|
|
4192
|
+
* BL method گرفته میشود. کلید = originalXtype (مثل 'Ui.TextArea')،
|
|
4193
|
+
* مقدار = تعریف کامپوننت (Module/Name/Selector/Version/IsFederatedRemote/...).
|
|
4194
|
+
* توسط CustomUiRegistryService در AppInitializer پر میشود و در
|
|
4195
|
+
* getComponentDefined خوانده میشود.
|
|
4196
|
+
*/
|
|
4197
|
+
static CustomUiMap: Record<string, EjrayOlgo>;
|
|
4123
4198
|
static get GanttChartHelper(): any;
|
|
4124
4199
|
static get Offline(): any;
|
|
4125
4200
|
static get Ext(): any;
|
|
@@ -4203,6 +4278,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
4203
4278
|
moDataList: any;
|
|
4204
4279
|
UlvMainCtrlr: TypeUlvMainCtrlr;
|
|
4205
4280
|
access: DefaultCommandsAccess;
|
|
4281
|
+
allowRecordReorder: boolean;
|
|
4206
4282
|
groupby: any;
|
|
4207
4283
|
selectedCount: any;
|
|
4208
4284
|
conditionalFormats: any;
|
|
@@ -4345,14 +4421,14 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
4345
4421
|
protected _columnCustomPipe: ColumnCustomComponentPipe;
|
|
4346
4422
|
protected _ulvMainService: UlvMainService;
|
|
4347
4423
|
protected _portalService: PortalService;
|
|
4348
|
-
protected _uploadService?: UploadService;
|
|
4349
|
-
protected _groupByService?: GroupByService;
|
|
4424
|
+
protected _uploadService?: UploadService | null | undefined;
|
|
4425
|
+
protected _groupByService?: GroupByService | null | undefined;
|
|
4350
4426
|
protected _containerWidth: number;
|
|
4351
4427
|
protected _firstVisible: boolean;
|
|
4352
4428
|
protected _onVisible$: Subject<void>;
|
|
4353
4429
|
protected $resize: Subject<void>;
|
|
4354
4430
|
protected _ro: ResizeObserver;
|
|
4355
|
-
protected readonly _scrollLayoutContext: ScrollLayoutContextHolder;
|
|
4431
|
+
protected readonly _scrollLayoutContext: ScrollLayoutContextHolder | null;
|
|
4356
4432
|
private _singleClicked;
|
|
4357
4433
|
get showViewButton(): boolean;
|
|
4358
4434
|
/**
|
|
@@ -4421,7 +4497,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
4421
4497
|
protected _containerWidthChanged(_: number): void;
|
|
4422
4498
|
protected _setRowIndicator(columns: ReportViewColumn[]): void;
|
|
4423
4499
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewBaseComponent<any>, never>;
|
|
4424
|
-
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; }; "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>;
|
|
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>;
|
|
4425
4501
|
}
|
|
4426
4502
|
|
|
4427
4503
|
declare class FormPropsBaseComponent extends BaseComponent implements OnInit {
|
|
@@ -4534,8 +4610,8 @@ declare class FormPageBaseComponent extends ContainerComponent implements OnInit
|
|
|
4534
4610
|
viewId: string;
|
|
4535
4611
|
};
|
|
4536
4612
|
formpanelCtrlrId: string;
|
|
4537
|
-
protected _routingService: RoutingService;
|
|
4538
|
-
protected _containerServiceParent: ContainerService;
|
|
4613
|
+
protected _routingService: RoutingService | null;
|
|
4614
|
+
protected _containerServiceParent: ContainerService | null;
|
|
4539
4615
|
ngOnInit(): void;
|
|
4540
4616
|
ngAfterViewInit(): void;
|
|
4541
4617
|
ngOnDestroy(): void;
|
|
@@ -4979,8 +5055,8 @@ declare class FormComponent extends BaseComponent implements OnInit, OnChanges,
|
|
|
4979
5055
|
protected environmentInjector: EnvironmentInjector;
|
|
4980
5056
|
protected _activatedRoute: ActivatedRoute;
|
|
4981
5057
|
protected _router: Router;
|
|
4982
|
-
protected _containerService: ContainerService;
|
|
4983
|
-
protected _routingService: RoutingService;
|
|
5058
|
+
protected _containerService: ContainerService | null;
|
|
5059
|
+
protected _routingService: RoutingService | null;
|
|
4984
5060
|
constructor();
|
|
4985
5061
|
ngOnInit(): void;
|
|
4986
5062
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -5072,9 +5148,9 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
|
|
|
5072
5148
|
protected _domSanitizer: DomSanitizer;
|
|
5073
5149
|
protected _cdr: ChangeDetectorRef;
|
|
5074
5150
|
protected _reportValuePipe: MoReportValuePipe;
|
|
5075
|
-
protected _parentFormPanelService: FormPanelService;
|
|
5076
|
-
protected _formPanelService: FormPanelService;
|
|
5077
|
-
protected _ulvMainService: UlvMainService;
|
|
5151
|
+
protected _parentFormPanelService: FormPanelService | null;
|
|
5152
|
+
protected _formPanelService: FormPanelService | null;
|
|
5153
|
+
protected _ulvMainService: UlvMainService | null;
|
|
5078
5154
|
private _saveEditedMo$;
|
|
5079
5155
|
private _formpanelValueChanged$;
|
|
5080
5156
|
private _formPanelLoaded;
|
|
@@ -5575,7 +5651,7 @@ interface ToastService {
|
|
|
5575
5651
|
declare class CopyDirective extends BaseDirective implements OnInit {
|
|
5576
5652
|
copy: string;
|
|
5577
5653
|
_inputEl: HTMLInputElement;
|
|
5578
|
-
protected _toastService: ToastService;
|
|
5654
|
+
protected _toastService: ToastService | null;
|
|
5579
5655
|
/**
|
|
5580
5656
|
*
|
|
5581
5657
|
*/
|
|
@@ -5775,7 +5851,7 @@ declare class LoadExternalFilesDirective implements OnInit {
|
|
|
5775
5851
|
}
|
|
5776
5852
|
|
|
5777
5853
|
declare class RenderUlvDirective extends BaseDirective implements AfterViewInit, OnDestroy {
|
|
5778
|
-
reportId: i0.InputSignal<string>;
|
|
5854
|
+
reportId: i0.InputSignal<string | undefined>;
|
|
5779
5855
|
component: ComponentRef<any>;
|
|
5780
5856
|
protected _injector: Injector;
|
|
5781
5857
|
protected _environmentInjector: EnvironmentInjector;
|
|
@@ -6033,7 +6109,7 @@ declare class SafeBottomDirective extends BaseDirective {
|
|
|
6033
6109
|
|
|
6034
6110
|
declare class MoLinkerDirective extends BaseDirective implements OnInit {
|
|
6035
6111
|
moLinker: i0.InputSignal<MetaobjectDataModel>;
|
|
6036
|
-
alternateEditObjectColumn: i0.InputSignal<string>;
|
|
6112
|
+
alternateEditObjectColumn: i0.InputSignal<string | undefined>;
|
|
6037
6113
|
disableHyperLink: i0.InputSignal<boolean>;
|
|
6038
6114
|
private _routingService;
|
|
6039
6115
|
private _activatedRoute;
|
|
@@ -6254,7 +6330,7 @@ declare class BarsaSapUiFormPageRoutingModule {
|
|
|
6254
6330
|
|
|
6255
6331
|
declare class BarsaSapUiFormPageModule extends BaseModule {
|
|
6256
6332
|
protected dcm: DynamicComponentService;
|
|
6257
|
-
protected dynamicComponents:
|
|
6333
|
+
protected dynamicComponents: never[];
|
|
6258
6334
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
6259
6335
|
constructor();
|
|
6260
6336
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
|
|
@@ -6433,16 +6509,18 @@ declare class ResizableComponent {
|
|
|
6433
6509
|
rtl: boolean;
|
|
6434
6510
|
widthChange: EventEmitter<void>;
|
|
6435
6511
|
widthChanging: EventEmitter<number>;
|
|
6512
|
+
widthChangeStart: EventEmitter<void>;
|
|
6436
6513
|
private _el;
|
|
6437
6514
|
private _renderer2;
|
|
6438
6515
|
onResize(width: number): void;
|
|
6439
6516
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableComponent, never>;
|
|
6440
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResizableComponent, "th[resizable]", never, { "disableResize": { "alias": "disableResize"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; }, { "widthChange": "widthChange"; "widthChanging": "widthChanging"; }, never, ["*"], false, never>;
|
|
6517
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResizableComponent, "th[resizable]", never, { "disableResize": { "alias": "disableResize"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; }, { "widthChange": "widthChange"; "widthChanging": "widthChanging"; "widthChangeStart": "widthChangeStart"; }, never, ["*"], false, never>;
|
|
6441
6518
|
}
|
|
6442
6519
|
|
|
6443
6520
|
declare class ResizableDirective {
|
|
6444
6521
|
rtl: boolean;
|
|
6445
6522
|
resizableComplete: EventEmitter<void>;
|
|
6523
|
+
resizableStart: EventEmitter<void>;
|
|
6446
6524
|
readonly resizable: Observable<number>;
|
|
6447
6525
|
private readonly documentRef;
|
|
6448
6526
|
private readonly elementRef;
|
|
@@ -6451,7 +6529,7 @@ declare class ResizableDirective {
|
|
|
6451
6529
|
*/
|
|
6452
6530
|
constructor();
|
|
6453
6531
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableDirective, never>;
|
|
6454
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableDirective, "[resizable]", never, { "rtl": { "alias": "rtl"; "required": false; }; }, { "resizableComplete": "resizableComplete"; "resizable": "resizable"; }, never, never, false, never>;
|
|
6532
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableDirective, "[resizable]", never, { "rtl": { "alias": "rtl"; "required": false; }; }, { "resizableComplete": "resizableComplete"; "resizableStart": "resizableStart"; "resizable": "resizable"; }, never, never, false, never>;
|
|
6455
6533
|
}
|
|
6456
6534
|
|
|
6457
6535
|
declare class ResizableModule {
|
|
@@ -6487,5 +6565,5 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
6487
6565
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
6488
6566
|
}
|
|
6489
6567
|
|
|
6490
|
-
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, 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, 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 };
|
|
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 };
|
|
6491
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 };
|