barsa-novin-ray-core 2.3.145 → 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.
@@ -4689,6 +4689,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
4689
4689
  }]
4690
4690
  }] });
4691
4691
 
4692
+ class FindColumnsPipe {
4693
+ transform(columns, columnsToFind) {
4694
+ if (!columns?.length || !columnsToFind) {
4695
+ return columns;
4696
+ }
4697
+ const arrOfColumns = columnsToFind.split(',');
4698
+ const x = columns.filter((column, _i) => arrOfColumns.indexOf(column.Caption) !== -1 || arrOfColumns.indexOf(column.Name) !== -1);
4699
+ return x;
4700
+ }
4701
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: FindColumnsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4702
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: FindColumnsPipe, isStandalone: false, name: "findColumns" }); }
4703
+ }
4704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: FindColumnsPipe, decorators: [{
4705
+ type: Pipe,
4706
+ args: [{
4707
+ name: 'findColumns',
4708
+ standalone: false
4709
+ }]
4710
+ }] });
4711
+
4712
+ class ExistsColumnsPipe {
4713
+ transform(columns, column) {
4714
+ if (!columns?.length || !column) {
4715
+ return columns;
4716
+ }
4717
+ return columns.filter((col) => col.Name === column.Name || col.Caption === column.Caption);
4718
+ }
4719
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ExistsColumnsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
4720
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: ExistsColumnsPipe, isStandalone: false, name: "existsColumns" }); }
4721
+ }
4722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ExistsColumnsPipe, decorators: [{
4723
+ type: Pipe,
4724
+ args: [{
4725
+ name: 'existsColumns',
4726
+ standalone: false
4727
+ }]
4728
+ }] });
4729
+
4692
4730
  class ApiService {
4693
4731
  constructor() {
4694
4732
  this.portalLoginUrl = `/api/auth/portal/login`;
@@ -6317,7 +6355,7 @@ function reportRoutes(authGuard = false) {
6317
6355
  return {
6318
6356
  path: 'report/:id',
6319
6357
  canActivate: authGuard ? [AuthGuard] : [],
6320
- loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-7QOR1HJT.mjs').then((m) => m.BarsaReportPageModule),
6358
+ loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-pdaEOMh7.mjs').then((m) => m.BarsaReportPageModule),
6321
6359
  resolve: {
6322
6360
  breadcrumb: ReportBreadcrumbResolver
6323
6361
  }
@@ -7077,6 +7115,24 @@ class PortalService {
7077
7115
  reject('error in get server startup data.');
7078
7116
  }, null);
7079
7117
  }
7118
+ buildNavigationParams(formpanelCtrlr, mo, headerLayout, id, isPage) {
7119
+ const breadCrumb = getHeaderValue(headerLayout?.BreadCrumb);
7120
+ const params = {
7121
+ id: mo.$State === 'New' ? '0' : mo.Id,
7122
+ tyid: mo.$TypeDefId,
7123
+ tycp: mo.$Caption ? mo.$Caption : null,
7124
+ repid: mo.$ReportId,
7125
+ vid: formpanelCtrlr?.Setting?.View?.TypeViewId,
7126
+ bc: breadCrumb ? breadCrumb : mo.$State === 'New' ? mo.$TypeDefName : mo.$Caption,
7127
+ formPanelCtrlrId: id,
7128
+ mo: mo
7129
+ };
7130
+ // اگر کامپوننت به صورت Page باز شود، فلگ isFirst هم اضافه می‌شود
7131
+ if (isPage) {
7132
+ params.isFirst = true;
7133
+ }
7134
+ return params;
7135
+ }
7080
7136
  ShowFormPanelControl(formpanelCtrlr, router, activatedRoute, dialogComponent, isPage, vcr, isReload = false) {
7081
7137
  if (!formpanelCtrlr) {
7082
7138
  console.warn('form panel controler is undefined!');
@@ -7106,10 +7162,11 @@ class PortalService {
7106
7162
  const id = getUniqueId(4);
7107
7163
  this.addFormPanelCtrlr(id, formpanelCtrlr);
7108
7164
  this.openForm$.next(); // event emit for other components to know form open
7165
+ const navigationParams = this.buildNavigationParams(formpanelCtrlr, mo, headerLayout, id, isPage);
7109
7166
  if (isModal) {
7110
7167
  if (dialogComponent) {
7111
7168
  this.dialogService.showForm(dialogComponent, {
7112
- ...queryParams,
7169
+ ...navigationParams,
7113
7170
  formpanelCtrlr
7114
7171
  }, vcr);
7115
7172
  }
@@ -7124,7 +7181,7 @@ class PortalService {
7124
7181
  'form',
7125
7182
  {
7126
7183
  outlets: {
7127
- main: ['show', { ...queryParams, formPanelCtrlrId: id, isFirst: true }]
7184
+ main: ['show', { ...navigationParams }]
7128
7185
  }
7129
7186
  }
7130
7187
  ], {
@@ -7138,7 +7195,7 @@ class PortalService {
7138
7195
  'popup',
7139
7196
  {
7140
7197
  outlets: {
7141
- main: ['show', { ...queryParams, formPanelCtrlrId: id }]
7198
+ main: ['show', { ...navigationParams }]
7142
7199
  }
7143
7200
  }
7144
7201
  ], {
@@ -9178,12 +9235,14 @@ class NotificationService {
9178
9235
  Notification.permission === 'granted');
9179
9236
  }
9180
9237
  showNotification(notificationItem, mo, uiOptions, otherOptions) {
9181
- if (notificationItem.Title && notificationItem.Title.startsWith('[') && notificationItem.Title.endsWith(']')) {
9182
- return;
9183
- }
9184
- if (notificationItem.Title && notificationItem.Title.startsWith('{') && notificationItem.Title.endsWith('}')) {
9185
- return;
9186
- }
9238
+ // if (notificationItem.Title && notificationItem.Title.startsWith('[') && notificationItem.Title.endsWith(']')) {
9239
+ // return;
9240
+ // }
9241
+ // if (notificationItem.Title && notificationItem.Title.startsWith('{') && notificationItem.Title.endsWith('}')) {
9242
+ // return;
9243
+ // } زمانی که سیستم مدیریت کارتابل جدید نباشد نوتفیکشن های قدیمی نمایش داده نمیشدند
9244
+ // فعلا کامنت شد و جایی که سیستم مدیریت کارتابل جدید دارد و کار میکند
9245
+ // باعث نمایش دوتا پاپ اپ میشود
9187
9246
  if (mo && !mo.ShowPopup) {
9188
9247
  return;
9189
9248
  }
@@ -10665,6 +10724,9 @@ class ReportBaseComponent extends BaseComponent {
10665
10724
  get moDataList() {
10666
10725
  return this._ulvMainService.moDataListSource.getValue();
10667
10726
  }
10727
+ get isCheckList() {
10728
+ return this._ulvMainService.isMultiSelect;
10729
+ }
10668
10730
  ngOnInit() {
10669
10731
  super.ngOnInit();
10670
10732
  this.rendered = true;
@@ -10680,6 +10742,7 @@ class ReportBaseComponent extends BaseComponent {
10680
10742
  this.conditionalFormats$ = this._ulvMainService.conditionalFormats$;
10681
10743
  this.cartableTemplates$ = this._ulvMainService.cartableTemplates$;
10682
10744
  this.cartableChildsMo$ = this._ulvMainService.cartableChildsMo$;
10745
+ this.isCheckList$ = this._ulvMainService.isMultiSelect$;
10683
10746
  this.title$ = this._ulvMainService.title$.pipe(pluck('text'));
10684
10747
  this.menuItems$ = this._ulvMainService.menuItems$;
10685
10748
  this.pagingSetting$ = this._ulvMainService.pagingSetting$;
@@ -10833,7 +10896,7 @@ class ReportBaseComponent extends BaseComponent {
10833
10896
  this.context.fireEvent('UserSettingChange', this.context, gridSetting);
10834
10897
  }
10835
10898
  _ulvCommandClicked(mo, index) {
10836
- this._removeCheckedAll();
10899
+ !this.isCheckList && this._removeCheckedAll();
10837
10900
  this._select(mo, index);
10838
10901
  }
10839
10902
  _checkedAll() {
@@ -11820,7 +11883,7 @@ class ReportViewBaseComponent extends BaseComponent {
11820
11883
  this.rowIndicator = Number(columns[0].MetaFieldTypeId) === 41;
11821
11884
  }
11822
11885
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
11823
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: ReportViewBaseComponent, isStandalone: false, selector: "bnrc-report-view-base", inputs: { contextView: "contextView", viewSetting: "viewSetting", allColumns: "allColumns", isCheckList: "isCheckList", simpleInlineEdit: "simpleInlineEdit", inlineEditWithoutSelection: "inlineEditWithoutSelection", hideToolbar: "hideToolbar", hideTitle: "hideTitle", toolbarButtons: "toolbarButtons", allChecked: "allChecked", moDataList: "moDataList", UlvMainCtrlr: "UlvMainCtrlr", access: "access", groupby: "groupby", selectedCount: "selectedCount", conditionalFormats: "conditionalFormats", parentHeight: "parentHeight", deviceName: "deviceName", deviceSize: "deviceSize", contextMenuItems: "contextMenuItems", columns: "columns", allowInlineEdit: "allowInlineEdit", secondaryColumns: "secondaryColumns", popin: "popin", customFieldInfo: "customFieldInfo", hasSummary: "hasSummary", layoutInfo: "layoutInfo", hasSelected: "hasSelected", hideIcon: "hideIcon", columnsCount: "columnsCount", hideOpenIcon: "hideOpenIcon", openOnClick: "openOnClick", typeDefId: "typeDefId", reportId: "reportId", listEditViewId: "listEditViewId", typeViewId: "typeViewId", extraRelation: "extraRelation", relationList: "relationList", disableResponsive: "disableResponsive", rowItem: "rowItem", mobileOrTablet: "mobileOrTablet", inDialog: "inDialog", isMultiSelect: "isMultiSelect", fullscreen: "fullscreen", hideSearchpanel: "hideSearchpanel", newInlineEditMo: "newInlineEditMo", selectedMo: "selectedMo", inlineEditMode: "inlineEditMode", onlyInlineEdit: "onlyInlineEdit", rowHoverable: "rowHoverable", groupSummary: "groupSummary", tlbButtons: "tlbButtons", formSetting: "formSetting", disableOverflowContextMenu: "disableOverflowContextMenu", rowActivable: "rowActivable", isReportPage: "isReportPage", ulvHeightSizeType: "ulvHeightSizeType", contentHeight: "contentHeight", effectiveReportLayout: "effectiveReportLayout", contentDensity: "contentDensity", rtl: "rtl", showOkCancelButtons: "showOkCancelButtons", title: "title", hasInlineDeleteButton: "hasInlineDeleteButton", hasInlineEditButton: "hasInlineEditButton", contextSetting: "contextSetting", gridFreeColumnSizing: "gridFreeColumnSizing", navigationArrow: "navigationArrow", cartableTemplates: "cartableTemplates", cartableChildsMo: "cartableChildsMo", pagingSetting: "pagingSetting", containerWidth: "containerWidth" }, outputs: { 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" }, host: { properties: { "class.report-view": "this._reportView", "style.visibility": "this._visibility" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
11886
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: ReportViewBaseComponent, isStandalone: false, selector: "bnrc-report-view-base", inputs: { contextView: "contextView", viewSetting: "viewSetting", allColumns: "allColumns", isCheckList: "isCheckList", simpleInlineEdit: "simpleInlineEdit", inlineEditWithoutSelection: "inlineEditWithoutSelection", hideToolbar: "hideToolbar", hideTitle: "hideTitle", toolbarButtons: "toolbarButtons", allChecked: "allChecked", moDataList: "moDataList", UlvMainCtrlr: "UlvMainCtrlr", access: "access", groupby: "groupby", selectedCount: "selectedCount", conditionalFormats: "conditionalFormats", parentHeight: "parentHeight", deviceName: "deviceName", deviceSize: "deviceSize", contextMenuItems: "contextMenuItems", columns: "columns", allowInlineEdit: "allowInlineEdit", secondaryColumns: "secondaryColumns", popin: "popin", customFieldInfo: "customFieldInfo", hasSummary: "hasSummary", layoutInfo: "layoutInfo", hasSelected: "hasSelected", hideIcon: "hideIcon", columnsCount: "columnsCount", hideOpenIcon: "hideOpenIcon", openOnClick: "openOnClick", typeDefId: "typeDefId", reportId: "reportId", listEditViewId: "listEditViewId", typeViewId: "typeViewId", extraRelation: "extraRelation", relationList: "relationList", disableResponsive: "disableResponsive", rowItem: "rowItem", mobileOrTablet: "mobileOrTablet", inDialog: "inDialog", isMultiSelect: "isMultiSelect", fullscreen: "fullscreen", hideSearchpanel: "hideSearchpanel", newInlineEditMo: "newInlineEditMo", selectedMo: "selectedMo", inlineEditMode: "inlineEditMode", onlyInlineEdit: "onlyInlineEdit", rowHoverable: "rowHoverable", groupSummary: "groupSummary", tlbButtons: "tlbButtons", formSetting: "formSetting", disableOverflowContextMenu: "disableOverflowContextMenu", rowActivable: "rowActivable", isReportPage: "isReportPage", ulvHeightSizeType: "ulvHeightSizeType", contentHeight: "contentHeight", alternateEditObjectColumn: "alternateEditObjectColumn", disableHyperLink: "disableHyperLink", columnsHyperLink: "columnsHyperLink", effectiveReportLayout: "effectiveReportLayout", contentDensity: "contentDensity", rtl: "rtl", showOkCancelButtons: "showOkCancelButtons", title: "title", hasInlineDeleteButton: "hasInlineDeleteButton", hasInlineEditButton: "hasInlineEditButton", contextSetting: "contextSetting", gridFreeColumnSizing: "gridFreeColumnSizing", navigationArrow: "navigationArrow", cartableTemplates: "cartableTemplates", cartableChildsMo: "cartableChildsMo", pagingSetting: "pagingSetting", containerWidth: "containerWidth" }, outputs: { 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" }, host: { properties: { "class.report-view": "this._reportView", "style.visibility": "this._visibility" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
11824
11887
  }
11825
11888
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, decorators: [{
11826
11889
  type: Component,
@@ -11952,6 +12015,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
11952
12015
  type: Input
11953
12016
  }], contentHeight: [{
11954
12017
  type: Input
12018
+ }], alternateEditObjectColumn: [{
12019
+ type: Input
12020
+ }], disableHyperLink: [{
12021
+ type: Input
12022
+ }], columnsHyperLink: [{
12023
+ type: Input
11955
12024
  }], effectiveReportLayout: [{
11956
12025
  type: Input
11957
12026
  }], contentDensity: [{
@@ -13911,7 +13980,7 @@ class BaseViewPropsComponent extends BaseComponent {
13911
13980
  return `${row.$Group ? row.$Group : row.Id}${index}`;
13912
13981
  }
13913
13982
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseViewPropsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
13914
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: BaseViewPropsComponent, isStandalone: false, selector: "bnrc-base-view-props", inputs: { detailsComponent: "detailsComponent", detailsColumns: "detailsColumns", detailsText: "detailsText", detailsTextFunction: "detailsTextFunction", moDataList: "moDataList", reportId: "reportId", allColumns: "allColumns", hideOpenIcon: "hideOpenIcon", isCheckList: "isCheckList", allChecked: "allChecked", canView: "canView", visibility: "visibility", level: "level", expanded: "expanded", styleIndex: "styleIndex", parentExpanded: "parentExpanded", access: "access", groupby: "groupby", UlvMainCtrlr: "UlvMainCtrlr", conditionalFormats: "conditionalFormats", deviceName: "deviceName", deviceSize: "deviceSize", contextMenuItems: "contextMenuItems", columns: "columns", allowInlineEdit: "allowInlineEdit", secondaryColumns: "secondaryColumns", popin: "popin", typeDefId: "typeDefId", columnsCount: "columnsCount", mobileOrTablet: "mobileOrTablet", containerWidth: "containerWidth", newInlineEditMo: "newInlineEditMo", inlineEditMode: "inlineEditMode", onlyInlineEdit: "onlyInlineEdit", rowHoverable: "rowHoverable", openOnClick: "openOnClick", tlbButtons: "tlbButtons", setting: "setting", parameters: "parameters", formSetting: "formSetting", disableOverflowContextMenu: "disableOverflowContextMenu", rowActivable: "rowActivable", contentDensity: "contentDensity", rtl: "rtl", showOkCancelButtons: "showOkCancelButtons", title: "title", isChecked: "isChecked", navigationArrow: "navigationArrow" }, outputs: { 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" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13983
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: BaseViewPropsComponent, isStandalone: false, selector: "bnrc-base-view-props", inputs: { detailsComponent: "detailsComponent", detailsColumns: "detailsColumns", detailsText: "detailsText", detailsTextFunction: "detailsTextFunction", moDataList: "moDataList", reportId: "reportId", allColumns: "allColumns", hideOpenIcon: "hideOpenIcon", isCheckList: "isCheckList", allChecked: "allChecked", canView: "canView", visibility: "visibility", level: "level", expanded: "expanded", styleIndex: "styleIndex", parentExpanded: "parentExpanded", access: "access", groupby: "groupby", UlvMainCtrlr: "UlvMainCtrlr", conditionalFormats: "conditionalFormats", deviceName: "deviceName", deviceSize: "deviceSize", contextMenuItems: "contextMenuItems", columns: "columns", allowInlineEdit: "allowInlineEdit", secondaryColumns: "secondaryColumns", popin: "popin", typeDefId: "typeDefId", columnsCount: "columnsCount", mobileOrTablet: "mobileOrTablet", containerWidth: "containerWidth", newInlineEditMo: "newInlineEditMo", inlineEditMode: "inlineEditMode", onlyInlineEdit: "onlyInlineEdit", rowHoverable: "rowHoverable", openOnClick: "openOnClick", tlbButtons: "tlbButtons", setting: "setting", parameters: "parameters", formSetting: "formSetting", disableOverflowContextMenu: "disableOverflowContextMenu", rowActivable: "rowActivable", contentDensity: "contentDensity", rtl: "rtl", showOkCancelButtons: "showOkCancelButtons", title: "title", isChecked: "isChecked", navigationArrow: "navigationArrow", alternateEditObjectColumn: "alternateEditObjectColumn", disableHyperLink: "disableHyperLink", columnsHyperLink: "columnsHyperLink" }, outputs: { 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" }, usesInheritance: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13915
13984
  }
13916
13985
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseViewPropsComponent, decorators: [{
13917
13986
  type: Component,
@@ -14017,6 +14086,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
14017
14086
  type: Input
14018
14087
  }], navigationArrow: [{
14019
14088
  type: Input
14089
+ }], alternateEditObjectColumn: [{
14090
+ type: Input
14091
+ }], disableHyperLink: [{
14092
+ type: Input
14093
+ }], columnsHyperLink: [{
14094
+ type: Input
14020
14095
  }], resetWorkflowState: [{
14021
14096
  type: Output
14022
14097
  }], deselectAll: [{
@@ -14528,7 +14603,7 @@ class BaseViewItemPropsComponent extends BaseViewPropsComponent {
14528
14603
  });
14529
14604
  }
14530
14605
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseViewItemPropsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
14531
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: BaseViewItemPropsComponent, isStandalone: false, selector: "bnrc-base-view-item-props", inputs: { checkboxComponent: "checkboxComponent", disableEllapsis: "disableEllapsis", isslider: "isslider", attachmentViewType: "attachmentViewType", dirtyColumns: "dirtyColumns", contextMenuOverflowText: "contextMenuOverflowText", detailsComponent: "detailsComponent", detailsColumns: "detailsColumns", detailsText: "detailsText", mo: "mo", moDataListCount: "moDataListCount", index: "index", last: "last", hideHeader: "hideHeader", isdirty: "isdirty", isChecked: "isChecked", hideDetailsText: "hideDetailsText", showViewButton: "showViewButton", isNewInlineMo: "isNewInlineMo", extraRelation: "extraRelation", hideOpenIcon: "hideOpenIcon", inlineEditWithoutSelection: "inlineEditWithoutSelection", inDialog: "inDialog", isMobile: "isMobile", isMultiSelect: "isMultiSelect", rowIndicator: "rowIndicator", groupSummary: "groupSummary", isLastChildGroup: "isLastChildGroup", showRowNumber: "showRowNumber", rowNumber: "rowNumber", coloringRow: "coloringRow", noSaveInlineEditInServer: "noSaveInlineEditInServer", rowIndicatorColor: "rowIndicatorColor", maxHeightHeader: "maxHeightHeader", UlvMainCtrlr: "UlvMainCtrlr", fieldDict: "fieldDict", actionList: "actionList", serializedRelatedMo: "serializedRelatedMo", cartableTemplate: "cartableTemplate", cartableMo: "cartableMo", cartableWorkflowData: "cartableWorkflowData" }, outputs: { actionListClick: "actionListClick", events: "events" }, viewQueries: [{ propertyName: "_cartableFormRef", first: true, predicate: ["cartableFormRef"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14606
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: BaseViewItemPropsComponent, isStandalone: false, selector: "bnrc-base-view-item-props", inputs: { checkboxComponent: "checkboxComponent", disableEllapsis: "disableEllapsis", isslider: "isslider", attachmentViewType: "attachmentViewType", dirtyColumns: "dirtyColumns", contextMenuOverflowText: "contextMenuOverflowText", detailsComponent: "detailsComponent", detailsColumns: "detailsColumns", detailsText: "detailsText", mo: "mo", moDataListCount: "moDataListCount", index: "index", last: "last", hideHeader: "hideHeader", isdirty: "isdirty", isChecked: "isChecked", hideDetailsText: "hideDetailsText", showViewButton: "showViewButton", isNewInlineMo: "isNewInlineMo", extraRelation: "extraRelation", hideOpenIcon: "hideOpenIcon", inlineEditWithoutSelection: "inlineEditWithoutSelection", inDialog: "inDialog", isMobile: "isMobile", isMultiSelect: "isMultiSelect", rowIndicator: "rowIndicator", groupSummary: "groupSummary", isLastChildGroup: "isLastChildGroup", showRowNumber: "showRowNumber", rowNumber: "rowNumber", coloringRow: "coloringRow", noSaveInlineEditInServer: "noSaveInlineEditInServer", disableHyperLink: "disableHyperLink", columnsHyperLink: "columnsHyperLink", rowIndicatorColor: "rowIndicatorColor", alternateEditObjectColumn: "alternateEditObjectColumn", maxHeightHeader: "maxHeightHeader", UlvMainCtrlr: "UlvMainCtrlr", fieldDict: "fieldDict", actionList: "actionList", serializedRelatedMo: "serializedRelatedMo", cartableTemplate: "cartableTemplate", cartableMo: "cartableMo", cartableWorkflowData: "cartableWorkflowData" }, outputs: { actionListClick: "actionListClick", events: "events" }, viewQueries: [{ propertyName: "_cartableFormRef", first: true, predicate: ["cartableFormRef"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14532
14607
  }
14533
14608
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseViewItemPropsComponent, decorators: [{
14534
14609
  type: Component,
@@ -14609,8 +14684,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
14609
14684
  type: Input
14610
14685
  }], noSaveInlineEditInServer: [{
14611
14686
  type: Input
14687
+ }], disableHyperLink: [{
14688
+ type: Input
14689
+ }], columnsHyperLink: [{
14690
+ type: Input
14612
14691
  }], rowIndicatorColor: [{
14613
14692
  type: Input
14693
+ }], alternateEditObjectColumn: [{
14694
+ type: Input
14614
14695
  }], maxHeightHeader: [{
14615
14696
  type: Input
14616
14697
  }], UlvMainCtrlr: [{
@@ -16276,15 +16357,15 @@ class UlvCommandDirective extends BaseDirective {
16276
16357
  setTimeout(() => {
16277
16358
  // add settimeout because we need select row before execute row
16278
16359
  // executeUlvCommandHandler(button);
16279
- this.$execute.next();
16360
+ this.$execute.next(event);
16280
16361
  });
16281
16362
  return false;
16282
16363
  }
16283
16364
  ngOnInit() {
16284
16365
  super.ngOnInit();
16285
16366
  this.$execute
16286
- .pipe(exhaustMap(() => {
16287
- executeUlvCommandHandler(this.ulvCommandHandler);
16367
+ .pipe(exhaustMap((e) => {
16368
+ executeUlvCommandHandler(this.ulvCommandHandler, e);
16288
16369
  return timer(1000); // ۱ ثانیه بلاک می‌شود
16289
16370
  }))
16290
16371
  .subscribe();
@@ -17808,6 +17889,111 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
17808
17889
  type: Input
17809
17890
  }] } });
17810
17891
 
17892
+ class MoLinkerDirective extends BaseDirective {
17893
+ constructor() {
17894
+ super(...arguments);
17895
+ this.moLinker = input.required();
17896
+ this.alternateEditObjectColumn = input.required();
17897
+ this.disableHyperLink = input(false);
17898
+ this._routingService = inject(RoutingService, { optional: true });
17899
+ this._activatedRoute = inject(ActivatedRoute);
17900
+ this._moVal = inject(MoValuePipe);
17901
+ this._router = inject(Router);
17902
+ // ذخیره درخت روت محلی برای کلیک معمولی در همین صفحه
17903
+ this._localUrlTree = null;
17904
+ }
17905
+ ngOnInit() {
17906
+ super.ngOnInit();
17907
+ if (!this._routingService) {
17908
+ return;
17909
+ }
17910
+ if (!this.disableHyperLink()) {
17911
+ this._renderer2.addClass(this._el.nativeElement, 'mo-linker');
17912
+ // ۱. ساختن روت محلی (وابسته به روت فعلی) برای کلیک‌های معمولی
17913
+ this._localUrlTree = this.buildLocalUrlTree(this._routingService.isFirstPage, this.alternateEditObjectColumn());
17914
+ // ۲. ساختن روت تب جدید (از ریشه اصلی / بدون ActivatedRoute) و ست کردن روی href
17915
+ const newTabUrl = this.buildNewTabUrl();
17916
+ if (newTabUrl) {
17917
+ // فرض بر HashLocationStrategy (دارای #) است؛ اگر پراجکت شما بدون هشتگ است، '#' + را پاک کنید
17918
+ this._renderer2.setAttribute(this._el.nativeElement, 'href', '#' + newTabUrl);
17919
+ }
17920
+ }
17921
+ }
17922
+ // گوش دادن به رویداد کلیک
17923
+ onClick(event) {
17924
+ if (this.disableHyperLink() || !this._routingService) {
17925
+ return;
17926
+ }
17927
+ // تشخیص کلیک برای تب جدید (Ctrl, Cmd, Shift یا کلیک وسط)
17928
+ const isNewTabModifier = event.ctrlKey || event.metaKey || event.shiftKey || event.button === 1;
17929
+ if (isNewTabModifier) {
17930
+ // هیچ کاری نکن! بگذار مرورگر به طور طبیعی آدرس href (یعنی روت ریشه /landingpage) را در تب جدید باز کند
17931
+ return;
17932
+ }
17933
+ // اگر کلیک معمولی بود، جلوی رفتار مرورگر (باز کردن href) را می‌گیریم
17934
+ event.preventDefault();
17935
+ // و روت محلی و داخلی خودمان را اجرا می‌کنیم
17936
+ if (this._localUrlTree) {
17937
+ this._router.navigateByUrl(this._localUrlTree);
17938
+ }
17939
+ }
17940
+ /**
17941
+ * ساخت آدرس برای تب جدید: کاملاً مستقل از ریشه اصلی سایت (بدون relativeTo)
17942
+ */
17943
+ buildNewTabUrl() {
17944
+ const mo = this.moLinker();
17945
+ const x = {
17946
+ MoId: mo.$State === 'New' ? '0' : mo.Id,
17947
+ TypeDefId: mo.$TypeDefId,
17948
+ ReportId: mo.$ReportId,
17949
+ ActionType: 'ShowForm'
17950
+ };
17951
+ // ساخت درخت روت از ریشه اصلی (مطلق)
17952
+ const tree = this._router.createUrlTree(['/landingpage/query'], {
17953
+ // اگر نیاز دارید کوئری‌پارامترهای خاصی هم به تب جدید بفرستید:
17954
+ queryParams: { actionList: JSON.stringify([x]) }
17955
+ });
17956
+ return this._router.serializeUrl(tree);
17957
+ }
17958
+ /**
17959
+ * همان متد قبلی شما که روت را بر اساس ActivatedRoute فعلی می‌سازد
17960
+ */
17961
+ buildLocalUrlTree(isPage, alternateEditObjectColumn) {
17962
+ let alternateMo;
17963
+ if (alternateEditObjectColumn) {
17964
+ alternateMo = this._moVal.transform(alternateEditObjectColumn, this.moLinker(), false);
17965
+ if (!alternateMo) {
17966
+ return null;
17967
+ }
17968
+ }
17969
+ const mo = alternateMo ?? this.moLinker();
17970
+ const navigationParams = this._portalService.buildNavigationParams(null, mo, null, '', this._routingService?.isFirstPage ?? true);
17971
+ const primarySegment = isPage ? 'form' : 'popup';
17972
+ return this._router.createUrlTree([
17973
+ primarySegment,
17974
+ {
17975
+ outlets: {
17976
+ main: ['show', navigationParams]
17977
+ }
17978
+ }
17979
+ ], {
17980
+ relativeTo: this._activatedRoute // وابستگی به روت فعلی فقط برای کلیک معمولی
17981
+ });
17982
+ }
17983
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: MoLinkerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
17984
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.6", type: MoLinkerDirective, isStandalone: false, selector: "[moLinker]", inputs: { moLinker: { classPropertyName: "moLinker", publicName: "moLinker", isSignal: true, isRequired: true, transformFunction: null }, alternateEditObjectColumn: { classPropertyName: "alternateEditObjectColumn", publicName: "alternateEditObjectColumn", isSignal: true, isRequired: true, transformFunction: null }, disableHyperLink: { classPropertyName: "disableHyperLink", publicName: "disableHyperLink", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "click": "onClick($event)" } }, usesInheritance: true, ngImport: i0 }); }
17985
+ }
17986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: MoLinkerDirective, decorators: [{
17987
+ type: Directive,
17988
+ args: [{
17989
+ selector: '[moLinker]',
17990
+ standalone: false
17991
+ }]
17992
+ }], propDecorators: { onClick: [{
17993
+ type: HostListener,
17994
+ args: ['click', ['$event']]
17995
+ }] } });
17996
+
17811
17997
  class PortalDynamicPageResolver {
17812
17998
  /** Inserted by Angular inject() migration for backwards compatibility */
17813
17999
  constructor() {
@@ -19387,7 +19573,8 @@ const directives = [
19387
19573
  SimplebarDirective,
19388
19574
  LeafletLongPressDirective,
19389
19575
  ResizeHandlerDirective,
19390
- SafeBottomDirective
19576
+ SafeBottomDirective,
19577
+ MoLinkerDirective
19391
19578
  ];
19392
19579
  const stores = [CalendarSettingsStore];
19393
19580
  const services = [
@@ -19481,7 +19668,9 @@ const pipes = [
19481
19668
  PicturesByGroupIdPipe,
19482
19669
  ScopedCssPipe,
19483
19670
  ReportActionListPipe,
19484
- GetCssVariableValuePipe
19671
+ GetCssVariableValuePipe,
19672
+ FindColumnsPipe,
19673
+ ExistsColumnsPipe
19485
19674
  ];
19486
19675
  const functionL1 = async function () {
19487
19676
  if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
@@ -19673,7 +19862,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
19673
19862
  PicturesByGroupIdPipe,
19674
19863
  ScopedCssPipe,
19675
19864
  ReportActionListPipe,
19676
- GetCssVariableValuePipe, PlaceHolderDirective,
19865
+ GetCssVariableValuePipe,
19866
+ FindColumnsPipe,
19867
+ ExistsColumnsPipe, PlaceHolderDirective,
19677
19868
  NumbersOnlyInputDirective,
19678
19869
  RenderUlvViewerDirective,
19679
19870
  RenderUlvPaginDirective,
@@ -19724,7 +19915,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
19724
19915
  SimplebarDirective,
19725
19916
  LeafletLongPressDirective,
19726
19917
  ResizeHandlerDirective,
19727
- SafeBottomDirective], imports: [CommonModule,
19918
+ SafeBottomDirective,
19919
+ MoLinkerDirective], imports: [CommonModule,
19728
19920
  BarsaNovinRayCoreRoutingModule,
19729
19921
  BarsaSapUiFormPageModule,
19730
19922
  ResizableModule,
@@ -19818,7 +20010,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
19818
20010
  PicturesByGroupIdPipe,
19819
20011
  ScopedCssPipe,
19820
20012
  ReportActionListPipe,
19821
- GetCssVariableValuePipe, PlaceHolderDirective,
20013
+ GetCssVariableValuePipe,
20014
+ FindColumnsPipe,
20015
+ ExistsColumnsPipe, PlaceHolderDirective,
19822
20016
  NumbersOnlyInputDirective,
19823
20017
  RenderUlvViewerDirective,
19824
20018
  RenderUlvPaginDirective,
@@ -19869,7 +20063,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
19869
20063
  SimplebarDirective,
19870
20064
  LeafletLongPressDirective,
19871
20065
  ResizeHandlerDirective,
19872
- SafeBottomDirective] }); }
20066
+ SafeBottomDirective,
20067
+ MoLinkerDirective] }); }
19873
20068
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
19874
20069
  BarsaNovinRayCoreRoutingModule,
19875
20070
  BarsaSapUiFormPageModule,
@@ -19899,5 +20094,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
19899
20094
  * Generated bundle index. Do not edit.
19900
20095
  */
19901
20096
 
19902
- export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, ColumnCustomComponentPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, RemoveNewlinePipe as aA, MoValuePipe as aB, FilterPipe as aC, FilterTabPipe as aD, MoReportValueConcatPipe as aE, FilterStringPipe as aF, SortPipe as aG, BbbTranslatePipe as aH, BarsaIconDictPipe as aI, FileInfoCountPipe as aJ, ControlUiPipe as aK, VisibleValuePipe as aL, FilterToolbarControlPipe as aM, MultipleGroupByPipe as aN, PictureFieldSourcePipe as aO, FioriIconPipe as aP, CanUploadFilePipe as aQ, ListCountPipe as aR, TotalSummaryPipe as aS, MergeFieldsToColumnsPipe as aT, FindColumnByDbNamePipe as aU, FilterColumnsByDetailsPipe as aV, MoInfoUlvMoListPipe as aW, ReversePipe as aX, ColumnCustomUiPipe as aY, SanitizeTextPipe as aZ, MoInfoUlvPagingPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoReportValuePipe as as, NumeralPipe as at, GroupByPipe as au, ContextMenuPipe as av, HeaderFacetValuePipe as aw, SeperatorFixPipe as ax, ConvertToStylePipe as ay, TlbButtonsPipe as az, PortalPageSidebarComponent as b, RUNTIME_NAV_STATE_SCHEMA_V1 as b$, ColumnValuePipe as b0, ColumnIconPipe as b1, RowNumberPipe as b2, ComboRowImagePipe as b3, IsExpandedNodePipe as b4, ThImageOrIconePipe as b5, FindPreviewColumnPipe as b6, ReplacePipe as b7, FilterWorkflowInMobilePipe as b8, HideColumnsInmobilePipe as b9, LogService as bA, PortalService as bB, UiService as bC, UlvMainService as bD, UploadService as bE, NetworkStatusService as bF, AudioRecordingService as bG, VideoRecordingService as bH, LocalStorageService as bI, IndexedDbService as bJ, BarsaStorageService as bK, PromptUpdateService as bL, NotificationService as bM, ServiceWorkerNotificationService as bN, ColumnService as bO, ServiceWorkerCommuncationService as bP, SaveScrollPositionService as bQ, RoutingService as bR, GroupByService as bS, LayoutMainContentService as bT, TabpageService as bU, InMemoryStorageService as bV, ScrollLayoutContextHolder as bW, ShellbarHeightService as bX, ApplicationCtrlrService as bY, PushCheckService as bZ, IdbService as b_, StringToNumberPipe as ba, ColumnValueOfParametersPipe as bb, HideAcceptCancelButtonsPipe as bc, FilterInlineActionListPipe as bd, IsImagePipe as be, ToolbarSettingsPipe as bf, CardMediaSizePipe as bg, LabelStarTrimPipe as bh, SplitPipe as bi, DynamicDarkColorPipe as bj, ChunkArrayPipe as bk, MapToChatMessagePipe as bl, PicturesByGroupIdPipe as bm, ScopedCssPipe as bn, ReportActionListPipe as bo, GetCssVariableValuePipe as bp, ApiService as bq, BreadcrumbService as br, CustomInjector as bs, DialogParams as bt, BarsaDialogService as bu, FormPanelService as bv, FormService as bw, ContainerService as bx, HorizontalLayoutService as by, LayoutService as bz, BaseDynamicComponent as c, MetaobjectDataModel as c$, buildRuntimeNavStateCacheKey as c0, RuntimeNavStateCacheService as c1, PushNotificationService as c2, CardViewService as c3, BaseSettingsService as c4, SimpleTemplateEngine as c5, TEMPLATE_ENGINE as c6, PortalDynamicPageResolver as c7, PortalFormPageResolver as c8, PortalPageResolver as c9, NOTIFICATAION_POPUP_SERVER as cA, TOAST_SERVICE as cB, NOTIFICATION_WEBWORKER_FACTORY as cC, GeneralControlInfoModel as cD, StringControlInfoModel as cE, RichStringControlInfoModel as cF, NumberControlInfoModel as cG, FilePictureInfoModel as cH, FileControlInfoModel as cI, CommandControlInfoModel as cJ, IconControlInfoModel as cK, PictureFileControlInfoModel as cL, GaugeControlInfoModel as cM, RelationListControlInfoModel as cN, HistoryControlInfoModel as cO, RabetehAkseTakiListiControlInfoModel as cP, RelatedReportControlInfoModel as cQ, CodeEditorControlInfoModel as cR, EnumControlInfoModel as cS, RowDataOption as cT, DateTimeControlInfoModel as cU, BoolControlInfoModel as cV, CalculateControlInfoModel as cW, SubformControlInfoModel as cX, LinearListControlInfoModel as cY, ListRelationModel as cZ, SingleRelationControlInfoModel as c_, PortalReportPageResolver as ca, TileGroupBreadcrumResolver as cb, LoginSettingsResolver as cc, ReportBreadcrumbResolver as cd, DateService as ce, DateHijriService as cf, DateMiladiService as cg, DateShamsiService as ch, EntitySettingsStore as ci, CalendarSettingsStore as cj, FormNewComponent as ck, ReportContainerComponent as cl, FormComponent as cm, FieldUiComponent as cn, BarsaSapUiFormPageModule as co, ReportNavigatorComponent as cp, BaseController as cq, FieldBaseController as cr, ViewBase as cs, ModalRootComponent as ct, ButtonLoadingComponent as cu, UnlimitSessionComponent as cv, SplitterComponent as cw, APP_VERSION as cx, DIALOG_SERVICE as cy, FORM_DIALOG_COMPONENT as cz, DynamicFormComponent as d, getLabelWidth as d$, MoForReportModelBase as d0, MoForReportModel as d1, ReportBaseInfo as d2, FormToolbarButton as d3, ReportExtraInfo as d4, MetaobjectRelationModel as d5, FieldInfoTypeEnum as d6, BaseReportModel as d7, DefaultCommandsAccessValue as d8, CustomCommand as d9, PageBaseComponent as dA, NumberBaseComponent as dB, FilesValidationHelper as dC, BarsaApi as dD, ReportViewBaseComponent as dE, FormPropsBaseComponent as dF, LinearListHelper as dG, PageWithFormHandlerBaseComponent as dH, FormPageBaseComponent as dI, FormPageComponent as dJ, BaseColumnPropsComponent as dK, TilePropsComponent as dL, FormFieldReportPageComponent as dM, ColumnRendererBase as dN, ColumnRendererViewBase as dO, BaseUlvSettingComponent as dP, TableHeaderWidthMode as dQ, setTableThWidth as dR, calculateColumnContent as dS, calculateColumnWidth as dT, setColumnWidthByMaxMoContentWidth as dU, calculateMoDataListContentWidthByColumnName as dV, calculateFreeColumnSize as dW, calculateColumnWidthFitToContainer as dX, calcContextMenuWidth as dY, RotateImage as dZ, isInLocalMode as d_, ReportModel as da, ReportListModel as db, ReportFormModel as dc, ReportCalendarModel as dd, ReportTreeModel as de, ReportViewColumn as df, DefaultGridSetting as dg, GridSetting as dh, ColSetting as di, SortSetting as dj, ReportField as dk, DateRanges as dl, SortDirection as dm, SelectionMode as dn, UlvHeightSizeType as dp, FieldBaseComponent as dq, FieldViewBase as dr, FormBaseComponent as ds, FormToolbarBaseComponent as dt, SystemBaseComponent as du, ReportBaseComponent as dv, ReportItemBaseComponent as dw, ApplicationBaseComponent as dx, LayoutItemBaseComponent as dy, LayoutPanelBaseComponent as dz, DynamicItemComponent as e, availablePrefixes as e$, getColumnValueOfMoDataList as e0, throwIfAlreadyLoaded as e1, measureText2 as e2, measureText as e3, measureTextBy as e4, genrateInlineMoId as e5, enumValueToStringSize as e6, isVersionBiggerThan as e7, compareVersions as e8, scrollToElement as e9, getIcon as eA, isImage as eB, GetAllColumnsSorted as eC, GetVisibleValue as eD, GroupBy as eE, FindGroup as eF, FillAllLayoutControls as eG, FindToolbarItem as eH, FindLayoutSettingFromLayout94 as eI, GetAllHorizontalFromLayout94 as eJ, getGridSettings as eK, getResetGridSettings as eL, GetDefaultMoObjectInfo as eM, getLayout94ObjectInfo as eN, getFormSettings as eO, createFormPanelMetaConditions as eP, getNewMoGridEditor as eQ, createGridEditorFormPanel as eR, getLayoutControl as eS, getControlList as eT, shallowEqual as eU, toNumber as eV, InputNumber as eW, AffixRespondEvents as eX, isTargetWindow as eY, getTargetRect as eZ, getFieldValue as e_, executeUlvCommandHandler as ea, getUniqueId as eb, getDateService as ec, getAllItemsPerChildren as ed, setOneDepthLevel as ee, isFirefox as ef, getImagePath as eg, checkPermission as eh, fixUnclosedParentheses as ei, isFunction as ej, DeviceWidth as ek, getHeaderValue as el, elementInViewport2 as em, PreventDefaulEvent as en, stopPropagation as eo, getParentHeight as ep, getComponentDefined as eq, isSafari as er, isFF as es, getDeviceIsPhone as et, getDeviceIsDesktop as eu, getDeviceIsTablet as ev, getDeviceIsMobile as ew, getControlSizeMode as ex, formatBytes as ey, getValidExtension as ez, formRoutes as f, requestAnimationFramePolyfill as f0, ExecuteDynamicCommand as f1, ExecuteWorkflowChoiceDef as f2, getRequestAnimationFrame as f3, cancelRequestAnimationFrame as f4, easeInOutCubic as f5, WordMimeType as f6, ImageMimeType as f7, PdfMimeType as f8, AllFilesMimeType as f9, IntersectionStatus as fA, fromIntersectionObserver as fB, CustomRouteReuseStrategy as fC, AuthGuard as fD, RedirectHomeGuard as fE, RootPageComponent as fF, ResizableComponent as fG, ResizableDirective as fH, ResizableModule as fI, PushBannerComponent as fJ, REPORT_GRID_VIEWPORT_CLASS as fK, DEFAULT_REPORT_LAYOUT_POLICY as fL, REPORT_TYPE_DEFAULT_POLICIES as fM, scrollLayoutModeToContextEnvironment as fN, contextDefaultsFromEnvironment as fO, resolveFinalScroll as fP, resolveReportLayoutPolicy as fQ, getReportTypeDefaultPolicy as fR, extractLayoutPolicyFromView as fS, BarsaNovinRayCoreModule as fT, VideoMimeType as fa, AudioMimeType as fb, MimeTypes as fc, GetContentType as fd, GetViewableExtensions as fe, ChangeLayoutInfoCustomUi as ff, mobile_regex as fg, number_only as fh, forbiddenValidator as fi, GetImgTags as fj, ImagetoPrint as fk, PrintImage as fl, SaveImageToFile as fm, validateAllFormFields as fn, getFocusableTagNames as fo, addCssVariableToRoot as fp, flattenTree as fq, IsDarkMode as fr, nullOrUndefinedString as fs, fromEntries as ft, bodyClick as fu, removeDynamicStyle as fv, addDynamicVariableTo as fw, AddDynamicFormStyles as fx, RemoveDynamicFormStyles as fy, ContainerComponent as fz, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, RowState as j, BaseItemContentPropsComponent as k, CardBaseItemContentPropsComponent as l, BaseFormToolbaritemPropsComponent as m, DynamicFormToolbaritemComponent as n, DynamicLayoutComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
19903
- //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-D50KRKKo.mjs.map
20097
+ export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, MoInfoUlvPagingPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, TlbButtonsPipe as aA, RemoveNewlinePipe as aB, MoValuePipe as aC, FilterPipe as aD, FilterTabPipe as aE, MoReportValueConcatPipe as aF, FilterStringPipe as aG, SortPipe as aH, BbbTranslatePipe as aI, BarsaIconDictPipe as aJ, FileInfoCountPipe as aK, ControlUiPipe as aL, VisibleValuePipe as aM, FilterToolbarControlPipe as aN, MultipleGroupByPipe as aO, PictureFieldSourcePipe as aP, FioriIconPipe as aQ, CanUploadFilePipe as aR, ListCountPipe as aS, TotalSummaryPipe as aT, MergeFieldsToColumnsPipe as aU, FindColumnByDbNamePipe as aV, FilterColumnsByDetailsPipe as aW, MoInfoUlvMoListPipe as aX, ReversePipe as aY, ColumnCustomUiPipe as aZ, SanitizeTextPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoLinkerDirective as as, MoReportValuePipe as at, NumeralPipe as au, GroupByPipe as av, ContextMenuPipe as aw, HeaderFacetValuePipe as ax, SeperatorFixPipe as ay, ConvertToStylePipe as az, PortalPageSidebarComponent as b, ApplicationCtrlrService as b$, ColumnCustomComponentPipe as b0, ColumnValuePipe as b1, ColumnIconPipe as b2, RowNumberPipe as b3, ComboRowImagePipe as b4, IsExpandedNodePipe as b5, ThImageOrIconePipe as b6, FindPreviewColumnPipe as b7, ReplacePipe as b8, FilterWorkflowInMobilePipe as b9, ContainerService as bA, HorizontalLayoutService as bB, LayoutService as bC, LogService as bD, PortalService as bE, UiService as bF, UlvMainService as bG, UploadService as bH, NetworkStatusService as bI, AudioRecordingService as bJ, VideoRecordingService as bK, LocalStorageService as bL, IndexedDbService as bM, BarsaStorageService as bN, PromptUpdateService as bO, NotificationService as bP, ServiceWorkerNotificationService as bQ, ColumnService as bR, ServiceWorkerCommuncationService as bS, SaveScrollPositionService as bT, RoutingService as bU, GroupByService as bV, LayoutMainContentService as bW, TabpageService as bX, InMemoryStorageService as bY, ScrollLayoutContextHolder as bZ, ShellbarHeightService as b_, HideColumnsInmobilePipe as ba, StringToNumberPipe as bb, ColumnValueOfParametersPipe as bc, HideAcceptCancelButtonsPipe as bd, FilterInlineActionListPipe as be, IsImagePipe as bf, ToolbarSettingsPipe as bg, CardMediaSizePipe as bh, LabelStarTrimPipe as bi, SplitPipe as bj, DynamicDarkColorPipe as bk, ChunkArrayPipe as bl, MapToChatMessagePipe as bm, PicturesByGroupIdPipe as bn, ScopedCssPipe as bo, ReportActionListPipe as bp, GetCssVariableValuePipe as bq, FindColumnsPipe as br, ExistsColumnsPipe as bs, ApiService as bt, BreadcrumbService as bu, CustomInjector as bv, DialogParams as bw, BarsaDialogService as bx, FormPanelService as by, FormService as bz, BaseDynamicComponent as c, LinearListControlInfoModel as c$, PushCheckService as c0, IdbService as c1, RUNTIME_NAV_STATE_SCHEMA_V1 as c2, buildRuntimeNavStateCacheKey as c3, RuntimeNavStateCacheService as c4, PushNotificationService as c5, CardViewService as c6, BaseSettingsService as c7, SimpleTemplateEngine as c8, TEMPLATE_ENGINE as c9, APP_VERSION as cA, DIALOG_SERVICE as cB, FORM_DIALOG_COMPONENT as cC, NOTIFICATAION_POPUP_SERVER as cD, TOAST_SERVICE as cE, NOTIFICATION_WEBWORKER_FACTORY as cF, GeneralControlInfoModel as cG, StringControlInfoModel as cH, RichStringControlInfoModel as cI, NumberControlInfoModel as cJ, FilePictureInfoModel as cK, FileControlInfoModel as cL, CommandControlInfoModel as cM, IconControlInfoModel as cN, PictureFileControlInfoModel as cO, GaugeControlInfoModel as cP, RelationListControlInfoModel as cQ, HistoryControlInfoModel as cR, RabetehAkseTakiListiControlInfoModel as cS, RelatedReportControlInfoModel as cT, CodeEditorControlInfoModel as cU, EnumControlInfoModel as cV, RowDataOption as cW, DateTimeControlInfoModel as cX, BoolControlInfoModel as cY, CalculateControlInfoModel as cZ, SubformControlInfoModel as c_, PortalDynamicPageResolver as ca, PortalFormPageResolver as cb, PortalPageResolver as cc, PortalReportPageResolver as cd, TileGroupBreadcrumResolver as ce, LoginSettingsResolver as cf, ReportBreadcrumbResolver as cg, DateService as ch, DateHijriService as ci, DateMiladiService as cj, DateShamsiService as ck, EntitySettingsStore as cl, CalendarSettingsStore as cm, FormNewComponent as cn, ReportContainerComponent as co, FormComponent as cp, FieldUiComponent as cq, BarsaSapUiFormPageModule as cr, ReportNavigatorComponent as cs, BaseController as ct, FieldBaseController as cu, ViewBase as cv, ModalRootComponent as cw, ButtonLoadingComponent as cx, UnlimitSessionComponent as cy, SplitterComponent as cz, DynamicFormComponent as d, calcContextMenuWidth as d$, ListRelationModel as d0, SingleRelationControlInfoModel as d1, MetaobjectDataModel as d2, MoForReportModelBase as d3, MoForReportModel as d4, ReportBaseInfo as d5, FormToolbarButton as d6, ReportExtraInfo as d7, MetaobjectRelationModel as d8, FieldInfoTypeEnum as d9, ApplicationBaseComponent as dA, LayoutItemBaseComponent as dB, LayoutPanelBaseComponent as dC, PageBaseComponent as dD, NumberBaseComponent as dE, FilesValidationHelper as dF, BarsaApi as dG, ReportViewBaseComponent as dH, FormPropsBaseComponent as dI, LinearListHelper as dJ, PageWithFormHandlerBaseComponent as dK, FormPageBaseComponent as dL, FormPageComponent as dM, BaseColumnPropsComponent as dN, TilePropsComponent as dO, FormFieldReportPageComponent as dP, ColumnRendererBase as dQ, ColumnRendererViewBase as dR, BaseUlvSettingComponent as dS, TableHeaderWidthMode as dT, setTableThWidth as dU, calculateColumnContent as dV, calculateColumnWidth as dW, setColumnWidthByMaxMoContentWidth as dX, calculateMoDataListContentWidthByColumnName as dY, calculateFreeColumnSize as dZ, calculateColumnWidthFitToContainer as d_, BaseReportModel as da, DefaultCommandsAccessValue as db, CustomCommand as dc, ReportModel as dd, ReportListModel as de, ReportFormModel as df, ReportCalendarModel as dg, ReportTreeModel as dh, ReportViewColumn as di, DefaultGridSetting as dj, GridSetting as dk, ColSetting as dl, SortSetting as dm, ReportField as dn, DateRanges as dp, SortDirection as dq, SelectionMode as dr, UlvHeightSizeType as ds, FieldBaseComponent as dt, FieldViewBase as du, FormBaseComponent as dv, FormToolbarBaseComponent as dw, SystemBaseComponent as dx, ReportBaseComponent as dy, ReportItemBaseComponent as dz, DynamicItemComponent as e, isTargetWindow as e$, RotateImage as e0, isInLocalMode as e1, getLabelWidth as e2, getColumnValueOfMoDataList as e3, throwIfAlreadyLoaded as e4, measureText2 as e5, measureText as e6, measureTextBy as e7, genrateInlineMoId as e8, enumValueToStringSize as e9, getControlSizeMode as eA, formatBytes as eB, getValidExtension as eC, getIcon as eD, isImage as eE, GetAllColumnsSorted as eF, GetVisibleValue as eG, GroupBy as eH, FindGroup as eI, FillAllLayoutControls as eJ, FindToolbarItem as eK, FindLayoutSettingFromLayout94 as eL, GetAllHorizontalFromLayout94 as eM, getGridSettings as eN, getResetGridSettings as eO, GetDefaultMoObjectInfo as eP, getLayout94ObjectInfo as eQ, getFormSettings as eR, createFormPanelMetaConditions as eS, getNewMoGridEditor as eT, createGridEditorFormPanel as eU, getLayoutControl as eV, getControlList as eW, shallowEqual as eX, toNumber as eY, InputNumber as eZ, AffixRespondEvents as e_, isVersionBiggerThan as ea, compareVersions as eb, scrollToElement as ec, executeUlvCommandHandler as ed, getUniqueId as ee, getDateService as ef, getAllItemsPerChildren as eg, setOneDepthLevel as eh, isFirefox as ei, getImagePath as ej, checkPermission as ek, fixUnclosedParentheses as el, isFunction as em, DeviceWidth as en, getHeaderValue as eo, elementInViewport2 as ep, PreventDefaulEvent as eq, stopPropagation as er, getParentHeight as es, getComponentDefined as et, isSafari as eu, isFF as ev, getDeviceIsPhone as ew, getDeviceIsDesktop as ex, getDeviceIsTablet as ey, getDeviceIsMobile as ez, formRoutes as f, getTargetRect as f0, getFieldValue as f1, availablePrefixes as f2, requestAnimationFramePolyfill as f3, ExecuteDynamicCommand as f4, ExecuteWorkflowChoiceDef as f5, getRequestAnimationFrame as f6, cancelRequestAnimationFrame as f7, easeInOutCubic as f8, WordMimeType as f9, AddDynamicFormStyles as fA, RemoveDynamicFormStyles as fB, ContainerComponent as fC, IntersectionStatus as fD, fromIntersectionObserver as fE, CustomRouteReuseStrategy as fF, AuthGuard as fG, RedirectHomeGuard as fH, RootPageComponent as fI, ResizableComponent as fJ, ResizableDirective as fK, ResizableModule as fL, PushBannerComponent as fM, REPORT_GRID_VIEWPORT_CLASS as fN, DEFAULT_REPORT_LAYOUT_POLICY as fO, REPORT_TYPE_DEFAULT_POLICIES as fP, scrollLayoutModeToContextEnvironment as fQ, contextDefaultsFromEnvironment as fR, resolveFinalScroll as fS, resolveReportLayoutPolicy as fT, getReportTypeDefaultPolicy as fU, extractLayoutPolicyFromView as fV, BarsaNovinRayCoreModule as fW, ImageMimeType as fa, PdfMimeType as fb, AllFilesMimeType as fc, VideoMimeType as fd, AudioMimeType as fe, MimeTypes as ff, GetContentType as fg, GetViewableExtensions as fh, ChangeLayoutInfoCustomUi as fi, mobile_regex as fj, number_only as fk, forbiddenValidator as fl, GetImgTags as fm, ImagetoPrint as fn, PrintImage as fo, SaveImageToFile as fp, validateAllFormFields as fq, getFocusableTagNames as fr, addCssVariableToRoot as fs, flattenTree as ft, IsDarkMode as fu, nullOrUndefinedString as fv, fromEntries as fw, bodyClick as fx, removeDynamicStyle as fy, addDynamicVariableTo as fz, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, RowState as j, BaseItemContentPropsComponent as k, CardBaseItemContentPropsComponent as l, BaseFormToolbaritemPropsComponent as m, DynamicFormToolbaritemComponent as n, DynamicLayoutComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
20098
+ //# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-BhKR992Z.mjs.map