barsa-novin-ray-core 2.3.157 → 2.3.159
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{barsa-novin-ray-core-barsa-novin-ray-core-B03cP3BD.mjs → barsa-novin-ray-core-barsa-novin-ray-core-DP1ZxDCW.mjs} +32 -12
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-DP1ZxDCW.mjs.map +1 -0
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-BCvJXaS3.mjs → barsa-novin-ray-core-barsa-report-page.module-Ct-djchi.mjs} +2 -2
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-BCvJXaS3.mjs.map → barsa-novin-ray-core-barsa-report-page.module-Ct-djchi.mjs.map} +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +1 -1
- package/index.d.ts +11 -4
- package/package.json +1 -1
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-B03cP3BD.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, signal, ViewContainerRef, isDevMode, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, effect, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
|
|
2
|
+
import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, signal, ViewContainerRef, isDevMode, SecurityContext, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewChild, effect, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
|
|
3
3
|
import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, timer, combineLatest, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, switchMap, forkJoin, shareReplay, withLatestFrom as withLatestFrom$1, fromEvent, throwError, merge, interval, filter as filter$1, lastValueFrom, timeout, catchError as catchError$1, takeUntil as takeUntil$1, take, skip, Observable, tap as tap$1, mergeWith, Subscription } from 'rxjs';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
5
|
import { Router, NavigationEnd, ActivatedRoute, RouterEvent, NavigationStart, RouterModule, RouteReuseStrategy } from '@angular/router';
|
|
@@ -6430,7 +6430,7 @@ function reportRoutes(authGuard = false) {
|
|
|
6430
6430
|
return {
|
|
6431
6431
|
path: 'report/:id',
|
|
6432
6432
|
canActivate: authGuard ? [AuthGuard] : [],
|
|
6433
|
-
loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-
|
|
6433
|
+
loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-Ct-djchi.mjs').then((m) => m.BarsaReportPageModule),
|
|
6434
6434
|
resolve: {
|
|
6435
6435
|
breadcrumb: ReportBreadcrumbResolver
|
|
6436
6436
|
}
|
|
@@ -7498,6 +7498,7 @@ class UlvMainService {
|
|
|
7498
7498
|
this._gridAllowSortSource = new BehaviorSubject(false);
|
|
7499
7499
|
this._contentHeightSource = new BehaviorSubject(0);
|
|
7500
7500
|
this._hiddenOverflowContentSource = new BehaviorSubject(false);
|
|
7501
|
+
this._alternateRowMode = new BehaviorSubject(false);
|
|
7501
7502
|
this._cartableKeySeperator = '@';
|
|
7502
7503
|
this._titleSource = new BehaviorSubject({
|
|
7503
7504
|
text: '',
|
|
@@ -7803,6 +7804,12 @@ class UlvMainService {
|
|
|
7803
7804
|
get parentHeight() {
|
|
7804
7805
|
return this._parentHeightSource.getValue();
|
|
7805
7806
|
}
|
|
7807
|
+
get alternateRowMode$() {
|
|
7808
|
+
return this._alternateRowMode.asObservable();
|
|
7809
|
+
}
|
|
7810
|
+
setAlternateRowMode(alternateRowMode) {
|
|
7811
|
+
this._alternateRowMode.next(alternateRowMode);
|
|
7812
|
+
}
|
|
7806
7813
|
setParentHeight(parentHeight) {
|
|
7807
7814
|
this._parentHeightSource.next(parentHeight);
|
|
7808
7815
|
}
|
|
@@ -10241,6 +10248,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
10241
10248
|
class SimpleTemplateEngine {
|
|
10242
10249
|
constructor() {
|
|
10243
10250
|
this.cache = new Map();
|
|
10251
|
+
this.sanitizer = inject(DomSanitizer);
|
|
10244
10252
|
}
|
|
10245
10253
|
render(template, valueResolver) {
|
|
10246
10254
|
if (!template) {
|
|
@@ -10270,7 +10278,8 @@ class SimpleTemplateEngine {
|
|
|
10270
10278
|
tokens.push((resolver) => {
|
|
10271
10279
|
try {
|
|
10272
10280
|
if (!this.isSafeKey(key)) {
|
|
10273
|
-
|
|
10281
|
+
const safe = this.sanitizer.sanitize(SecurityContext.HTML, key);
|
|
10282
|
+
return `[${safe ?? ''}]`;
|
|
10274
10283
|
}
|
|
10275
10284
|
const value = resolver(key);
|
|
10276
10285
|
if (value == null) {
|
|
@@ -10872,6 +10881,8 @@ class ReportBaseComponent extends BaseComponent {
|
|
|
10872
10881
|
// va dar ulv event baiad raise shavad
|
|
10873
10882
|
// ke data amade shode va ulvmainservice an ra begirad.gozaresh mortabet
|
|
10874
10883
|
this._ulvMainService.reSetMoDataList(this.context.moDataList);
|
|
10884
|
+
this._setAlternateRowMode();
|
|
10885
|
+
this.alternateRowMode$ = this._ulvMainService.alternateRowMode$;
|
|
10875
10886
|
let gridSetting = this.defaultGridSetting;
|
|
10876
10887
|
if (this.context.GetGridSetting) {
|
|
10877
10888
|
gridSetting = this.context.GetGridSetting() || this.defaultGridSetting;
|
|
@@ -10895,7 +10906,7 @@ class ReportBaseComponent extends BaseComponent {
|
|
|
10895
10906
|
this.deviceSize$
|
|
10896
10907
|
.pipe(takeUntil(this._onDestroy$), tap((deviceSize) => this._deviceSizeChanged(deviceSize)))
|
|
10897
10908
|
.subscribe();
|
|
10898
|
-
merge(this._portalService.windowResize$, timer(1000))
|
|
10909
|
+
merge(this._ulvMainService.hideSearchpanel$.pipe(debounceTime(200)), this._portalService.windowResize$, timer(1000))
|
|
10899
10910
|
.pipe(takeUntil(this._onDestroy$))
|
|
10900
10911
|
.subscribe(() => this._windowResized());
|
|
10901
10912
|
this.context?.fireEvent('afterrender', this);
|
|
@@ -10916,6 +10927,10 @@ class ReportBaseComponent extends BaseComponent {
|
|
|
10916
10927
|
const gridSettings = getResetGridSettings(allColumns, this.context);
|
|
10917
10928
|
this.updateGridSetting(gridSettings, false, true);
|
|
10918
10929
|
}
|
|
10930
|
+
_setAlternateRowMode() {
|
|
10931
|
+
const alternateRowMode = BarsaApi.Common.Util.TryGetValue(this.context, 'Setting.View.AlternateRowMode', false);
|
|
10932
|
+
this._ulvMainService.setAlternateRowMode(alternateRowMode);
|
|
10933
|
+
}
|
|
10919
10934
|
_columnSummary(e) {
|
|
10920
10935
|
this.context.fireEvent('columnSummary', this.context, e.moArr, e.column, e.groupLevel, e.groupName, e.summaryFn);
|
|
10921
10936
|
}
|
|
@@ -11972,7 +11987,7 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
11972
11987
|
this._renderer2.setStyle(this._el.nativeElement, 'height', 'auto');
|
|
11973
11988
|
return;
|
|
11974
11989
|
}
|
|
11975
|
-
if (
|
|
11990
|
+
if ((checkDialog && !this.inDialog) || !checkDialog) {
|
|
11976
11991
|
this.height = parentHeight ? `${parentHeight}px` : 'auto';
|
|
11977
11992
|
this._renderer2.setStyle(this._el.nativeElement, 'height', this.height);
|
|
11978
11993
|
this._ulvMainService.setHiddenOverflowContent(true);
|
|
@@ -12018,14 +12033,15 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
12018
12033
|
// no-op
|
|
12019
12034
|
}
|
|
12020
12035
|
}
|
|
12021
|
-
onActionListClick(mo, index, itemId) {
|
|
12036
|
+
onActionListClick(mo, index, itemId, options) {
|
|
12022
12037
|
if (itemId === 'Show') {
|
|
12023
12038
|
this.onRowClick({ mo, index });
|
|
12024
12039
|
return;
|
|
12025
12040
|
}
|
|
12026
12041
|
this.onRowCheck({ mo, index });
|
|
12027
12042
|
const btn = this.toolbarButtons.find((tb) => tb?.itemId === itemId);
|
|
12028
|
-
|
|
12043
|
+
const options2 = options ? { ...options } : {};
|
|
12044
|
+
executeUlvCommandHandler(btn, options2);
|
|
12029
12045
|
}
|
|
12030
12046
|
_containerWidthChanged(_) { }
|
|
12031
12047
|
_setRowIndicator(columns) {
|
|
@@ -12035,7 +12051,7 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
12035
12051
|
this.rowIndicator = Number(columns[0].MetaFieldTypeId) === 41;
|
|
12036
12052
|
}
|
|
12037
12053
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12038
|
-
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 }); }
|
|
12054
|
+
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", alternateRowMode: "alternateRowMode", 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 }); }
|
|
12039
12055
|
}
|
|
12040
12056
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ReportViewBaseComponent, decorators: [{
|
|
12041
12057
|
type: Component,
|
|
@@ -12061,6 +12077,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
12061
12077
|
type: Input
|
|
12062
12078
|
}], simpleInlineEdit: [{
|
|
12063
12079
|
type: Input
|
|
12080
|
+
}], alternateRowMode: [{
|
|
12081
|
+
type: Input
|
|
12064
12082
|
}], inlineEditWithoutSelection: [{
|
|
12065
12083
|
type: Input
|
|
12066
12084
|
}], hideToolbar: [{
|
|
@@ -14665,6 +14683,8 @@ class BaseViewItemPropsComponent extends BaseViewPropsComponent {
|
|
|
14665
14683
|
}
|
|
14666
14684
|
_handleBruleShowMessageAction(action) {
|
|
14667
14685
|
action.MessageExpressionHtml = this._domSanitizer.bypassSecurityTrustHtml(action.MessageExpression);
|
|
14686
|
+
const { MessageType } = action;
|
|
14687
|
+
MessageType === 2 && (this.hasError = true);
|
|
14668
14688
|
this.bruleActionMessage.set(action);
|
|
14669
14689
|
}
|
|
14670
14690
|
_createFormPanelCtrlr(mo, typeDefId) {
|
|
@@ -14724,7 +14744,7 @@ class BaseViewItemPropsComponent extends BaseViewPropsComponent {
|
|
|
14724
14744
|
this.hasError = true;
|
|
14725
14745
|
this._handleBruleShowMessageAction({
|
|
14726
14746
|
MessageExpression: err.Text,
|
|
14727
|
-
MessageType: 2,
|
|
14747
|
+
MessageType: 2, // 2 means error
|
|
14728
14748
|
MessageExpressionHtml: err.Text,
|
|
14729
14749
|
EscapeCharacters: true
|
|
14730
14750
|
});
|
|
@@ -14763,7 +14783,7 @@ class BaseViewItemPropsComponent extends BaseViewPropsComponent {
|
|
|
14763
14783
|
});
|
|
14764
14784
|
}
|
|
14765
14785
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseViewItemPropsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14766
|
-
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",
|
|
14786
|
+
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", alternateRowMode: "alternateRowMode", 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 }); }
|
|
14767
14787
|
}
|
|
14768
14788
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseViewItemPropsComponent, decorators: [{
|
|
14769
14789
|
type: Component,
|
|
@@ -14840,7 +14860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
14840
14860
|
type: Input
|
|
14841
14861
|
}], rowNumber: [{
|
|
14842
14862
|
type: Input
|
|
14843
|
-
}],
|
|
14863
|
+
}], alternateRowMode: [{
|
|
14844
14864
|
type: Input
|
|
14845
14865
|
}], noSaveInlineEditInServer: [{
|
|
14846
14866
|
type: Input
|
|
@@ -20274,4 +20294,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
20274
20294
|
*/
|
|
20275
20295
|
|
|
20276
20296
|
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, getControlList 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, getNestedValue as eF, sort as eG, sortEx as eH, multilevelSort as eI, searchEx as eJ, GetAllColumnsSorted as eK, GetVisibleValue as eL, GroupBy as eM, FindGroup as eN, FillAllLayoutControls as eO, FindToolbarItem as eP, FindLayoutSettingFromLayout94 as eQ, GetAllHorizontalFromLayout94 as eR, getGridSettings as eS, getResetGridSettings as eT, GetDefaultMoObjectInfo as eU, getLayout94ObjectInfo as eV, getFormSettings as eW, createFormPanelMetaConditions as eX, getNewMoGridEditor as eY, createGridEditorFormPanel as eZ, getLayoutControl 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, BarsaNovinRayCoreModule as f$, shallowEqual as f0, toNumber as f1, InputNumber as f2, AffixRespondEvents as f3, isTargetWindow as f4, getTargetRect as f5, getFieldValue as f6, availablePrefixes as f7, requestAnimationFramePolyfill as f8, ExecuteDynamicCommand as f9, nullOrUndefinedString as fA, fromEntries as fB, bodyClick as fC, removeDynamicStyle as fD, addDynamicVariableTo as fE, AddDynamicFormStyles as fF, RemoveDynamicFormStyles as fG, ContainerComponent as fH, IntersectionStatus as fI, fromIntersectionObserver as fJ, CustomRouteReuseStrategy as fK, AuthGuard as fL, RedirectHomeGuard as fM, RootPageComponent as fN, ResizableComponent as fO, ResizableDirective as fP, ResizableModule as fQ, PushBannerComponent as fR, REPORT_GRID_VIEWPORT_CLASS as fS, DEFAULT_REPORT_LAYOUT_POLICY as fT, REPORT_TYPE_DEFAULT_POLICIES as fU, scrollLayoutModeToContextEnvironment as fV, contextDefaultsFromEnvironment as fW, resolveFinalScroll as fX, resolveReportLayoutPolicy as fY, getReportTypeDefaultPolicy as fZ, extractLayoutPolicyFromView as f_, ExecuteWorkflowChoiceDef as fa, getRequestAnimationFrame as fb, cancelRequestAnimationFrame as fc, easeInOutCubic as fd, WordMimeType as fe, ImageMimeType as ff, PdfMimeType as fg, AllFilesMimeType as fh, VideoMimeType as fi, AudioMimeType as fj, MimeTypes as fk, GetContentType as fl, GetViewableExtensions as fm, ChangeLayoutInfoCustomUi as fn, mobile_regex as fo, number_only as fp, forbiddenValidator as fq, GetImgTags as fr, ImagetoPrint as fs, PrintImage as ft, SaveImageToFile as fu, validateAllFormFields as fv, getFocusableTagNames as fw, addCssVariableToRoot as fx, flattenTree as fy, IsDarkMode 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 };
|
|
20277
|
-
//# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-
|
|
20297
|
+
//# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-DP1ZxDCW.mjs.map
|