barsa-novin-ray-core 2.3.143 → 2.3.145

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/index.d.ts CHANGED
@@ -4,7 +4,6 @@ import { Subject, Observable, BehaviorSubject, Subscription } from 'rxjs';
4
4
  import { SafeHtml, SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
5
5
  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
- import { CdkDragDrop } from '@angular/cdk/drag-drop';
8
7
  import { IconFont, ContentDensity } from '@fundamental-ngx/core';
9
8
  import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
10
9
  import * as i148 from '@angular/forms';
@@ -37,6 +36,7 @@ declare abstract class BaseComponent implements OnInit, AfterViewInit, AfterCont
37
36
  protected _log: LogService;
38
37
  protected readonly _onDestroy$: Subject<void>;
39
38
  get el(): ElementRef;
39
+ get onDestroy$(): Observable<void>;
40
40
  ngAfterContentInit(): void;
41
41
  ngOnChanges(changes: SimpleChanges): void;
42
42
  ngOnInit(): void;
@@ -1408,70 +1408,6 @@ type InfoBarType = {
1408
1408
  handler?: (x: any) => void;
1409
1409
  icon: string;
1410
1410
  };
1411
- interface AppTileGroup extends MetaobjectDataModel {
1412
- Title: string;
1413
- Visible: boolean;
1414
- Visible$Caption: string;
1415
- Locked: boolean;
1416
- Locked$Caption: string;
1417
- OrderNumber: string;
1418
- OrderNumber$Caption: string;
1419
- Predefined: boolean;
1420
- Predefined$Caption: string;
1421
- TileGroupType: string;
1422
- TileGroupType$Caption: string;
1423
- CssStyles: string;
1424
- ItemCount2XL: string;
1425
- ItemCount2XL$Caption: string;
1426
- ItemCountXL: string;
1427
- ItemCountXL$Caption: string;
1428
- ItemCountL: string;
1429
- ItemCountL$Caption: string;
1430
- ItemCountMD: string;
1431
- ItemCountMD$Caption: string;
1432
- ItemCountSM: string;
1433
- ItemCountSM$Caption: string;
1434
- HideHeader: boolean;
1435
- HideHeader$Caption: string;
1436
- BackgroundColor: string;
1437
- IconFont: string;
1438
- IconFontName: any;
1439
- Icon: string;
1440
- IconImage: FilePictureInfoModel;
1441
- RoutePath: string;
1442
- $TypeDefCaption: string;
1443
- $HasChildren: boolean;
1444
- $Children: AppTileGroup[];
1445
- $TileSettingChanged: boolean;
1446
- $Disabledpin: boolean;
1447
- navigatorTitle: string;
1448
- navigatorVisible: boolean;
1449
- navigatorTiles: MetaobjectDataModel[];
1450
- navigatorActionLinks: any[];
1451
- $TilesLoaded: boolean;
1452
- AppTiles: MoForReportModelBase<AppTile>;
1453
- }
1454
- interface AppTile extends MetaobjectDataModel {
1455
- Visible: boolean;
1456
- Visible$Caption: string;
1457
- Locked: boolean;
1458
- Locked$Caption: string;
1459
- OrderNumber: string;
1460
- OrderNumber$Caption: string;
1461
- IsActionLink: boolean;
1462
- IsActionLink$Caption: string;
1463
- AppTileGroup: MetaobjectDataModel;
1464
- A_App_Component: EjrayOlgo;
1465
- A_App_DynamicCommand: MetaobjectDataModel;
1466
- A_App_AppKey: string;
1467
- Predefined: boolean;
1468
- Predefined$Caption: string;
1469
- App: MetaobjectDataModel;
1470
- Component: MetaobjectDataModel;
1471
- DynamicCommand: MetaobjectDataModel;
1472
- TileTitle: any;
1473
- Subtitle: any;
1474
- }
1475
1411
  type ToolbarButtonReportViewType = {
1476
1412
  id: string;
1477
1413
  text: string;
@@ -2141,8 +2077,8 @@ declare class DynamicDarkColorPipe implements PipeTransform {
2141
2077
  private cache;
2142
2078
  private darkBackground;
2143
2079
  private minContrast;
2144
- private colorParseCache;
2145
2080
  transform(styleStr: string): string;
2081
+ private getReadableTextColor;
2146
2082
  private adjustColorForDarkMode;
2147
2083
  private parseColor;
2148
2084
  private rgbArrayToHex;
@@ -2199,6 +2135,12 @@ declare class ReportActionListPipe implements PipeTransform {
2199
2135
  static ɵpipe: i0.ɵɵPipeDeclaration<ReportActionListPipe, "reportActionList", false>;
2200
2136
  }
2201
2137
 
2138
+ declare class GetCssVariableValuePipe implements PipeTransform {
2139
+ transform(cssVarName: string, removeUnit?: string, element?: HTMLElement): string | number | null;
2140
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetCssVariableValuePipe, never>;
2141
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetCssVariableValuePipe, "getCssVarValue", false>;
2142
+ }
2143
+
2202
2144
  declare class ApiService {
2203
2145
  portalLoginUrl: string;
2204
2146
  executeUrl: string;
@@ -3267,6 +3209,20 @@ declare class InMemoryStorageService {
3267
3209
  static ɵprov: i0.ɵɵInjectableDeclaration<InMemoryStorageService>;
3268
3210
  }
3269
3211
 
3212
+ /**
3213
+ * Who owns vertical scroll for the current layout branch: page/root, a parent form shell (`nested`),
3214
+ * or the report/grid (`isolated`). Provide on a host (e.g. dynamic form, ULV main) so descendants inject the same instance.
3215
+ */
3216
+ type ScrollLayoutMode = 'root' | 'nested' | 'isolated';
3217
+ declare class ScrollLayoutContextHolder {
3218
+ readonly mode: Signal<ScrollLayoutMode>;
3219
+ private readonly _mode;
3220
+ constructor();
3221
+ setMode(mode: ScrollLayoutMode): void;
3222
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScrollLayoutContextHolder, never>;
3223
+ static ɵprov: i0.ɵɵInjectableDeclaration<ScrollLayoutContextHolder>;
3224
+ }
3225
+
3270
3226
  declare class ShellbarHeightService {
3271
3227
  shellbarHeight$: Observable<string>;
3272
3228
  private _dict;
@@ -3392,6 +3348,10 @@ interface AppDB extends DBSchema {
3392
3348
  key: string;
3393
3349
  value: any;
3394
3350
  };
3351
+ runtimeNavState: {
3352
+ key: string;
3353
+ value: unknown;
3354
+ };
3395
3355
  }
3396
3356
  declare class IdbService {
3397
3357
  private dbPromise;
@@ -3399,10 +3359,62 @@ declare class IdbService {
3399
3359
  get<T = any>(store: keyof AppDB, key: string): Promise<T | null>;
3400
3360
  set<T = any>(store: keyof AppDB, key: string, value: T): Promise<void>;
3401
3361
  delete(store: keyof AppDB, key: string): Promise<void>;
3362
+ getAllKeys(store: keyof AppDB): Promise<string[]>;
3363
+ clearStore(store: keyof AppDB): Promise<void>;
3402
3364
  static ɵfac: i0.ɵɵFactoryDeclaration<IdbService, never>;
3403
3365
  static ɵprov: i0.ɵɵInjectableDeclaration<IdbService>;
3404
3366
  }
3405
3367
 
3368
+ type RuntimeNavSerializationMode = 'dto' | 'hydrated';
3369
+ /** Discriminator for migrations and mixed payload kinds. */
3370
+ declare const RUNTIME_NAV_STATE_SCHEMA_V1: "report-nav-runtime/v1";
3371
+ interface RuntimeNavStateEnvelope<TPayload = unknown> {
3372
+ version: number;
3373
+ sessionId: string;
3374
+ createdAt: number;
3375
+ expiresAt?: number;
3376
+ /** e.g. report-nav-runtime/v1 � use with version for invalidation / migration. */
3377
+ schema?: string;
3378
+ serializationMode: RuntimeNavSerializationMode;
3379
+ payload: TPayload;
3380
+ }
3381
+ /** Generic navigation runtime payload; extend fields without breaking callers. */
3382
+ interface RuntimeNavPayload {
3383
+ OtherData?: {
3384
+ FieldId: string;
3385
+ IsInsideViewResult: boolean;
3386
+ LevelReportId: string;
3387
+ Mo: MetaobjectDataModel;
3388
+ };
3389
+ RuntimeState?: Record<string, unknown>;
3390
+ Context?: Record<string, unknown>;
3391
+ }
3392
+ /**
3393
+ * Stable cache key: report-scoped MO identity.
3394
+ * Future: prefix with navigationScopeId for split/compare/popup (architecture note only in v1).
3395
+ */
3396
+ declare function buildRuntimeNavStateCacheKey(reportIdSeg: string, moId: string, typeDefId: string): string;
3397
+
3398
+ declare class RuntimeNavStateCacheService {
3399
+ private readonly _idb;
3400
+ private readonly _memory;
3401
+ private readonly _sessionId;
3402
+ constructor();
3403
+ /** @internal tests / diagnostics */
3404
+ get currentSessionId(): string;
3405
+ save<T>(key: string, envelope: RuntimeNavStateEnvelope<T>): Promise<void>;
3406
+ get<T>(key: string): Promise<RuntimeNavStateEnvelope<T> | null>;
3407
+ remove(key: string): Promise<void>;
3408
+ clear(): Promise<void>;
3409
+ /** Optional contract: snapshot of keys ? serialized envelopes (for debugging). */
3410
+ getAllEntries(): Promise<Record<string, unknown>>;
3411
+ private _ensureSessionId;
3412
+ private _evictMemoryIfNeeded;
3413
+ private _purgeStaleFromIdb;
3414
+ static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeNavStateCacheService, never>;
3415
+ static ɵprov: i0.ɵɵInjectableDeclaration<RuntimeNavStateCacheService>;
3416
+ }
3417
+
3406
3418
  interface PushState {
3407
3419
  bannerVisible: boolean;
3408
3420
  isSubscribed: boolean;
@@ -3446,31 +3458,11 @@ declare abstract class BaseSettingsService {
3446
3458
  protected idb: IdbService;
3447
3459
  getSetting<T>(key: string): Observable<T | null>;
3448
3460
  saveSetting<T>(key: string, value: Partial<T>): Observable<void>;
3461
+ removeSetting(key: string): Observable<void>;
3449
3462
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseSettingsService, never>;
3450
3463
  static ɵprov: i0.ɵɵInjectableDeclaration<BaseSettingsService>;
3451
3464
  }
3452
3465
 
3453
- interface CalendarConfig {
3454
- viewMode: 'daily' | 'monthly' | 'weekly';
3455
- showWeekends: boolean;
3456
- theme?: string;
3457
- }
3458
- declare class CalendarSettingsService extends BaseSettingsService {
3459
- private readonly CALENDAR_KEY_PREFIX;
3460
- private configSubject;
3461
- get config$(): Observable<CalendarConfig | null>;
3462
- /**
3463
- * بارگذاری تنظیمات و آپدیت کردن استریم
3464
- */
3465
- getSetting<CalendarConfig>(reportId: string): Observable<CalendarConfig | null>;
3466
- /**
3467
- * ذخیره تنظیمات و اطلاع‌رسانی به تمام Subscribe کننده‌ها
3468
- */
3469
- saveSetting(reportId: string, newConfig: Partial<CalendarConfig>): Observable<void>;
3470
- static ɵfac: i0.ɵɵFactoryDeclaration<CalendarSettingsService, never>;
3471
- static ɵprov: i0.ɵɵInjectableDeclaration<CalendarSettingsService>;
3472
- }
3473
-
3474
3466
  interface ITemplateEngine {
3475
3467
  render(template: string, valueResolver: (key: string) => any): string;
3476
3468
  }
@@ -3502,6 +3494,7 @@ interface IViewBase {
3502
3494
  controller: IBaseController;
3503
3495
  errorMessage: WritableSignal<string>;
3504
3496
  errorCode: WritableSignal<number>;
3497
+ onDestroy$: Observable<void>;
3505
3498
  ngOnInit: () => void;
3506
3499
  showError: (message: string, code: number) => void;
3507
3500
  }
@@ -4090,6 +4083,57 @@ declare class BarsaApi {
4090
4083
  static get LoginFormData(): any;
4091
4084
  }
4092
4085
 
4086
+ /** Intent / merged-before-arbitration axes */
4087
+ type ReportLayoutMode = 'inline' | 'fill';
4088
+ type ReportScrollMode = 'inherit' | 'self';
4089
+ /** Partial policy from metadata, registry, or @Input */
4090
+ type ReportLayoutPolicyPartial = Partial<{
4091
+ layout: ReportLayoutMode;
4092
+ scroll: ReportScrollMode;
4093
+ }>;
4094
+ /**
4095
+ * Fully resolved policy: CSS must never see undefined semantics.
4096
+ */
4097
+ interface EffectiveReportLayoutPolicy {
4098
+ readonly layout: ReportLayoutMode;
4099
+ readonly scroll: ReportScrollMode;
4100
+ }
4101
+ /** Semantic environment for pure resolver (avoid flat flag explosion) */
4102
+ interface ContextEnvironment {
4103
+ readonly scrollContainerDepth: number;
4104
+ readonly shell?: 'page' | 'modal' | 'tab' | 'split';
4105
+ readonly viewportIsolation?: boolean;
4106
+ }
4107
+ /** Default CSS viewport wrapper class for report bodies (table, calendar, �) */
4108
+ declare const REPORT_GRID_VIEWPORT_CLASS = "report-grid-wrapper";
4109
+ /** Optional imperative hook for components that need a DOM scroll root */
4110
+ interface ScrollViewportHost {
4111
+ getScrollViewport(): HTMLElement;
4112
+ }
4113
+ interface ReportLayoutAdapter {
4114
+ readonly viewportClass: string;
4115
+ }
4116
+ declare const DEFAULT_REPORT_LAYOUT_POLICY: EffectiveReportLayoutPolicy;
4117
+ /** Per-selector defaults (extend in app code if needed). Keys match `UiReportViewBase.UiComponent.Selector`. */
4118
+ declare const REPORT_TYPE_DEFAULT_POLICIES: Readonly<Record<string, ReportLayoutPolicyPartial>>;
4119
+ declare function scrollLayoutModeToContextEnvironment(mode: ScrollLayoutMode): ContextEnvironment;
4120
+ declare function contextDefaultsFromEnvironment(env: ContextEnvironment): ReportLayoutPolicyPartial;
4121
+ /**
4122
+ * Final scroll arbitration (pure). Call after merge so registry/explicit `self` wins over nested inherit defaults.
4123
+ */
4124
+ declare function resolveFinalScroll(merged: {
4125
+ layout: ReportLayoutMode;
4126
+ scroll: ReportScrollMode;
4127
+ }, env: ContextEnvironment): ReportScrollMode;
4128
+ /**
4129
+ * Pure, framework-agnostic policy resolution. Later layers in `extraPartials` override earlier ones.
4130
+ * Order: DEFAULT, contextDefaults(env), registryDefault, ...extraPartials (each partial last-wins on its own keys).
4131
+ */
4132
+ declare function resolveReportLayoutPolicy(env: ContextEnvironment, registryDefault: ReportLayoutPolicyPartial | undefined, ...extraPartials: Array<ReportLayoutPolicyPartial | undefined>): EffectiveReportLayoutPolicy;
4133
+ declare function getReportTypeDefaultPolicy(selector: string | undefined): ReportLayoutPolicyPartial | undefined;
4134
+ /** Optional metadata path on view settings (low-code / future designer) */
4135
+ declare function extractLayoutPolicyFromView(view: UiReportViewBase | null | undefined): ReportLayoutPolicyPartial | undefined;
4136
+
4093
4137
  declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends BaseComponent implements OnInit {
4094
4138
  _reportView: boolean;
4095
4139
  _visibility: string | null;
@@ -4151,6 +4195,11 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
4151
4195
  isReportPage: boolean;
4152
4196
  ulvHeightSizeType: UlvHeightSizeType;
4153
4197
  contentHeight: number;
4198
+ /**
4199
+ * Output of `resolveReportLayoutPolicy` for this report. When set, grid views should prefer
4200
+ * `.scroll` / `.layout` over inferring scroll ownership from `ScrollLayoutContextHolder` alone.
4201
+ */
4202
+ effectiveReportLayout?: EffectiveReportLayoutPolicy | null;
4154
4203
  contentDensity: ContentDensity;
4155
4204
  rtl: any;
4156
4205
  showOkCancelButtons: any;
@@ -4300,7 +4349,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
4300
4349
  protected _containerWidthChanged(_: number): void;
4301
4350
  protected _setRowIndicator(columns: ReportViewColumn[]): void;
4302
4351
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewBaseComponent<any>, never>;
4303
- 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; }; "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; }; "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; }; "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>;
4352
+ 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; }; "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; }; "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; }; "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>;
4304
4353
  }
4305
4354
 
4306
4355
  declare class FormPropsBaseComponent extends BaseComponent implements OnInit {
@@ -4595,6 +4644,7 @@ declare class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponen
4595
4644
  ismodal: boolean;
4596
4645
  isinsideview: boolean;
4597
4646
  settings: UiMasterDetailsPageSettings;
4647
+ private readonly _scrollLayoutContext;
4598
4648
  ngOnInit(): void;
4599
4649
  ngOnDestroy(): void;
4600
4650
  static ɵfac: i0.ɵɵFactoryDeclaration<MasterDetailsPageComponent, never>;
@@ -5117,34 +5167,6 @@ declare class DynamicLayoutComponent extends BaseDynamicComponent {
5117
5167
  static ɵcmp: i0.ɵɵComponentDeclaration<DynamicLayoutComponent, "bnrc-dynamic-layout", never, { "selector": { "alias": "selector"; "required": false; }; "module": { "alias": "module"; "required": false; }; "name": { "alias": "name"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "moduleFileName": { "alias": "moduleFileName"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "config": { "alias": "config"; "required": false; }; "maxLabelWidth": { "alias": "maxLabelWidth"; "required": false; }; "hasHorizontalText": { "alias": "hasHorizontalText"; "required": false; }; "isSearchPanel": { "alias": "isSearchPanel"; "required": false; }; }, {}, never, never, false, never>;
5118
5168
  }
5119
5169
 
5120
- declare class DynamicTileGroupComponent extends BaseDynamicComponent {
5121
- appTileGroup: MetaobjectDataModel;
5122
- tabRef: any;
5123
- stackContent: boolean;
5124
- cssStyles: string;
5125
- edit: boolean;
5126
- rtl: boolean;
5127
- isAppTileSubGroup: boolean | undefined;
5128
- deviceSize: AbbrevationDeviceSize;
5129
- isLast: boolean;
5130
- tilesDropped: EventEmitter<{
5131
- appTileGroup: MetaobjectDataModel;
5132
- event: CdkDragDrop<{
5133
- isTile: boolean;
5134
- items: MetaobjectDataModel[];
5135
- }>;
5136
- }>;
5137
- hideAppTileClick: EventEmitter<MetaobjectDataModel>;
5138
- renameAppTileClick: EventEmitter<MetaobjectDataModel>;
5139
- changeGroupAppTileClick: EventEmitter<MetaobjectDataModel>;
5140
- toggleGroup: EventEmitter<MetaobjectDataModel>;
5141
- resetGroup: EventEmitter<MetaobjectDataModel>;
5142
- deleteGroup: EventEmitter<AppTileGroup>;
5143
- ngOnChanges(changes: SimpleChanges): void;
5144
- static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTileGroupComponent, never>;
5145
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTileGroupComponent, "bnrc-dynamic-tile-group,[dynamictilegroup]", never, { "appTileGroup": { "alias": "appTileGroup"; "required": false; }; "tabRef": { "alias": "tabRef"; "required": false; }; "stackContent": { "alias": "stackContent"; "required": false; }; "cssStyles": { "alias": "cssStyles"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "isAppTileSubGroup": { "alias": "isAppTileSubGroup"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; }, { "tilesDropped": "tilesDropped"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "changeGroupAppTileClick": "changeGroupAppTileClick"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; }, never, never, false, never>;
5146
- }
5147
-
5148
5170
  declare class DynamicUlvToolbarComponent extends BaseDynamicComponent {
5149
5171
  viewSettings: GridView | Record<string, any>;
5150
5172
  allowGridColumnSort: boolean;
@@ -5353,6 +5375,7 @@ declare class RenderUlvViewerDirective extends BaseDirective implements AfterVie
5353
5375
  private _injector;
5354
5376
  private _vcr;
5355
5377
  private _cdr;
5378
+ private _renderer;
5356
5379
  ngAfterViewInit(): void;
5357
5380
  ngOnChanges(changes: SimpleChanges): void;
5358
5381
  ngOnDestroy(): void;
@@ -5492,27 +5515,64 @@ declare class EllapsisTextDirective extends BaseDirective implements AfterViewIn
5492
5515
  static ɵdir: i0.ɵɵDirectiveDeclaration<EllapsisTextDirective, "[ellapsisText]", never, { "ellapsisText": { "alias": "ellapsisText"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "disableEllapsis": { "alias": "disableEllapsis"; "required": false; }; }, { "ellapsised": "ellapsised"; }, never, never, false, never>;
5493
5516
  }
5494
5517
 
5495
- declare class FillEmptySpaceDirective extends BaseDirective implements AfterViewInit {
5518
+ /**
5519
+ * Fills remaining vertical space for the host element.
5520
+ *
5521
+ * - **viewport** — page-level: uses `window.innerHeight` and offset from the top of the viewport.
5522
+ * - **container** — nested layouts: bounds from the **resolved container** (`[containerDom]` if set,
5523
+ * else nearest ancestor with `fillEmptySpace`, else `document.documentElement`).
5524
+ *
5525
+ * Vertical scroll ownership is **not** decided here; use `ScrollLayoutContextHolder` (`nested` | `isolated` | `root`)
5526
+ * from `barsa-novin-ray-core` on the page shell.
5527
+ *
5528
+ * @deprecated Do not use this directive as the primary way to **size individual reports** (grids, calendars).
5529
+ * Prefer the report layout policy / scroll shell (`resolveReportLayoutPolicy`, `report-grid-wrapper`). Filling
5530
+ * **page or shell containers** remains an appropriate use case.
5531
+ **/
5532
+ declare class FillEmptySpaceDirective extends BaseDirective implements AfterViewInit, OnChanges, OnDestroy {
5533
+ /**
5534
+ * `viewport` — fill against the browser viewport (default).
5535
+ * `container` — fill inside resolved container: optional `[containerDom]`, else nearest parent `[fillEmptySpace]`, else document root.
5536
+ */
5537
+ mode: 'viewport' | 'container';
5496
5538
  containerDom: HTMLElement;
5497
- decrement: string;
5539
+ /** CSS length string (`40px`, `2rem`) or pixel number */
5540
+ decrement: string | number;
5498
5541
  disable: boolean;
5499
5542
  height?: number;
5500
5543
  dontUseTopBound: boolean;
5501
5544
  setMinHeight: boolean;
5502
5545
  setMaxHeight: boolean;
5503
- heightChanged: EventEmitter<any>;
5504
- _height: string;
5505
- topBound: string;
5506
- oldTopBound: string;
5546
+ heightChanged: EventEmitter<void>;
5507
5547
  private _ro;
5548
+ private _rafId;
5549
+ private _viewReady;
5508
5550
  ngAfterViewInit(): void;
5551
+ ngOnChanges(_changes: SimpleChanges): void;
5509
5552
  ngOnDestroy(): void;
5510
5553
  Refresh(): void;
5511
- protected _setHeight(): void;
5512
- protected _handleResize(): void;
5513
- private _setHeightOfFormContent;
5554
+ private readonly _onWindowResize;
5555
+ private scheduleMeasure;
5556
+ private cancelScheduledMeasure;
5557
+ private syncFillWatchersAndMeasure;
5558
+ private setupFillLayoutWatchers;
5559
+ private teardownFillLayoutWatchers;
5560
+ private measureAndApply;
5561
+ /**
5562
+ * Element used for ResizeObserver and for `container` mode metrics:
5563
+ * `[containerDom]` → parent `closest('[fillEmptySpace]')` → `document.documentElement`.
5564
+ * Uses `parentElement` before `closest` so the host itself is not selected.
5565
+ */
5566
+ private getContainerElement;
5567
+ private getContainerMetrics;
5568
+ private getOffsetTop;
5569
+ private calculateAvailableHeight;
5570
+ private applyFillHeight;
5571
+ private applyFixedHeight;
5572
+ private getStyleProperty;
5573
+ private parseCssSize;
5514
5574
  static ɵfac: i0.ɵɵFactoryDeclaration<FillEmptySpaceDirective, never>;
5515
- static ɵdir: i0.ɵɵDirectiveDeclaration<FillEmptySpaceDirective, "[fillEmptySpace]", ["fillEmptySpace"], { "containerDom": { "alias": "containerDom"; "required": false; }; "decrement": { "alias": "decrement"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dontUseTopBound": { "alias": "dontUseTopBound"; "required": false; }; "setMinHeight": { "alias": "setMinHeight"; "required": false; }; "setMaxHeight": { "alias": "setMaxHeight"; "required": false; }; }, { "heightChanged": "heightChanged"; }, never, never, false, never>;
5575
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FillEmptySpaceDirective, "[fillEmptySpace]", ["fillEmptySpace"], { "mode": { "alias": "mode"; "required": false; }; "containerDom": { "alias": "containerDom"; "required": false; }; "decrement": { "alias": "decrement"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dontUseTopBound": { "alias": "dontUseTopBound"; "required": false; }; "setMinHeight": { "alias": "setMinHeight"; "required": false; }; "setMaxHeight": { "alias": "setMaxHeight"; "required": false; }; }, { "heightChanged": "heightChanged"; }, never, never, false, never>;
5516
5576
  }
5517
5577
 
5518
5578
  declare class FormCloseDirective extends BaseDirective implements AfterViewInit {
@@ -5956,6 +6016,32 @@ declare class ReportBreadcrumbResolver implements Resolve<any> {
5956
6016
  static ɵprov: i0.ɵɵInjectableDeclaration<ReportBreadcrumbResolver>;
5957
6017
  }
5958
6018
 
6019
+ declare abstract class EntitySettingsStore<T extends object> {
6020
+ protected abstract keyPrefix: string;
6021
+ protected settingsService: BaseSettingsService;
6022
+ private subjects;
6023
+ select$(entityId: string): Observable<T | null>;
6024
+ getSnapshot(entityId: string): T | null;
6025
+ load(entityId: string): Observable<T | null>;
6026
+ save(entityId: string, partial: Partial<T>): Observable<void>;
6027
+ replace(entityId: string, value: T): Observable<void>;
6028
+ reset(entityId: string): Observable<void>;
6029
+ destroy(entityId: string): void;
6030
+ protected getSubject(entityId: string): BehaviorSubject<T | null>;
6031
+ protected buildKey(entityId: string): string;
6032
+ }
6033
+
6034
+ interface CalendarConfig {
6035
+ viewMode: 'daily' | 'monthly' | 'weekly';
6036
+ showWeekends: boolean;
6037
+ theme?: string;
6038
+ }
6039
+ declare class CalendarSettingsStore extends EntitySettingsStore<CalendarConfig> {
6040
+ protected keyPrefix: string;
6041
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarSettingsStore, never>;
6042
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarSettingsStore>;
6043
+ }
6044
+
5959
6045
  interface FormNewSetting {
5960
6046
  MetaTypeDef: MetaobjectDataModel;
5961
6047
  MetaView: MetaobjectDataModel;
@@ -6064,7 +6150,6 @@ declare class ReportEmptyPageComponent extends PageWithFormHandlerBaseComponent
6064
6150
 
6065
6151
  declare class ReportNavigatorComponent extends BaseComponent implements OnInit, OnDestroy {
6066
6152
  containerRef: ViewContainerRef;
6067
- minheight: string;
6068
6153
  loading$: Observable<boolean>;
6069
6154
  isMobile: boolean;
6070
6155
  private _activatedRoute;
@@ -6075,6 +6160,7 @@ declare class ReportNavigatorComponent extends BaseComponent implements OnInit,
6075
6160
  private _loadingSource;
6076
6161
  private _ulvMainCtrlr;
6077
6162
  private _routingService;
6163
+ private _runtimeNavCache;
6078
6164
  private _navItemParams;
6079
6165
  /** Inserted by Angular inject() migration for backwards compatibility */
6080
6166
  constructor();
@@ -6085,6 +6171,11 @@ declare class ReportNavigatorComponent extends BaseComponent implements OnInit,
6085
6171
  private _masterDetailsPage;
6086
6172
  private _setLoading;
6087
6173
  private _onSelectionAdapter_SelectionChange;
6174
+ /**
6175
+ * URL parse → cache get → merge/hydrate → finalized navItem (before renderUlvMainUi).
6176
+ */
6177
+ private _finalizeNavItemFromCache;
6178
+ private _applyCachedEnvelope;
6088
6179
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportNavigatorComponent, never>;
6089
6180
  static ɵcmp: i0.ɵɵComponentDeclaration<ReportNavigatorComponent, "bnrc-report-navigator", never, {}, {}, never, never, false, never>;
6090
6181
  }
@@ -6093,12 +6184,16 @@ type NavItemParams = {
6093
6184
  ReportId: string;
6094
6185
  ReportId2: string;
6095
6186
  isReportPage: boolean;
6187
+ /** Stable key for RuntimeNavStateCacheService when URL uses inside-view suffix. */
6188
+ cacheKey?: string;
6096
6189
  OtherData?: {
6097
6190
  FieldId: string;
6098
6191
  IsInsideViewResult: boolean;
6099
6192
  LevelReportId: string;
6100
6193
  Mo: MetaobjectDataModel;
6101
6194
  };
6195
+ RuntimeState?: Record<string, unknown>;
6196
+ Context?: Record<string, unknown>;
6102
6197
  };
6103
6198
 
6104
6199
  declare class ModalRootComponent extends BaseComponent implements OnInit, AfterViewInit {
@@ -6139,9 +6234,11 @@ declare class SplitterComponent extends BaseComponent {
6139
6234
  flex: any;
6140
6235
  elMaxWidth: any;
6141
6236
  elHeight: any;
6237
+ spliterResized: EventEmitter<string>;
6142
6238
  minWidth: any;
6143
6239
  maxWidth: any;
6144
6240
  config: any;
6241
+ elDom: HTMLElement;
6145
6242
  height: any;
6146
6243
  private _renderer;
6147
6244
  private _portalService;
@@ -6149,7 +6246,7 @@ declare class SplitterComponent extends BaseComponent {
6149
6246
  private calculateAndSetWidth;
6150
6247
  private toggleResizingState;
6151
6248
  static ɵfac: i0.ɵɵFactoryDeclaration<SplitterComponent, never>;
6152
- static ɵcmp: i0.ɵɵComponentDeclaration<SplitterComponent, "bnrc-splitter", never, { "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
6249
+ static ɵcmp: i0.ɵɵComponentDeclaration<SplitterComponent, "bnrc-splitter", never, { "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "config": { "alias": "config"; "required": false; }; "elDom": { "alias": "elDom"; "required": false; }; }, { "spliterResized": "spliterResized"; }, never, never, false, never>;
6153
6250
  }
6154
6251
 
6155
6252
  declare const APP_VERSION: InjectionToken<string>;
@@ -6265,9 +6362,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
6265
6362
  constructor();
6266
6363
  static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
6267
6364
  static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
6268
- 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 DynamicTileGroupComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PicturesByGroupIdPipe, typeof ScopedCssPipe, typeof ReportActionListPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i148.FormsModule, typeof i148.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 DynamicTileGroupComponent, typeof PushBannerComponent, typeof ReportNavigatorComponent, typeof SplitterComponent, typeof NumeralPipe, typeof CanUploadFilePipe, typeof RemoveNewlinePipe, typeof ConvertToStylePipe, typeof FilterPipe, typeof FilterTabPipe, typeof FilterStringPipe, typeof FioriIconPipe, typeof SortPipe, typeof GroupByPipe, typeof MultipleGroupByPipe, typeof MoValuePipe, typeof MoReportValuePipe, typeof HeaderFacetValuePipe, typeof PictureFieldSourcePipe, typeof TlbButtonsPipe, typeof SeperatorFixPipe, typeof MoReportValueConcatPipe, typeof ContextMenuPipe, typeof BbbTranslatePipe, typeof BarsaIconDictPipe, typeof FileInfoCountPipe, typeof ControlUiPipe, typeof VisibleValuePipe, typeof FilterToolbarControlPipe, typeof ListCountPipe, typeof TotalSummaryPipe, typeof MergeFieldsToColumnsPipe, typeof FindColumnByDbNamePipe, typeof FilterColumnsByDetailsPipe, typeof MoInfoUlvMoListPipe, typeof MoInfoUlvPagingPipe, typeof ReversePipe, typeof ColumnCustomUiPipe, typeof SanitizeTextPipe, typeof ColumnCustomComponentPipe, typeof ColumnIconPipe, typeof ColumnValuePipe, typeof RowNumberPipe, typeof ComboRowImagePipe, typeof IsExpandedNodePipe, typeof ThImageOrIconePipe, typeof FindPreviewColumnPipe, typeof ReplacePipe, typeof FilterWorkflowInMobilePipe, typeof HideColumnsInmobilePipe, typeof StringToNumberPipe, typeof ColumnValueOfParametersPipe, typeof HideAcceptCancelButtonsPipe, typeof FilterInlineActionListPipe, typeof IsImagePipe, typeof ToolbarSettingsPipe, typeof CardMediaSizePipe, typeof LabelStarTrimPipe, typeof SplitPipe, typeof DynamicDarkColorPipe, typeof ChunkArrayPipe, typeof MapToChatMessagePipe, typeof PicturesByGroupIdPipe, typeof ScopedCssPipe, typeof ReportActionListPipe, 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]>;
6365
+ 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 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 PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i148.FormsModule, typeof i148.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 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 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]>;
6269
6366
  static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
6270
6367
  }
6271
6368
 
6272
- 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, CalendarSettingsService, 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, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DefaultCommandsAccessValue, DefaultGridSetting, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, DynamicUlvPagingComponent, DynamicUlvToolbarComponent, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldBaseController, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FieldViewBase, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, FormToolbarButton, GanttChartHelper, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetAllHorizontalFromLayout94, GetContentType, 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, 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, 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, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScopedCssPipe, 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, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, 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, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, removeDynamicStyle, requestAnimationFramePolyfill, scrollToElement, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
6273
- export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarConfig, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, 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, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, ToolbarButtonReportViewType, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
6369
+ 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, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, Ext, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldBaseController, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FieldViewBase, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, 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, 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, getNewMoGridEditor, getParentHeight, getReportTypeDefaultPolicy, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, removeDynamicStyle, requestAnimationFramePolyfill, resolveFinalScroll, resolveReportLayoutPolicy, scrollLayoutModeToContextEnvironment, scrollToElement, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
6370
+ 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, 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, SortOrder, SystemSetting, TableState, ToolbarButtonReportViewType, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };