barsa-novin-ray-core 2.2.71 → 2.2.72
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/esm2022/lib/abstract-classes/models.mjs +1 -1
- package/esm2022/lib/abstract-classes/report-base.mjs +2 -1
- package/esm2022/lib/abstract-classes/report-view-base.component.mjs +12 -4
- package/esm2022/lib/abstract-classes/tile-props.mjs +4 -2
- package/esm2022/lib/barsa-novin-ray-core.module.mjs +15 -9
- package/esm2022/lib/constants.mjs +3 -3
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/directives/splide-slider.directive.mjs +103 -0
- package/esm2022/lib/form/form.component.mjs +8 -7
- package/esm2022/lib/pipes/card-media-size.pipe.mjs +21 -0
- package/esm2022/lib/pipes/index.mjs +2 -1
- package/esm2022/lib/services/ulvmain.service.mjs +8 -1
- package/fesm2022/barsa-novin-ray-core.mjs +160 -18
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/models.d.ts +8 -0
- package/lib/abstract-classes/report-base.d.ts +2 -1
- package/lib/abstract-classes/report-view-base.component.d.ts +2 -0
- package/lib/abstract-classes/tile-props.d.ts +2 -1
- package/lib/barsa-novin-ray-core.module.d.ts +43 -41
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/splide-slider.directive.d.ts +38 -0
- package/lib/form/form.component.d.ts +2 -2
- package/lib/pipes/card-media-size.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/services/ulvmain.service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, inject, ElementRef, SkipSelf, NgModuleFactory, Inject, Pipe, EventEmitter, Self, Output, HostBinding, ChangeDetectorRef, HostListener, ViewContainerRef, ViewChild,
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Input, InjectionToken, Injectable, Optional, inject, ElementRef, SkipSelf, NgModuleFactory, Inject, Pipe, EventEmitter, Self, Output, HostBinding, ChangeDetectorRef, HostListener, ViewContainerRef, ViewChild, signal, Directive, Renderer2, input, Injector, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, APP_INITIALIZER, ErrorHandler } from '@angular/core';
|
|
3
3
|
import { Subject, from, BehaviorSubject, of, combineLatest, fromEvent, forkJoin, throwError, merge, interval, filter as filter$1, tap as tap$1, concatMap as concatMap$1, catchError as catchError$1, finalize as finalize$1, Observable, takeUntil as takeUntil$1, exhaustMap as exhaustMap$1, timer, debounceTime as debounceTime$1, mergeWith } from 'rxjs';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
5
|
import { NavigationEnd, ActivatedRoute, Router, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
|
|
@@ -19,6 +19,7 @@ import * as i4 from '@angular/platform-browser';
|
|
|
19
19
|
import { Title } from '@angular/platform-browser';
|
|
20
20
|
import RecordRTC from 'recordrtc';
|
|
21
21
|
import * as i2$1 from '@angular/service-worker';
|
|
22
|
+
import Splide from '@splidejs/splide';
|
|
22
23
|
|
|
23
24
|
class BarsaApi {
|
|
24
25
|
static { this.idGenerator = -10000; }
|
|
@@ -1692,8 +1693,8 @@ function getImagePath(type, moId, fileId, fieldDefId, size, sizeH) {
|
|
|
1692
1693
|
moId = moId == null ? '' : encodeURIComponent(moId);
|
|
1693
1694
|
fileId = fileId == null ? '' : encodeURIComponent(fileId);
|
|
1694
1695
|
fieldDefId = fieldDefId == null ? '' : encodeURIComponent(fieldDefId);
|
|
1695
|
-
size = size
|
|
1696
|
-
sizeH = sizeH
|
|
1696
|
+
size = size === null ? 128 : size;
|
|
1697
|
+
sizeH = sizeH === null ? size : sizeH;
|
|
1697
1698
|
const url = `/IH.ashx?ty=${type}&moId=${moId}&id=${fileId}&fdId=${fieldDefId}&si=${size}&siH=${sizeH}`;
|
|
1698
1699
|
return url;
|
|
1699
1700
|
}
|
|
@@ -5677,6 +5678,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
5677
5678
|
}]
|
|
5678
5679
|
}] });
|
|
5679
5680
|
|
|
5681
|
+
class CardMediaSizePipe {
|
|
5682
|
+
transform(cardMediaSize, defaultValue) {
|
|
5683
|
+
if (!cardMediaSize) {
|
|
5684
|
+
return [+defaultValue, +defaultValue];
|
|
5685
|
+
}
|
|
5686
|
+
const x = cardMediaSize.split('x');
|
|
5687
|
+
return [+x[0], +x[1]];
|
|
5688
|
+
}
|
|
5689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardMediaSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5690
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CardMediaSizePipe, name: "cardMediaSize" }); }
|
|
5691
|
+
}
|
|
5692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardMediaSizePipe, decorators: [{
|
|
5693
|
+
type: Pipe,
|
|
5694
|
+
args: [{
|
|
5695
|
+
name: 'cardMediaSize',
|
|
5696
|
+
standalone: false
|
|
5697
|
+
}]
|
|
5698
|
+
}] });
|
|
5699
|
+
|
|
5680
5700
|
class UlvMainService {
|
|
5681
5701
|
constructor(_bbbPipe, _apiService) {
|
|
5682
5702
|
this._bbbPipe = _bbbPipe;
|
|
@@ -5723,6 +5743,7 @@ class UlvMainService {
|
|
|
5723
5743
|
this._selectedSearchPanelSettingsIdSource = new BehaviorSubject('');
|
|
5724
5744
|
this._defaultSearchPanelSettingsSource = new Subject();
|
|
5725
5745
|
this._allSearchPanelSettingsSource = new BehaviorSubject([]);
|
|
5746
|
+
this._cssBackgroundSource = new BehaviorSubject(null);
|
|
5726
5747
|
this._hidePagingSource = new BehaviorSubject(false);
|
|
5727
5748
|
this._openSearchPanelHiddenSettingsSource = new Subject();
|
|
5728
5749
|
this._openSearchFilesManageSource = new Subject();
|
|
@@ -5832,6 +5853,12 @@ class UlvMainService {
|
|
|
5832
5853
|
get hideSearchpanel() {
|
|
5833
5854
|
return this._hideSearchapanelSource.getValue();
|
|
5834
5855
|
}
|
|
5856
|
+
get cssBackground$() {
|
|
5857
|
+
return this._cssBackgroundSource.asObservable();
|
|
5858
|
+
}
|
|
5859
|
+
setBackground(cssBackground) {
|
|
5860
|
+
return this._cssBackgroundSource.next(cssBackground);
|
|
5861
|
+
}
|
|
5835
5862
|
hidePaging(hide) {
|
|
5836
5863
|
this._hidePagingSource.next(hide);
|
|
5837
5864
|
}
|
|
@@ -8160,6 +8187,7 @@ class ReportBaseComponent extends BaseComponent {
|
|
|
8160
8187
|
this.rendered = true;
|
|
8161
8188
|
this.context.rendered = true;
|
|
8162
8189
|
this.inDialog$ = this._ulvMainService.inDialog$;
|
|
8190
|
+
this.cssBackground$ = this._ulvMainService.cssBackground$;
|
|
8163
8191
|
this.isMultiSelect$ = this._ulvMainService.isMultiSelect$;
|
|
8164
8192
|
this.fullscreen$ = this._ulvMainService.fullscreen$;
|
|
8165
8193
|
this.hideSearchpanel$ = this._ulvMainService.hideSearchpanel$;
|
|
@@ -9210,6 +9238,7 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
9210
9238
|
this._portalService = _portalService;
|
|
9211
9239
|
this._uploadService = _uploadService;
|
|
9212
9240
|
this._groupByService = _groupByService;
|
|
9241
|
+
this._reportView = true;
|
|
9213
9242
|
this.rowActivable = true;
|
|
9214
9243
|
this.columnSummary = new EventEmitter();
|
|
9215
9244
|
this.escapeKey = new EventEmitter();
|
|
@@ -9389,6 +9418,10 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
9389
9418
|
onFilter(column) {
|
|
9390
9419
|
this.filter.emit(column);
|
|
9391
9420
|
}
|
|
9421
|
+
onAction(commandBody) {
|
|
9422
|
+
const command = new Function(commandBody);
|
|
9423
|
+
command();
|
|
9424
|
+
}
|
|
9392
9425
|
onDynamicComponentEvents(e, mo, index) {
|
|
9393
9426
|
switch (e.title) {
|
|
9394
9427
|
case 'rowCheck':
|
|
@@ -9423,7 +9456,7 @@ class ReportViewBaseComponent extends BaseComponent {
|
|
|
9423
9456
|
this.rowIndicator = Number(columns[0].MetaFieldTypeId) === 41;
|
|
9424
9457
|
}
|
|
9425
9458
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ReportViewBaseComponent, deps: [{ token: i2.TitleCasePipe }, { token: BbbTranslatePipe }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: FindColumnByDbNamePipe }, { token: UlvMainService }, { token: PortalService }, { token: UploadService, optional: true }, { token: GroupByService, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9426
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ReportViewBaseComponent, 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", 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", 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" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9459
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ReportViewBaseComponent, 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", 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", 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" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9427
9460
|
}
|
|
9428
9461
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ReportViewBaseComponent, decorators: [{
|
|
9429
9462
|
type: Component,
|
|
@@ -9439,7 +9472,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
9439
9472
|
type: SkipSelf
|
|
9440
9473
|
}, {
|
|
9441
9474
|
type: Optional
|
|
9442
|
-
}] }], propDecorators: {
|
|
9475
|
+
}] }], propDecorators: { _reportView: [{
|
|
9476
|
+
type: HostBinding,
|
|
9477
|
+
args: ['class.report-view']
|
|
9478
|
+
}], contextView: [{
|
|
9443
9479
|
type: Input
|
|
9444
9480
|
}], viewSetting: [{
|
|
9445
9481
|
type: Input
|
|
@@ -10032,6 +10068,7 @@ class FormComponent extends BaseComponent {
|
|
|
10032
10068
|
this.bruleAction = new EventEmitter();
|
|
10033
10069
|
this.beforeTransition = new EventEmitter();
|
|
10034
10070
|
this.afterTransition = new EventEmitter();
|
|
10071
|
+
this.uiFormComponent = signal(undefined);
|
|
10035
10072
|
el.nativeElement.id = this.uniqueId = getUniqueId(4);
|
|
10036
10073
|
}
|
|
10037
10074
|
ngOnInit() {
|
|
@@ -10048,7 +10085,6 @@ class FormComponent extends BaseComponent {
|
|
|
10048
10085
|
const currVal = JSON.stringify(params.currentValue);
|
|
10049
10086
|
const prevVal = JSON.stringify(params.previousValue);
|
|
10050
10087
|
if (currVal !== prevVal) {
|
|
10051
|
-
// this.uiFormComponent.instance.formPanelService.destroy();
|
|
10052
10088
|
this.vcr.clear();
|
|
10053
10089
|
this.appendForm(currVal);
|
|
10054
10090
|
}
|
|
@@ -10056,8 +10092,10 @@ class FormComponent extends BaseComponent {
|
|
|
10056
10092
|
}
|
|
10057
10093
|
ngOnDestroy() {
|
|
10058
10094
|
super.ngOnDestroy();
|
|
10059
|
-
|
|
10060
|
-
|
|
10095
|
+
const x = this.uiFormComponent();
|
|
10096
|
+
if (x) {
|
|
10097
|
+
x.destroy();
|
|
10098
|
+
this.uiFormComponent.set(undefined);
|
|
10061
10099
|
}
|
|
10062
10100
|
}
|
|
10063
10101
|
_handleSaveOnFieldValueChange() {
|
|
@@ -10176,8 +10214,7 @@ class FormComponent extends BaseComponent {
|
|
|
10176
10214
|
this.formRendered.emit(customFormPanelUi);
|
|
10177
10215
|
}))
|
|
10178
10216
|
.subscribe((component) => {
|
|
10179
|
-
this.uiFormComponent
|
|
10180
|
-
this.cdr.detectChanges();
|
|
10217
|
+
this.uiFormComponent.set(component);
|
|
10181
10218
|
this.uiComponent.emit(component.instance);
|
|
10182
10219
|
});
|
|
10183
10220
|
}
|
|
@@ -10442,7 +10479,7 @@ class TilePropsComponent extends BaseComponent {
|
|
|
10442
10479
|
this.renameClick = new EventEmitter();
|
|
10443
10480
|
}
|
|
10444
10481
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TilePropsComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10445
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TilePropsComponent, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10482
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: TilePropsComponent, selector: "bnrc-tile-base", inputs: { parameters: "parameters", data: "data", context: "context", edit: "edit", deviceSize: "deviceSize", setToStorage: "setToStorage", listMode: "listMode", navigateBackOnClick: "navigateBackOnClick", groupType: "groupType", layoutInfo: "layoutInfo" }, outputs: { hideClick: "hideClick", renameClick: "renameClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10446
10483
|
}
|
|
10447
10484
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TilePropsComponent, decorators: [{
|
|
10448
10485
|
type: Component,
|
|
@@ -10468,6 +10505,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
10468
10505
|
type: Input
|
|
10469
10506
|
}], navigateBackOnClick: [{
|
|
10470
10507
|
type: Input
|
|
10508
|
+
}], groupType: [{
|
|
10509
|
+
type: Input
|
|
10471
10510
|
}], layoutInfo: [{
|
|
10472
10511
|
type: Input
|
|
10473
10512
|
}], hideClick: [{
|
|
@@ -13802,6 +13841,103 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
13802
13841
|
type: Input
|
|
13803
13842
|
}] } });
|
|
13804
13843
|
|
|
13844
|
+
class SplideSliderDirective extends BaseDirective {
|
|
13845
|
+
constructor() {
|
|
13846
|
+
super(...arguments);
|
|
13847
|
+
this.type = 'small';
|
|
13848
|
+
this.width = '100%';
|
|
13849
|
+
this.carouselCls = 'carousel-full';
|
|
13850
|
+
this.numWidth = window.innerWidth;
|
|
13851
|
+
this.height = this.numWidth / 2;
|
|
13852
|
+
this.rval = inject(MoReportValuePipe);
|
|
13853
|
+
this._picFieldSrc = inject(PictureFieldSourcePipe);
|
|
13854
|
+
this._renderer2 = inject(Renderer2);
|
|
13855
|
+
this._el = inject(ElementRef);
|
|
13856
|
+
}
|
|
13857
|
+
get dom() {
|
|
13858
|
+
return this._el.nativeElement;
|
|
13859
|
+
}
|
|
13860
|
+
ngOnInit() {
|
|
13861
|
+
super.ngOnInit();
|
|
13862
|
+
this.type = this.type || 'full';
|
|
13863
|
+
this._width = this.width;
|
|
13864
|
+
}
|
|
13865
|
+
ngAfterViewInit() {
|
|
13866
|
+
this._init();
|
|
13867
|
+
setTimeout(() => {
|
|
13868
|
+
this._splide.refresh();
|
|
13869
|
+
}, 200);
|
|
13870
|
+
}
|
|
13871
|
+
ngOnChanges(changes) {
|
|
13872
|
+
super.ngOnChanges(changes);
|
|
13873
|
+
const { moDataList } = changes;
|
|
13874
|
+
if (moDataList && moDataList.currentValue) {
|
|
13875
|
+
this._splide && this._splide.refresh();
|
|
13876
|
+
}
|
|
13877
|
+
}
|
|
13878
|
+
onRefresh() {
|
|
13879
|
+
this._splide.refresh();
|
|
13880
|
+
}
|
|
13881
|
+
_init() {
|
|
13882
|
+
this._renderer2.setAttribute(this.dom, 'data-splide', '{"direction":"rtl"}');
|
|
13883
|
+
this._splide = new Splide(this.dom, {
|
|
13884
|
+
...this._getCommonOptions,
|
|
13885
|
+
gap: +this.sliderGap,
|
|
13886
|
+
padding: +this.sliderPadding,
|
|
13887
|
+
perPage: +this.sliderPerPage,
|
|
13888
|
+
breakpoints: {
|
|
13889
|
+
480: {
|
|
13890
|
+
perPage: +this.breakpoint480
|
|
13891
|
+
},
|
|
13892
|
+
768: {
|
|
13893
|
+
perPage: +this.breakpoint768
|
|
13894
|
+
},
|
|
13895
|
+
991: {
|
|
13896
|
+
perPage: +this.breakpoint991
|
|
13897
|
+
},
|
|
13898
|
+
1279: {
|
|
13899
|
+
perPage: +this.breakpoint1279
|
|
13900
|
+
},
|
|
13901
|
+
}
|
|
13902
|
+
}).mount();
|
|
13903
|
+
}
|
|
13904
|
+
get _getCommonOptions() {
|
|
13905
|
+
return { rewind: true, arrows: this.moDataList?.length > 1, type: 'loop', direction: 'rtl', pagination: false };
|
|
13906
|
+
}
|
|
13907
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SplideSliderDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
13908
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SplideSliderDirective, selector: "[splideSlider]", inputs: { moDataList: "moDataList", type: "type", breakpoint991: "breakpoint991", breakpoint768: "breakpoint768", breakpoint480: "breakpoint480", breakpoint1279: "breakpoint1279", sliderPerPage: "sliderPerPage", sliderGap: "sliderGap", sliderPadding: "sliderPadding", width: "width" }, host: { properties: { "style.width": "this._width" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
13909
|
+
}
|
|
13910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SplideSliderDirective, decorators: [{
|
|
13911
|
+
type: Directive,
|
|
13912
|
+
args: [{
|
|
13913
|
+
selector: '[splideSlider]',
|
|
13914
|
+
standalone: false
|
|
13915
|
+
}]
|
|
13916
|
+
}], propDecorators: { _width: [{
|
|
13917
|
+
type: HostBinding,
|
|
13918
|
+
args: ['style.width']
|
|
13919
|
+
}], moDataList: [{
|
|
13920
|
+
type: Input
|
|
13921
|
+
}], type: [{
|
|
13922
|
+
type: Input
|
|
13923
|
+
}], breakpoint991: [{
|
|
13924
|
+
type: Input
|
|
13925
|
+
}], breakpoint768: [{
|
|
13926
|
+
type: Input
|
|
13927
|
+
}], breakpoint480: [{
|
|
13928
|
+
type: Input
|
|
13929
|
+
}], breakpoint1279: [{
|
|
13930
|
+
type: Input
|
|
13931
|
+
}], sliderPerPage: [{
|
|
13932
|
+
type: Input
|
|
13933
|
+
}], sliderGap: [{
|
|
13934
|
+
type: Input
|
|
13935
|
+
}], sliderPadding: [{
|
|
13936
|
+
type: Input
|
|
13937
|
+
}], width: [{
|
|
13938
|
+
type: Input
|
|
13939
|
+
}] } });
|
|
13940
|
+
|
|
13805
13941
|
class PortalDynamicPageResolver {
|
|
13806
13942
|
constructor(portalService) {
|
|
13807
13943
|
this.portalService = portalService;
|
|
@@ -14939,7 +15075,8 @@ const directives = [
|
|
|
14939
15075
|
RenderUlvDirective,
|
|
14940
15076
|
PrintFilesDirective,
|
|
14941
15077
|
SaveImageDirective,
|
|
14942
|
-
WebOtpDirective
|
|
15078
|
+
WebOtpDirective,
|
|
15079
|
+
SplideSliderDirective
|
|
14943
15080
|
];
|
|
14944
15081
|
const pipes = [
|
|
14945
15082
|
NumeralPipe,
|
|
@@ -14994,7 +15131,8 @@ const pipes = [
|
|
|
14994
15131
|
HideAcceptCancelButtonsPipe,
|
|
14995
15132
|
FilterInlineActionListPipe,
|
|
14996
15133
|
IsImagePipe,
|
|
14997
|
-
ToolbarSettingsPipe
|
|
15134
|
+
ToolbarSettingsPipe,
|
|
15135
|
+
CardMediaSizePipe
|
|
14998
15136
|
];
|
|
14999
15137
|
const functionL1 = function () {
|
|
15000
15138
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -15185,7 +15323,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15185
15323
|
HideAcceptCancelButtonsPipe,
|
|
15186
15324
|
FilterInlineActionListPipe,
|
|
15187
15325
|
IsImagePipe,
|
|
15188
|
-
ToolbarSettingsPipe,
|
|
15326
|
+
ToolbarSettingsPipe,
|
|
15327
|
+
CardMediaSizePipe, PlaceHolderDirective,
|
|
15189
15328
|
NumbersOnlyInputDirective,
|
|
15190
15329
|
RenderUlvViewerDirective,
|
|
15191
15330
|
RenderUlvPaginDirective,
|
|
@@ -15219,7 +15358,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15219
15358
|
RenderUlvDirective,
|
|
15220
15359
|
PrintFilesDirective,
|
|
15221
15360
|
SaveImageDirective,
|
|
15222
|
-
WebOtpDirective
|
|
15361
|
+
WebOtpDirective,
|
|
15362
|
+
SplideSliderDirective], imports: [CommonModule,
|
|
15223
15363
|
BarsaNovinRayCoreRoutingModule,
|
|
15224
15364
|
BarsaSapUiFormPageModule,
|
|
15225
15365
|
ResizableModule,
|
|
@@ -15297,7 +15437,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15297
15437
|
HideAcceptCancelButtonsPipe,
|
|
15298
15438
|
FilterInlineActionListPipe,
|
|
15299
15439
|
IsImagePipe,
|
|
15300
|
-
ToolbarSettingsPipe,
|
|
15440
|
+
ToolbarSettingsPipe,
|
|
15441
|
+
CardMediaSizePipe, PlaceHolderDirective,
|
|
15301
15442
|
NumbersOnlyInputDirective,
|
|
15302
15443
|
RenderUlvViewerDirective,
|
|
15303
15444
|
RenderUlvPaginDirective,
|
|
@@ -15331,7 +15472,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15331
15472
|
RenderUlvDirective,
|
|
15332
15473
|
PrintFilesDirective,
|
|
15333
15474
|
SaveImageDirective,
|
|
15334
|
-
WebOtpDirective
|
|
15475
|
+
WebOtpDirective,
|
|
15476
|
+
SplideSliderDirective] }); }
|
|
15335
15477
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
15336
15478
|
BarsaNovinRayCoreRoutingModule,
|
|
15337
15479
|
BarsaSapUiFormPageModule,
|
|
@@ -15361,5 +15503,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
15361
15503
|
* Generated bundle index. Do not edit.
|
|
15362
15504
|
*/
|
|
15363
15505
|
|
|
15364
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
15506
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DateTimeToCaptionPipe, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicStyleDirective, EllapsisTextDirective, EllipsifyDirective, EmptyPageComponent, EmptyPageWithRouterAndRouterOutletComponent, EnumControlInfoModel, ExecuteDynamicCommand, ExecuteWorkflowChoiceDef, FORM_DIALOG_COMPONENT, FieldBaseComponent, FieldDirective, FieldInfoTypeEnum, FieldUiComponent, FileControlInfoModel, FileInfoCountPipe, FilePictureInfoModel, FilesValidationHelper, FillAllLayoutControls, FillEmptySpaceDirective, FilterColumnsByDetailsPipe, FilterInlineActionListPipe, FilterPipe, FilterStringPipe, FilterTabPipe, FilterToolbarControlPipe, FilterWorkflowInMobilePipe, FindColumnByDbNamePipe, FindGroup, FindLayoutSettingFromLayout94, FindPreviewColumnPipe, FindToolbarItem, FioriIconPipe, FormBaseComponent, FormCloseDirective, FormComponent, FormFieldReportPageComponent, FormNewComponent, FormPageBaseComponent, FormPageComponent, FormPanelService, FormPropsBaseComponent, FormService, FormToolbarBaseComponent, GaugeControlInfoModel, GeneralControlInfoModel, GetAllColumnsSorted, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportCalendarModel, ReportContainerComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, forbiddenValidator, formRoutes, formatBytes, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, measureText, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
15365
15507
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|