barsa-novin-ray-core 2.3.144 → 2.3.148

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
@@ -6,7 +6,7 @@ import * as i1 from '@angular/router';
6
6
  import { NavigationEnd, NavigationStart, Route, Router, ActivatedRoute, ParamMap, RouterEvent, ActivatedRouteSnapshot, Resolve, RouteReuseStrategy, DetachedRouteHandle, CanActivate, UrlTree } from '@angular/router';
7
7
  import { IconFont, ContentDensity } from '@fundamental-ngx/core';
8
8
  import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
9
- import * as i147 from '@angular/forms';
9
+ import * as i151 from '@angular/forms';
10
10
  import { ValidatorFn, FormGroup } from '@angular/forms';
11
11
  import { DBSchema } from 'idb';
12
12
  import * as i1$1 from '@angular/common';
@@ -1535,7 +1535,7 @@ declare class RemoveNewlinePipe implements PipeTransform {
1535
1535
 
1536
1536
  declare class MoValuePipe implements PipeTransform {
1537
1537
  constructor();
1538
- transform(name: string, mo: MetaobjectDataModel, caption?: boolean): string;
1538
+ transform(name: string, mo: MetaobjectDataModel, caption?: boolean): string | any;
1539
1539
  static ɵfac: i0.ɵɵFactoryDeclaration<MoValuePipe, never>;
1540
1540
  static ɵpipe: i0.ɵɵPipeDeclaration<MoValuePipe, "val", false>;
1541
1541
  }
@@ -1760,7 +1760,7 @@ interface SimpleRect {
1760
1760
  }
1761
1761
  declare function isTargetWindow(target: Element | Window): target is Window;
1762
1762
  declare function getTargetRect(target: Element | Window): SimpleRect;
1763
- declare function getFieldValue(name: string, mo: MetaobjectDataModel, caption?: boolean): string;
1763
+ declare function getFieldValue(name: string, mo: MetaobjectDataModel, caption?: boolean): string | any;
1764
1764
  declare const availablePrefixes: string[];
1765
1765
  declare function requestAnimationFramePolyfill(): typeof requestAnimationFrame;
1766
1766
  declare function ExecuteDynamicCommand(command: {
@@ -2077,8 +2077,8 @@ declare class DynamicDarkColorPipe implements PipeTransform {
2077
2077
  private cache;
2078
2078
  private darkBackground;
2079
2079
  private minContrast;
2080
- private colorParseCache;
2081
2080
  transform(styleStr: string): string;
2081
+ private getReadableTextColor;
2082
2082
  private adjustColorForDarkMode;
2083
2083
  private parseColor;
2084
2084
  private rgbArrayToHex;
@@ -2135,6 +2135,24 @@ declare class ReportActionListPipe implements PipeTransform {
2135
2135
  static ɵpipe: i0.ɵɵPipeDeclaration<ReportActionListPipe, "reportActionList", false>;
2136
2136
  }
2137
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
+
2144
+ declare class FindColumnsPipe implements PipeTransform {
2145
+ transform(columns: ReportViewColumn[], columnsToFind: string): ReportViewColumn[];
2146
+ static ɵfac: i0.ɵɵFactoryDeclaration<FindColumnsPipe, never>;
2147
+ static ɵpipe: i0.ɵɵPipeDeclaration<FindColumnsPipe, "findColumns", false>;
2148
+ }
2149
+
2150
+ declare class ExistsColumnsPipe implements PipeTransform {
2151
+ transform(columns: ReportViewColumn[], column: ReportViewColumn): ReportViewColumn[];
2152
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExistsColumnsPipe, never>;
2153
+ static ɵpipe: i0.ɵɵPipeDeclaration<ExistsColumnsPipe, "existsColumns", false>;
2154
+ }
2155
+
2138
2156
  declare class ApiService {
2139
2157
  portalLoginUrl: string;
2140
2158
  executeUrl: string;
@@ -2301,6 +2319,7 @@ declare class PortalService {
2301
2319
  loadUserPortalSetting(): void;
2302
2320
  loadServerStartupData(): Promise<Record<string, any>>;
2303
2321
  _loadServerStartupData(resolve: any, reject: any): void;
2322
+ buildNavigationParams(formpanelCtrlr: any, mo: MetaobjectDataModel, headerLayout: any, id: string, isPage: boolean): any;
2304
2323
  ShowFormPanelControl(formpanelCtrlr: any, router: Router, activatedRoute: ActivatedRoute, dialogComponent: Type<any> | null, isPage: boolean, vcr: ViewContainerRef, isReload?: boolean): void;
2305
2324
  loadSystem(id?: number): Promise<PortalDataModel>;
2306
2325
  private _addToCachePageData;
@@ -3203,6 +3222,20 @@ declare class InMemoryStorageService {
3203
3222
  static ɵprov: i0.ɵɵInjectableDeclaration<InMemoryStorageService>;
3204
3223
  }
3205
3224
 
3225
+ /**
3226
+ * Who owns vertical scroll for the current layout branch: page/root, a parent form shell (`nested`),
3227
+ * or the report/grid (`isolated`). Provide on a host (e.g. dynamic form, ULV main) so descendants inject the same instance.
3228
+ */
3229
+ type ScrollLayoutMode = 'root' | 'nested' | 'isolated';
3230
+ declare class ScrollLayoutContextHolder {
3231
+ readonly mode: Signal<ScrollLayoutMode>;
3232
+ private readonly _mode;
3233
+ constructor();
3234
+ setMode(mode: ScrollLayoutMode): void;
3235
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScrollLayoutContextHolder, never>;
3236
+ static ɵprov: i0.ɵɵInjectableDeclaration<ScrollLayoutContextHolder>;
3237
+ }
3238
+
3206
3239
  declare class ShellbarHeightService {
3207
3240
  shellbarHeight$: Observable<string>;
3208
3241
  private _dict;
@@ -3328,6 +3361,10 @@ interface AppDB extends DBSchema {
3328
3361
  key: string;
3329
3362
  value: any;
3330
3363
  };
3364
+ runtimeNavState: {
3365
+ key: string;
3366
+ value: unknown;
3367
+ };
3331
3368
  }
3332
3369
  declare class IdbService {
3333
3370
  private dbPromise;
@@ -3335,10 +3372,62 @@ declare class IdbService {
3335
3372
  get<T = any>(store: keyof AppDB, key: string): Promise<T | null>;
3336
3373
  set<T = any>(store: keyof AppDB, key: string, value: T): Promise<void>;
3337
3374
  delete(store: keyof AppDB, key: string): Promise<void>;
3375
+ getAllKeys(store: keyof AppDB): Promise<string[]>;
3376
+ clearStore(store: keyof AppDB): Promise<void>;
3338
3377
  static ɵfac: i0.ɵɵFactoryDeclaration<IdbService, never>;
3339
3378
  static ɵprov: i0.ɵɵInjectableDeclaration<IdbService>;
3340
3379
  }
3341
3380
 
3381
+ type RuntimeNavSerializationMode = 'dto' | 'hydrated';
3382
+ /** Discriminator for migrations and mixed payload kinds. */
3383
+ declare const RUNTIME_NAV_STATE_SCHEMA_V1: "report-nav-runtime/v1";
3384
+ interface RuntimeNavStateEnvelope<TPayload = unknown> {
3385
+ version: number;
3386
+ sessionId: string;
3387
+ createdAt: number;
3388
+ expiresAt?: number;
3389
+ /** e.g. report-nav-runtime/v1 � use with version for invalidation / migration. */
3390
+ schema?: string;
3391
+ serializationMode: RuntimeNavSerializationMode;
3392
+ payload: TPayload;
3393
+ }
3394
+ /** Generic navigation runtime payload; extend fields without breaking callers. */
3395
+ interface RuntimeNavPayload {
3396
+ OtherData?: {
3397
+ FieldId: string;
3398
+ IsInsideViewResult: boolean;
3399
+ LevelReportId: string;
3400
+ Mo: MetaobjectDataModel;
3401
+ };
3402
+ RuntimeState?: Record<string, unknown>;
3403
+ Context?: Record<string, unknown>;
3404
+ }
3405
+ /**
3406
+ * Stable cache key: report-scoped MO identity.
3407
+ * Future: prefix with navigationScopeId for split/compare/popup (architecture note only in v1).
3408
+ */
3409
+ declare function buildRuntimeNavStateCacheKey(reportIdSeg: string, moId: string, typeDefId: string): string;
3410
+
3411
+ declare class RuntimeNavStateCacheService {
3412
+ private readonly _idb;
3413
+ private readonly _memory;
3414
+ private readonly _sessionId;
3415
+ constructor();
3416
+ /** @internal tests / diagnostics */
3417
+ get currentSessionId(): string;
3418
+ save<T>(key: string, envelope: RuntimeNavStateEnvelope<T>): Promise<void>;
3419
+ get<T>(key: string): Promise<RuntimeNavStateEnvelope<T> | null>;
3420
+ remove(key: string): Promise<void>;
3421
+ clear(): Promise<void>;
3422
+ /** Optional contract: snapshot of keys ? serialized envelopes (for debugging). */
3423
+ getAllEntries(): Promise<Record<string, unknown>>;
3424
+ private _ensureSessionId;
3425
+ private _evictMemoryIfNeeded;
3426
+ private _purgeStaleFromIdb;
3427
+ static ɵfac: i0.ɵɵFactoryDeclaration<RuntimeNavStateCacheService, never>;
3428
+ static ɵprov: i0.ɵɵInjectableDeclaration<RuntimeNavStateCacheService>;
3429
+ }
3430
+
3342
3431
  interface PushState {
3343
3432
  bannerVisible: boolean;
3344
3433
  isSubscribed: boolean;
@@ -3382,31 +3471,11 @@ declare abstract class BaseSettingsService {
3382
3471
  protected idb: IdbService;
3383
3472
  getSetting<T>(key: string): Observable<T | null>;
3384
3473
  saveSetting<T>(key: string, value: Partial<T>): Observable<void>;
3474
+ removeSetting(key: string): Observable<void>;
3385
3475
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseSettingsService, never>;
3386
3476
  static ɵprov: i0.ɵɵInjectableDeclaration<BaseSettingsService>;
3387
3477
  }
3388
3478
 
3389
- interface CalendarConfig {
3390
- viewMode: 'daily' | 'monthly' | 'weekly';
3391
- showWeekends: boolean;
3392
- theme?: string;
3393
- }
3394
- declare class CalendarSettingsService extends BaseSettingsService {
3395
- private readonly CALENDAR_KEY_PREFIX;
3396
- private configSubject;
3397
- get config$(): Observable<CalendarConfig | null>;
3398
- /**
3399
- * بارگذاری تنظیمات و آپدیت کردن استریم
3400
- */
3401
- getSetting<CalendarConfig>(reportId: string): Observable<CalendarConfig | null>;
3402
- /**
3403
- * ذخیره تنظیمات و اطلاع‌رسانی به تمام Subscribe کننده‌ها
3404
- */
3405
- saveSetting(reportId: string, newConfig: Partial<CalendarConfig>): Observable<void>;
3406
- static ɵfac: i0.ɵɵFactoryDeclaration<CalendarSettingsService, never>;
3407
- static ɵprov: i0.ɵɵInjectableDeclaration<CalendarSettingsService>;
3408
- }
3409
-
3410
3479
  interface ITemplateEngine {
3411
3480
  render(template: string, valueResolver: (key: string) => any): string;
3412
3481
  }
@@ -3757,6 +3826,7 @@ declare class ReportBaseComponent extends BaseComponent implements OnInit, After
3757
3826
  selectedCount$: Observable<number>;
3758
3827
  gridFreeColumnSizing$: Observable<boolean>;
3759
3828
  ulvHeightSizeType$: Observable<UlvHeightSizeType>;
3829
+ isCheckList$: Observable<boolean>;
3760
3830
  protected _portalService: PortalService;
3761
3831
  protected _ulvMainService: UlvMainService;
3762
3832
  protected _visibleColumnsSource: BehaviorSubject<ReportViewColumn[]>;
@@ -3766,6 +3836,7 @@ declare class ReportBaseComponent extends BaseComponent implements OnInit, After
3766
3836
  /** Inserted by Angular inject() migration for backwards compatibility */
3767
3837
  constructor();
3768
3838
  get moDataList(): MetaobjectDataModel[];
3839
+ get isCheckList(): boolean;
3769
3840
  ngOnInit(): void;
3770
3841
  ngAfterViewInit(): void;
3771
3842
  ngOnDestroy(): void;
@@ -4027,6 +4098,57 @@ declare class BarsaApi {
4027
4098
  static get LoginFormData(): any;
4028
4099
  }
4029
4100
 
4101
+ /** Intent / merged-before-arbitration axes */
4102
+ type ReportLayoutMode = 'inline' | 'fill';
4103
+ type ReportScrollMode = 'inherit' | 'self';
4104
+ /** Partial policy from metadata, registry, or @Input */
4105
+ type ReportLayoutPolicyPartial = Partial<{
4106
+ layout: ReportLayoutMode;
4107
+ scroll: ReportScrollMode;
4108
+ }>;
4109
+ /**
4110
+ * Fully resolved policy: CSS must never see undefined semantics.
4111
+ */
4112
+ interface EffectiveReportLayoutPolicy {
4113
+ readonly layout: ReportLayoutMode;
4114
+ readonly scroll: ReportScrollMode;
4115
+ }
4116
+ /** Semantic environment for pure resolver (avoid flat flag explosion) */
4117
+ interface ContextEnvironment {
4118
+ readonly scrollContainerDepth: number;
4119
+ readonly shell?: 'page' | 'modal' | 'tab' | 'split';
4120
+ readonly viewportIsolation?: boolean;
4121
+ }
4122
+ /** Default CSS viewport wrapper class for report bodies (table, calendar, �) */
4123
+ declare const REPORT_GRID_VIEWPORT_CLASS = "report-grid-wrapper";
4124
+ /** Optional imperative hook for components that need a DOM scroll root */
4125
+ interface ScrollViewportHost {
4126
+ getScrollViewport(): HTMLElement;
4127
+ }
4128
+ interface ReportLayoutAdapter {
4129
+ readonly viewportClass: string;
4130
+ }
4131
+ declare const DEFAULT_REPORT_LAYOUT_POLICY: EffectiveReportLayoutPolicy;
4132
+ /** Per-selector defaults (extend in app code if needed). Keys match `UiReportViewBase.UiComponent.Selector`. */
4133
+ declare const REPORT_TYPE_DEFAULT_POLICIES: Readonly<Record<string, ReportLayoutPolicyPartial>>;
4134
+ declare function scrollLayoutModeToContextEnvironment(mode: ScrollLayoutMode): ContextEnvironment;
4135
+ declare function contextDefaultsFromEnvironment(env: ContextEnvironment): ReportLayoutPolicyPartial;
4136
+ /**
4137
+ * Final scroll arbitration (pure). Call after merge so registry/explicit `self` wins over nested inherit defaults.
4138
+ */
4139
+ declare function resolveFinalScroll(merged: {
4140
+ layout: ReportLayoutMode;
4141
+ scroll: ReportScrollMode;
4142
+ }, env: ContextEnvironment): ReportScrollMode;
4143
+ /**
4144
+ * Pure, framework-agnostic policy resolution. Later layers in `extraPartials` override earlier ones.
4145
+ * Order: DEFAULT, contextDefaults(env), registryDefault, ...extraPartials (each partial last-wins on its own keys).
4146
+ */
4147
+ declare function resolveReportLayoutPolicy(env: ContextEnvironment, registryDefault: ReportLayoutPolicyPartial | undefined, ...extraPartials: Array<ReportLayoutPolicyPartial | undefined>): EffectiveReportLayoutPolicy;
4148
+ declare function getReportTypeDefaultPolicy(selector: string | undefined): ReportLayoutPolicyPartial | undefined;
4149
+ /** Optional metadata path on view settings (low-code / future designer) */
4150
+ declare function extractLayoutPolicyFromView(view: UiReportViewBase | null | undefined): ReportLayoutPolicyPartial | undefined;
4151
+
4030
4152
  declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends BaseComponent implements OnInit {
4031
4153
  _reportView: boolean;
4032
4154
  _visibility: string | null;
@@ -4088,6 +4210,14 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
4088
4210
  isReportPage: boolean;
4089
4211
  ulvHeightSizeType: UlvHeightSizeType;
4090
4212
  contentHeight: number;
4213
+ alternateEditObjectColumn: string;
4214
+ disableHyperLink: boolean;
4215
+ columnsHyperLink: ReportViewColumn[];
4216
+ /**
4217
+ * Output of `resolveReportLayoutPolicy` for this report. When set, grid views should prefer
4218
+ * `.scroll` / `.layout` over inferring scroll ownership from `ScrollLayoutContextHolder` alone.
4219
+ */
4220
+ effectiveReportLayout?: EffectiveReportLayoutPolicy | null;
4091
4221
  contentDensity: ContentDensity;
4092
4222
  rtl: any;
4093
4223
  showOkCancelButtons: any;
@@ -4237,7 +4367,7 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
4237
4367
  protected _containerWidthChanged(_: number): void;
4238
4368
  protected _setRowIndicator(columns: ReportViewColumn[]): void;
4239
4369
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewBaseComponent<any>, never>;
4240
- 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>;
4370
+ 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; }; "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; }; "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>;
4241
4371
  }
4242
4372
 
4243
4373
  declare class FormPropsBaseComponent extends BaseComponent implements OnInit {
@@ -4532,6 +4662,7 @@ declare class MasterDetailsPageComponent extends PageWithFormHandlerBaseComponen
4532
4662
  ismodal: boolean;
4533
4663
  isinsideview: boolean;
4534
4664
  settings: UiMasterDetailsPageSettings;
4665
+ private readonly _scrollLayoutContext;
4535
4666
  ngOnInit(): void;
4536
4667
  ngOnDestroy(): void;
4537
4668
  static ɵfac: i0.ɵɵFactoryDeclaration<MasterDetailsPageComponent, never>;
@@ -4715,6 +4846,9 @@ declare class BaseViewPropsComponent extends BaseComponent {
4715
4846
  title: any;
4716
4847
  isChecked: any;
4717
4848
  navigationArrow: string;
4849
+ alternateEditObjectColumn: string;
4850
+ disableHyperLink: boolean;
4851
+ columnsHyperLink: ReportViewColumn[];
4718
4852
  resetWorkflowState: EventEmitter<void>;
4719
4853
  deselectAll: EventEmitter<void>;
4720
4854
  escapeKey: EventEmitter<MetaobjectDataModel>;
@@ -4747,7 +4881,7 @@ declare class BaseViewPropsComponent extends BaseComponent {
4747
4881
  }>;
4748
4882
  _trackByRow(index: number, row: MetaobjectDataModel): string;
4749
4883
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewPropsComponent, never>;
4750
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewPropsComponent, "bnrc-base-view-props", never, { "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "detailsTextFunction": { "alias": "detailsTextFunction"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "canView": { "alias": "canView"; "required": false; }; "visibility": { "alias": "visibility"; "required": false; }; "level": { "alias": "level"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "styleIndex": { "alias": "styleIndex"; "required": false; }; "parentExpanded": { "alias": "parentExpanded"; "required": false; }; "access": { "alias": "access"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "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; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "setting": { "alias": "setting"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; }, { "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "escapeKey": "escapeKey"; "rowCheck": "rowCheck"; "workflowShareButtons": "workflowShareButtons"; "rowClick": "rowClick"; "ulvCommand": "ulvCommand"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "action": "action"; "expandClick": "expandClick"; "editFormPanelValueChange": "editFormPanelValueChange"; "cartableFormClosed": "cartableFormClosed"; }, never, never, false, never>;
4884
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewPropsComponent, "bnrc-base-view-props", never, { "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "detailsTextFunction": { "alias": "detailsTextFunction"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "canView": { "alias": "canView"; "required": false; }; "visibility": { "alias": "visibility"; "required": false; }; "level": { "alias": "level"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "styleIndex": { "alias": "styleIndex"; "required": false; }; "parentExpanded": { "alias": "parentExpanded"; "required": false; }; "access": { "alias": "access"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "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; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "setting": { "alias": "setting"; "required": false; }; "parameters": { "alias": "parameters"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "alternateEditObjectColumn": { "alias": "alternateEditObjectColumn"; "required": false; }; "disableHyperLink": { "alias": "disableHyperLink"; "required": false; }; "columnsHyperLink": { "alias": "columnsHyperLink"; "required": false; }; }, { "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "escapeKey": "escapeKey"; "rowCheck": "rowCheck"; "workflowShareButtons": "workflowShareButtons"; "rowClick": "rowClick"; "ulvCommand": "ulvCommand"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "action": "action"; "expandClick": "expandClick"; "editFormPanelValueChange": "editFormPanelValueChange"; "cartableFormClosed": "cartableFormClosed"; }, never, never, false, never>;
4751
4885
  }
4752
4886
 
4753
4887
  declare class BaseViewContentPropsComponent<T extends UiReportViewBaseSetting> extends BaseViewPropsComponent {
@@ -4840,7 +4974,10 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
4840
4974
  rowNumber: string;
4841
4975
  coloringRow: boolean;
4842
4976
  noSaveInlineEditInServer: boolean;
4977
+ disableHyperLink: boolean;
4978
+ columnsHyperLink: ReportViewColumn[];
4843
4979
  rowIndicatorColor: string;
4980
+ alternateEditObjectColumn: string;
4844
4981
  maxHeightHeader: number;
4845
4982
  UlvMainCtrlr: TypeUlvMainCtrlr;
4846
4983
  fieldDict: Record<string, string>;
@@ -4936,7 +5073,7 @@ declare class BaseViewItemPropsComponent extends BaseViewPropsComponent implemen
4936
5073
  saved: boolean;
4937
5074
  }>;
4938
5075
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItemPropsComponent, never>;
4939
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewItemPropsComponent, "bnrc-base-view-item-props", never, { "checkboxComponent": { "alias": "checkboxComponent"; "required": false; }; "disableEllapsis": { "alias": "disableEllapsis"; "required": false; }; "isslider": { "alias": "isslider"; "required": false; }; "attachmentViewType": { "alias": "attachmentViewType"; "required": false; }; "dirtyColumns": { "alias": "dirtyColumns"; "required": false; }; "contextMenuOverflowText": { "alias": "contextMenuOverflowText"; "required": false; }; "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; "index": { "alias": "index"; "required": false; }; "last": { "alias": "last"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "hideDetailsText": { "alias": "hideDetailsText"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "isLastChildGroup": { "alias": "isLastChildGroup"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "rowNumber": { "alias": "rowNumber"; "required": false; }; "coloringRow": { "alias": "coloringRow"; "required": false; }; "noSaveInlineEditInServer": { "alias": "noSaveInlineEditInServer"; "required": false; }; "rowIndicatorColor": { "alias": "rowIndicatorColor"; "required": false; }; "maxHeightHeader": { "alias": "maxHeightHeader"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "serializedRelatedMo": { "alias": "serializedRelatedMo"; "required": false; }; "cartableTemplate": { "alias": "cartableTemplate"; "required": false; }; "cartableMo": { "alias": "cartableMo"; "required": false; }; "cartableWorkflowData": { "alias": "cartableWorkflowData"; "required": false; }; }, { "actionListClick": "actionListClick"; "events": "events"; }, never, never, false, never>;
5076
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewItemPropsComponent, "bnrc-base-view-item-props", never, { "checkboxComponent": { "alias": "checkboxComponent"; "required": false; }; "disableEllapsis": { "alias": "disableEllapsis"; "required": false; }; "isslider": { "alias": "isslider"; "required": false; }; "attachmentViewType": { "alias": "attachmentViewType"; "required": false; }; "dirtyColumns": { "alias": "dirtyColumns"; "required": false; }; "contextMenuOverflowText": { "alias": "contextMenuOverflowText"; "required": false; }; "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; "index": { "alias": "index"; "required": false; }; "last": { "alias": "last"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "hideDetailsText": { "alias": "hideDetailsText"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "isLastChildGroup": { "alias": "isLastChildGroup"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "rowNumber": { "alias": "rowNumber"; "required": false; }; "coloringRow": { "alias": "coloringRow"; "required": false; }; "noSaveInlineEditInServer": { "alias": "noSaveInlineEditInServer"; "required": false; }; "disableHyperLink": { "alias": "disableHyperLink"; "required": false; }; "columnsHyperLink": { "alias": "columnsHyperLink"; "required": false; }; "rowIndicatorColor": { "alias": "rowIndicatorColor"; "required": false; }; "alternateEditObjectColumn": { "alias": "alternateEditObjectColumn"; "required": false; }; "maxHeightHeader": { "alias": "maxHeightHeader"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "serializedRelatedMo": { "alias": "serializedRelatedMo"; "required": false; }; "cartableTemplate": { "alias": "cartableTemplate"; "required": false; }; "cartableMo": { "alias": "cartableMo"; "required": false; }; "cartableWorkflowData": { "alias": "cartableWorkflowData"; "required": false; }; }, { "actionListClick": "actionListClick"; "events": "events"; }, never, never, false, never>;
4940
5077
  }
4941
5078
  declare enum RowState {
4942
5079
  Clean = 0,
@@ -5262,6 +5399,7 @@ declare class RenderUlvViewerDirective extends BaseDirective implements AfterVie
5262
5399
  private _injector;
5263
5400
  private _vcr;
5264
5401
  private _cdr;
5402
+ private _renderer;
5265
5403
  ngAfterViewInit(): void;
5266
5404
  ngOnChanges(changes: SimpleChanges): void;
5267
5405
  ngOnDestroy(): void;
@@ -5335,8 +5473,8 @@ declare class UlvCommandDirective extends BaseDirective {
5335
5473
  ulvCommandHandler: any;
5336
5474
  disable: boolean;
5337
5475
  commandClick: EventEmitter<any>;
5338
- $execute: Subject<void>;
5339
- onClick(event: any): boolean;
5476
+ $execute: Subject<MouseEvent>;
5477
+ onClick(event: MouseEvent): boolean;
5340
5478
  ngOnInit(): void;
5341
5479
  static ɵfac: i0.ɵɵFactoryDeclaration<UlvCommandDirective, never>;
5342
5480
  static ɵdir: i0.ɵɵDirectiveDeclaration<UlvCommandDirective, "[ulvCommandHandler]", never, { "ulvCommandHandler": { "alias": "ulvCommandHandler"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; }, { "commandClick": "commandClick"; }, never, never, false, never>;
@@ -5401,27 +5539,64 @@ declare class EllapsisTextDirective extends BaseDirective implements AfterViewIn
5401
5539
  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>;
5402
5540
  }
5403
5541
 
5404
- declare class FillEmptySpaceDirective extends BaseDirective implements AfterViewInit {
5542
+ /**
5543
+ * Fills remaining vertical space for the host element.
5544
+ *
5545
+ * - **viewport** — page-level: uses `window.innerHeight` and offset from the top of the viewport.
5546
+ * - **container** — nested layouts: bounds from the **resolved container** (`[containerDom]` if set,
5547
+ * else nearest ancestor with `fillEmptySpace`, else `document.documentElement`).
5548
+ *
5549
+ * Vertical scroll ownership is **not** decided here; use `ScrollLayoutContextHolder` (`nested` | `isolated` | `root`)
5550
+ * from `barsa-novin-ray-core` on the page shell.
5551
+ *
5552
+ * @deprecated Do not use this directive as the primary way to **size individual reports** (grids, calendars).
5553
+ * Prefer the report layout policy / scroll shell (`resolveReportLayoutPolicy`, `report-grid-wrapper`). Filling
5554
+ * **page or shell containers** remains an appropriate use case.
5555
+ **/
5556
+ declare class FillEmptySpaceDirective extends BaseDirective implements AfterViewInit, OnChanges, OnDestroy {
5557
+ /**
5558
+ * `viewport` — fill against the browser viewport (default).
5559
+ * `container` — fill inside resolved container: optional `[containerDom]`, else nearest parent `[fillEmptySpace]`, else document root.
5560
+ */
5561
+ mode: 'viewport' | 'container';
5405
5562
  containerDom: HTMLElement;
5406
- decrement: string;
5563
+ /** CSS length string (`40px`, `2rem`) or pixel number */
5564
+ decrement: string | number;
5407
5565
  disable: boolean;
5408
5566
  height?: number;
5409
5567
  dontUseTopBound: boolean;
5410
5568
  setMinHeight: boolean;
5411
5569
  setMaxHeight: boolean;
5412
- heightChanged: EventEmitter<any>;
5413
- _height: string;
5414
- topBound: string;
5415
- oldTopBound: string;
5570
+ heightChanged: EventEmitter<void>;
5416
5571
  private _ro;
5572
+ private _rafId;
5573
+ private _viewReady;
5417
5574
  ngAfterViewInit(): void;
5575
+ ngOnChanges(_changes: SimpleChanges): void;
5418
5576
  ngOnDestroy(): void;
5419
5577
  Refresh(): void;
5420
- protected _setHeight(): void;
5421
- protected _handleResize(): void;
5422
- private _setHeightOfFormContent;
5578
+ private readonly _onWindowResize;
5579
+ private scheduleMeasure;
5580
+ private cancelScheduledMeasure;
5581
+ private syncFillWatchersAndMeasure;
5582
+ private setupFillLayoutWatchers;
5583
+ private teardownFillLayoutWatchers;
5584
+ private measureAndApply;
5585
+ /**
5586
+ * Element used for ResizeObserver and for `container` mode metrics:
5587
+ * `[containerDom]` → parent `closest('[fillEmptySpace]')` → `document.documentElement`.
5588
+ * Uses `parentElement` before `closest` so the host itself is not selected.
5589
+ */
5590
+ private getContainerElement;
5591
+ private getContainerMetrics;
5592
+ private getOffsetTop;
5593
+ private calculateAvailableHeight;
5594
+ private applyFillHeight;
5595
+ private applyFixedHeight;
5596
+ private getStyleProperty;
5597
+ private parseCssSize;
5423
5598
  static ɵfac: i0.ɵɵFactoryDeclaration<FillEmptySpaceDirective, never>;
5424
- 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>;
5599
+ 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>;
5425
5600
  }
5426
5601
 
5427
5602
  declare class FormCloseDirective extends BaseDirective implements AfterViewInit {
@@ -5784,6 +5959,29 @@ declare class SafeBottomDirective extends BaseDirective {
5784
5959
  static ɵdir: i0.ɵɵDirectiveDeclaration<SafeBottomDirective, "[safe-area]", never, { "applyTop": { "alias": "applyTop"; "required": false; }; "disableBottom": { "alias": "disableBottom"; "required": false; }; }, {}, never, never, false, never>;
5785
5960
  }
5786
5961
 
5962
+ declare class MoLinkerDirective extends BaseDirective implements OnInit {
5963
+ moLinker: i0.InputSignal<MetaobjectDataModel>;
5964
+ alternateEditObjectColumn: i0.InputSignal<string | undefined>;
5965
+ disableHyperLink: i0.InputSignal<boolean>;
5966
+ private _routingService;
5967
+ private _activatedRoute;
5968
+ private _moVal;
5969
+ private _router;
5970
+ private _localUrlTree;
5971
+ ngOnInit(): void;
5972
+ onClick(event: MouseEvent): void;
5973
+ /**
5974
+ * ساخت آدرس برای تب جدید: کاملاً مستقل از ریشه اصلی سایت (بدون relativeTo)
5975
+ */
5976
+ private buildNewTabUrl;
5977
+ /**
5978
+ * همان متد قبلی شما که روت را بر اساس ActivatedRoute فعلی می‌سازد
5979
+ */
5980
+ private buildLocalUrlTree;
5981
+ static ɵfac: i0.ɵɵFactoryDeclaration<MoLinkerDirective, never>;
5982
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MoLinkerDirective, "[moLinker]", never, { "moLinker": { "alias": "moLinker"; "required": true; "isSignal": true; }; "alternateEditObjectColumn": { "alias": "alternateEditObjectColumn"; "required": true; "isSignal": true; }; "disableHyperLink": { "alias": "disableHyperLink"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
5983
+ }
5984
+
5787
5985
  declare class PortalDynamicPageResolver {
5788
5986
  private portalService;
5789
5987
  /** Inserted by Angular inject() migration for backwards compatibility */
@@ -5865,6 +6063,32 @@ declare class ReportBreadcrumbResolver implements Resolve<any> {
5865
6063
  static ɵprov: i0.ɵɵInjectableDeclaration<ReportBreadcrumbResolver>;
5866
6064
  }
5867
6065
 
6066
+ declare abstract class EntitySettingsStore<T extends object> {
6067
+ protected abstract keyPrefix: string;
6068
+ protected settingsService: BaseSettingsService;
6069
+ private subjects;
6070
+ select$(entityId: string): Observable<T | null>;
6071
+ getSnapshot(entityId: string): T | null;
6072
+ load(entityId: string): Observable<T | null>;
6073
+ save(entityId: string, partial: Partial<T>): Observable<void>;
6074
+ replace(entityId: string, value: T): Observable<void>;
6075
+ reset(entityId: string): Observable<void>;
6076
+ destroy(entityId: string): void;
6077
+ protected getSubject(entityId: string): BehaviorSubject<T | null>;
6078
+ protected buildKey(entityId: string): string;
6079
+ }
6080
+
6081
+ interface CalendarConfig {
6082
+ viewMode: 'daily' | 'monthly' | 'weekly';
6083
+ showWeekends: boolean;
6084
+ theme?: string;
6085
+ }
6086
+ declare class CalendarSettingsStore extends EntitySettingsStore<CalendarConfig> {
6087
+ protected keyPrefix: string;
6088
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarSettingsStore, never>;
6089
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarSettingsStore>;
6090
+ }
6091
+
5868
6092
  interface FormNewSetting {
5869
6093
  MetaTypeDef: MetaobjectDataModel;
5870
6094
  MetaView: MetaobjectDataModel;
@@ -5959,7 +6183,7 @@ declare class BarsaSapUiFormPageModule extends BaseModule {
5959
6183
  /** Inserted by Angular inject() migration for backwards compatibility */
5960
6184
  constructor();
5961
6185
  static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiFormPageModule, never>;
5962
- static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i147.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
6186
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiFormPageModule, never, [typeof i1$1.CommonModule, typeof i151.FormsModule, typeof BarsaSapUiFormPageRoutingModule], never>;
5963
6187
  static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiFormPageModule>;
5964
6188
  }
5965
6189
 
@@ -5973,7 +6197,6 @@ declare class ReportEmptyPageComponent extends PageWithFormHandlerBaseComponent
5973
6197
 
5974
6198
  declare class ReportNavigatorComponent extends BaseComponent implements OnInit, OnDestroy {
5975
6199
  containerRef: ViewContainerRef;
5976
- minheight: string;
5977
6200
  loading$: Observable<boolean>;
5978
6201
  isMobile: boolean;
5979
6202
  private _activatedRoute;
@@ -5984,6 +6207,7 @@ declare class ReportNavigatorComponent extends BaseComponent implements OnInit,
5984
6207
  private _loadingSource;
5985
6208
  private _ulvMainCtrlr;
5986
6209
  private _routingService;
6210
+ private _runtimeNavCache;
5987
6211
  private _navItemParams;
5988
6212
  /** Inserted by Angular inject() migration for backwards compatibility */
5989
6213
  constructor();
@@ -5994,6 +6218,11 @@ declare class ReportNavigatorComponent extends BaseComponent implements OnInit,
5994
6218
  private _masterDetailsPage;
5995
6219
  private _setLoading;
5996
6220
  private _onSelectionAdapter_SelectionChange;
6221
+ /**
6222
+ * URL parse → cache get → merge/hydrate → finalized navItem (before renderUlvMainUi).
6223
+ */
6224
+ private _finalizeNavItemFromCache;
6225
+ private _applyCachedEnvelope;
5997
6226
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportNavigatorComponent, never>;
5998
6227
  static ɵcmp: i0.ɵɵComponentDeclaration<ReportNavigatorComponent, "bnrc-report-navigator", never, {}, {}, never, never, false, never>;
5999
6228
  }
@@ -6002,12 +6231,16 @@ type NavItemParams = {
6002
6231
  ReportId: string;
6003
6232
  ReportId2: string;
6004
6233
  isReportPage: boolean;
6234
+ /** Stable key for RuntimeNavStateCacheService when URL uses inside-view suffix. */
6235
+ cacheKey?: string;
6005
6236
  OtherData?: {
6006
6237
  FieldId: string;
6007
6238
  IsInsideViewResult: boolean;
6008
6239
  LevelReportId: string;
6009
6240
  Mo: MetaobjectDataModel;
6010
6241
  };
6242
+ RuntimeState?: Record<string, unknown>;
6243
+ Context?: Record<string, unknown>;
6011
6244
  };
6012
6245
 
6013
6246
  declare class ModalRootComponent extends BaseComponent implements OnInit, AfterViewInit {
@@ -6048,9 +6281,11 @@ declare class SplitterComponent extends BaseComponent {
6048
6281
  flex: any;
6049
6282
  elMaxWidth: any;
6050
6283
  elHeight: any;
6284
+ spliterResized: EventEmitter<string>;
6051
6285
  minWidth: any;
6052
6286
  maxWidth: any;
6053
6287
  config: any;
6288
+ elDom: HTMLElement;
6054
6289
  height: any;
6055
6290
  private _renderer;
6056
6291
  private _portalService;
@@ -6058,7 +6293,7 @@ declare class SplitterComponent extends BaseComponent {
6058
6293
  private calculateAndSetWidth;
6059
6294
  private toggleResizingState;
6060
6295
  static ɵfac: i0.ɵɵFactoryDeclaration<SplitterComponent, never>;
6061
- 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>;
6296
+ 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>;
6062
6297
  }
6063
6298
 
6064
6299
  declare const APP_VERSION: InjectionToken<string>;
@@ -6174,9 +6409,9 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
6174
6409
  constructor();
6175
6410
  static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
6176
6411
  static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
6177
- 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 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 i147.FormsModule, typeof i147.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 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]>;
6412
+ 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 FindColumnsPipe, typeof ExistsColumnsPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective, typeof MoLinkerDirective], [typeof i1$1.CommonModule, typeof BarsaNovinRayCoreRoutingModule, typeof BarsaSapUiFormPageModule, typeof ResizableModule, typeof i151.FormsModule, typeof i151.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 FindColumnsPipe, typeof ExistsColumnsPipe, typeof PlaceHolderDirective, typeof NumbersOnlyInputDirective, typeof RenderUlvViewerDirective, typeof RenderUlvPaginDirective, typeof AnchorScrollDirective, typeof ItemsRendererDirective, typeof UlvCommandDirective, typeof DynamicCommandDirective, typeof WorfkflowwChoiceCommandDirective, typeof ImageLazyDirective, typeof UntilInViewDirective, typeof IntersectionObserverDirective, typeof EllipsifyDirective, typeof TableResizerDirective, typeof ColumnResizerDirective, typeof AttrRtlDirective, typeof CopyDirective, typeof EllapsisTextDirective, typeof FillEmptySpaceDirective, typeof FormCloseDirective, typeof MobileDirective, typeof BodyClickDirective, typeof CountDownDirective, typeof RouteFormChangeDirective, typeof DynamicStyleDirective, typeof NowraptextDirective, typeof LabelmandatoryDirective, typeof AbsoluteDivBodyDirective, typeof LoadExternalFilesDirective, typeof StopPropagationDirective, typeof PreventDefaultDirective, typeof RenderUlvDirective, typeof PrintFilesDirective, typeof SaveImageDirective, typeof WebOtpDirective, typeof SplideSliderDirective, typeof DynamicRootVariableDirective, typeof HorizontalResponsiveDirective, typeof MeasureFormTitleWidthDirective, typeof OverflowTextDirective, typeof ShortcutRegisterDirective, typeof ShortcutHandlerDirective, typeof BarsaReadonlyDirective, typeof ResizeObserverDirective, typeof ColumnValueDirective, typeof ScrollToSelectedDirective, typeof ScrollPersistDirective, typeof TooltipDirective, typeof SimplebarDirective, typeof LeafletLongPressDirective, typeof ResizeHandlerDirective, typeof SafeBottomDirective, typeof MoLinkerDirective]>;
6178
6413
  static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
6179
6414
  }
6180
6415
 
6181
- 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, 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 };
6182
- 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, 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 };
6416
+ 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, 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, 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 };
6417
+ 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 };