barsa-novin-ray-core 2.3.108 → 2.3.109

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.
@@ -5473,6 +5473,8 @@ class ApplicationCtrlrService {
5473
5473
  });
5474
5474
  BarsaApi.Ul.ApplicationCtrlr.Initialize(() => {
5475
5475
  this._handleEvents();
5476
+ const selectedSystem = BarsaApi.Ul.ApplicationCtrlr.GetSelectedSystem();
5477
+ this.systemChange(selectedSystem.Id);
5476
5478
  callback && callback(true);
5477
5479
  });
5478
5480
  this._document.documentElement.setAttribute('data-layout', 'vertical');
@@ -5488,6 +5490,9 @@ class ApplicationCtrlrService {
5488
5490
  // console.error(`system data for systemid ${systemId} not found.`);
5489
5491
  return;
5490
5492
  }
5493
+ if (this.deviceSize !== 's' && this.deviceSize !== 'm') {
5494
+ this.sidebarToggled(true);
5495
+ }
5491
5496
  this._selectedSystemTitle$.next(systemData.Caption);
5492
5497
  this._customApplicationMenuBodyUi.fireEvent('SelectedSystemChanged', this._customApplicationMenuBodyUi, systemData);
5493
5498
  }
@@ -5582,7 +5587,10 @@ class ApplicationCtrlrService {
5582
5587
  else {
5583
5588
  canSupport = isVersionBiggerThan('4.1.178');
5584
5589
  }
5585
- if (Object.keys(this._searchNavigators$.getValue()).length || canSupport) {
5590
+ if (!canSupport) {
5591
+ return;
5592
+ }
5593
+ if (Object.keys(this._searchNavigators$.getValue()).length) {
5586
5594
  return;
5587
5595
  }
5588
5596
  BarsaApi.Common.Ajax.GetServerData('System94.Search', { term: '' }, (e) => {
@@ -6336,7 +6344,11 @@ class PortalService {
6336
6344
  _addPage(routes, page) {
6337
6345
  const portalService = this;
6338
6346
  const traverse = (children, cpage) => {
6347
+ if (!children) {
6348
+ return;
6349
+ }
6339
6350
  const path = cpage.RoutePath;
6351
+ const x = this.getListOfChildPage(cpage);
6340
6352
  const pageComponent = portalService.getComponentType(cpage.Module, cpage.ComponentName, cpage.ComponentSelector);
6341
6353
  const newRoute = {
6342
6354
  path: (cpage.IsDefaultRoute === 'True' && path === '') || (path !== '' && typeof path !== 'undefined')
@@ -6355,11 +6367,15 @@ class PortalService {
6355
6367
  ...cpage
6356
6368
  }
6357
6369
  },
6358
- children: [reportRoutes(), formRoutes()]
6370
+ children: []
6359
6371
  };
6372
+ const constChildRoutes = [reportRoutes(), formRoutes()];
6373
+ if (!x.length || x.find((c) => c.IsDefaultRoute !== 'True')) {
6374
+ newRoute.children = constChildRoutes;
6375
+ }
6360
6376
  children.push(newRoute);
6361
6377
  // Recursively process each MetaObjectModel inside MoDataList
6362
- this.getListOfChildPage(cpage).forEach((c) => traverse(newRoute.children, c));
6378
+ x.forEach((c) => traverse(newRoute.children, c));
6363
6379
  };
6364
6380
  traverse(routes, page);
6365
6381
  }
@@ -6832,6 +6848,8 @@ class UlvMainService {
6832
6848
  this._onlyInlineEditSource = new BehaviorSubject(false);
6833
6849
  this._inlineEditModeSource = new BehaviorSubject(false);
6834
6850
  this._allowInlineEditSource = new BehaviorSubject(false);
6851
+ this._gridSettingSource = new BehaviorSubject(DefaultGridSetting);
6852
+ this._gridAllowSortSource = new BehaviorSubject(false);
6835
6853
  this._cartableKeySeperator = '@';
6836
6854
  this._titleSource = new BehaviorSubject({
6837
6855
  text: '',
@@ -6859,6 +6877,14 @@ class UlvMainService {
6859
6877
  this._workflowShareButtons = [];
6860
6878
  this._prepareMoForNewForm$ = new Subject();
6861
6879
  this._hideViewerLoadingSource = new BehaviorSubject(false);
6880
+ this._commandsAccessSource = new BehaviorSubject(DefaultCommandsAccessValue);
6881
+ this._viewCollectionSource = new BehaviorSubject([]);
6882
+ this._useLayoutItemTextForControlSource = new BehaviorSubject(false);
6883
+ this._hideTitleSource = new BehaviorSubject(true);
6884
+ this._createNewInlineMo$ = new Subject();
6885
+ this._sortSettingChanged$ = new Subject();
6886
+ this._updateGridSettingByUser$ = new Subject();
6887
+ this._selectedView$ = new BehaviorSubject(null);
6862
6888
  this.context$ = this._contextSource
6863
6889
  .asObservable()
6864
6890
  .pipe(takeUntil(this._onDestroy$), tap((context) => (this.context = context)), tap((context) => this._initialize(context)), tap((context) => this._addEventListener(context)))
@@ -6888,8 +6914,10 @@ class UlvMainService {
6888
6914
  ...wfBtns,
6889
6915
  ...c.map((d) => ({
6890
6916
  ...d,
6891
- hideText: d.Command?.IsBuiltin &&
6892
- (d.itemId === 'New' || d.itemId === 'AddToList' || d.itemId === 'RemoveFromList')
6917
+ hideText: !d.Command?.IsBuiltin ||
6918
+ d.itemId === 'New' ||
6919
+ d.itemId === 'AddToList' ||
6920
+ d.itemId === 'RemoveFromList'
6893
6921
  ? false
6894
6922
  : true
6895
6923
  }))
@@ -6922,6 +6950,48 @@ class UlvMainService {
6922
6950
  this.allSearchPanelSettings$
6923
6951
  ]).pipe(map(([id, settings]) => settings?.find((c) => c.Id === id)), shareReplay$1(1));
6924
6952
  }
6953
+ get selectedView$() {
6954
+ return this._selectedView$.asObservable();
6955
+ }
6956
+ get inlineEditMode() {
6957
+ return this._inlineEditModeSource.getValue();
6958
+ }
6959
+ get gridSettingChangedByUser$() {
6960
+ return this._updateGridSettingByUser$.asObservable();
6961
+ }
6962
+ get sortSettingChanged$() {
6963
+ return this._sortSettingChanged$.asObservable();
6964
+ }
6965
+ get createNewInlineMo$() {
6966
+ return this._createNewInlineMo$.asObservable();
6967
+ }
6968
+ get hideTitle$() {
6969
+ return this._hideTitleSource.asObservable();
6970
+ }
6971
+ get useLayoutItemTextForControl$() {
6972
+ return this._useLayoutItemTextForControlSource.asObservable();
6973
+ }
6974
+ get viewCollection$() {
6975
+ return this._viewCollectionSource.asObservable();
6976
+ }
6977
+ get commandsAccess() {
6978
+ return this._commandsAccessSource.getValue();
6979
+ }
6980
+ get commandsAccess$() {
6981
+ return this._commandsAccessSource.asObservable();
6982
+ }
6983
+ get hasSelected$() {
6984
+ return this.moDataList$.pipe(map((moList) => moList.some((c) => c.$IsChecked)));
6985
+ }
6986
+ get gridAllowSort$() {
6987
+ return this._gridAllowSortSource.asObservable();
6988
+ }
6989
+ get gridSetting() {
6990
+ return this._gridSettingSource.getValue();
6991
+ }
6992
+ get gridSetting$() {
6993
+ return this._gridSettingSource.asObservable();
6994
+ }
6925
6995
  get hideViewerLoading$() {
6926
6996
  return this._hideViewerLoadingSource.asObservable();
6927
6997
  }
@@ -6976,6 +7046,36 @@ class UlvMainService {
6976
7046
  get shortCuts$() {
6977
7047
  return this._shortCutsSource.asObservable();
6978
7048
  }
7049
+ setSelectedView(selectedView) {
7050
+ this._selectedView$.next(selectedView);
7051
+ }
7052
+ userChangeGridSetting(setting, isSort = false, raiseEvent = true) {
7053
+ this._updateGridSettingByUser$.next({ setting, isSort, raiseEvent });
7054
+ }
7055
+ sortSettingChange(gridSetting) {
7056
+ this._sortSettingChanged$.next(gridSetting);
7057
+ }
7058
+ newInlineMo(checked) {
7059
+ this._createNewInlineMo$.next(checked);
7060
+ }
7061
+ setHideTitle(hideTitle) {
7062
+ this._hideTitleSource.next(hideTitle);
7063
+ }
7064
+ setUseLayoutItemTextForControl(useLayoutItemTextForControl) {
7065
+ this._useLayoutItemTextForControlSource.next(useLayoutItemTextForControl);
7066
+ }
7067
+ setViewCollection(collection) {
7068
+ this._viewCollectionSource.next(collection);
7069
+ }
7070
+ setAccess(access) {
7071
+ this._commandsAccessSource.next(access);
7072
+ }
7073
+ setAllowGridColumnSort(allow) {
7074
+ this._gridAllowSortSource.next(allow);
7075
+ }
7076
+ setGridSetting(gridSetting) {
7077
+ this._gridSettingSource.next(gridSetting);
7078
+ }
6979
7079
  prepareMoForNewForm(mo) {
6980
7080
  this._prepareMoForNewForm$.next(mo);
6981
7081
  }
@@ -9591,12 +9691,11 @@ class ReportBaseComponent extends BaseComponent {
9591
9691
  this._ulvMainService = inject(UlvMainService);
9592
9692
  this._visibleColumnsSource = new BehaviorSubject([]);
9593
9693
  this.searchTermSource = new BehaviorSubject('');
9594
- this.gridSettingSource = new BehaviorSubject(this.defaultGridSetting);
9595
9694
  this.groupbySource = new BehaviorSubject([]);
9596
9695
  this._allCheckedSource = new BehaviorSubject(false);
9597
9696
  this.visibleColumns$ = this._visibleColumnsSource.asObservable();
9598
9697
  this.searchTerm$ = this.searchTermSource.asObservable();
9599
- this.gridSetting$ = this.gridSettingSource.asObservable();
9698
+ this.gridSetting$ = this._ulvMainService.gridSetting$;
9600
9699
  this.groupby$ = this.groupbySource.asObservable();
9601
9700
  this.allChecked$ = this._allCheckedSource.asObservable();
9602
9701
  this.fields = {};
@@ -9629,6 +9728,12 @@ class ReportBaseComponent extends BaseComponent {
9629
9728
  this.selectedMo$ = this._ulvMainService.moDataList$.pipe(map((items) => items.find((c) => c.$IsChecked)));
9630
9729
  this.moDataList$ = this._ulvMainService.moDataList$.pipe(tap((items) => this._setAllChecked(items)));
9631
9730
  this.selectedCount$ = this._ulvMainService.selectedCount$;
9731
+ this._ulvMainService.setAllowGridColumnSort(this.context.ViewSetting?.AllowGridColumnSort);
9732
+ this._ulvMainService.setAccess(this.context.Setting.Extra?.DefaultCommandsAccess);
9733
+ this._ulvMainService.gridSettingChangedByUser$.pipe(takeUntil(this._onDestroy$)).subscribe(c => {
9734
+ const { setting, isSort, raiseEvent } = c;
9735
+ this.updateGridSetting(setting, isSort, raiseEvent);
9736
+ });
9632
9737
  this.context.on({
9633
9738
  scope: this,
9634
9739
  MoDataListChanged: this._moDataListChanged,
@@ -9685,7 +9790,7 @@ class ReportBaseComponent extends BaseComponent {
9685
9790
  this.context.fireEvent('columnSummary', this.context, e.moArr, e.column, e.groupLevel, e.groupName, e.summaryFn);
9686
9791
  }
9687
9792
  _gridSettingChanged(setting) {
9688
- this.gridSettingSource.next(setting);
9793
+ this._ulvMainService.setGridSetting(setting);
9689
9794
  }
9690
9795
  _prepareMoForNewForm(_context, mo) {
9691
9796
  mo && this._ulvMainService.prepareMoForNewForm(mo);
@@ -9697,7 +9802,7 @@ class ReportBaseComponent extends BaseComponent {
9697
9802
  this._allCheckedSource.next(items.length > 0 && !items.some((c) => !c.$IsChecked));
9698
9803
  }
9699
9804
  _handleColumnsResized(e) {
9700
- const gridSetting = this.gridSettingSource.getValue();
9805
+ const gridSetting = this._ulvMainService.gridSetting;
9701
9806
  const { columns, resized } = e;
9702
9807
  const colList = gridSetting.ColSettingList;
9703
9808
  resized.forEach((column1) => {
@@ -9736,7 +9841,7 @@ class ReportBaseComponent extends BaseComponent {
9736
9841
  return;
9737
9842
  }
9738
9843
  this.context.Setting.View.GridSetting = setting;
9739
- this.gridSettingSource.next(setting);
9844
+ this._ulvMainService.setGridSetting(setting);
9740
9845
  this.applyGroupby();
9741
9846
  if (isSort) {
9742
9847
  setting.Event = 'SortChange';
@@ -9753,7 +9858,7 @@ class ReportBaseComponent extends BaseComponent {
9753
9858
  updateSortSettings(sortSettings, raiseEvent = true) {
9754
9859
  const gridSettings = this.context.Setting.View.GridSetting;
9755
9860
  gridSettings.SortSettingList = sortSettings;
9756
- this.gridSettingSource.next(gridSettings);
9861
+ this._ulvMainService.setGridSetting(gridSettings);
9757
9862
  this.applyGroupby();
9758
9863
  gridSettings.Event = 'SortChange';
9759
9864
  if (raiseEvent) {
@@ -10547,6 +10652,17 @@ class BaseReportModel {
10547
10652
  this.DefaultItemComponent = 'ReportDefaultItemComponent';
10548
10653
  }
10549
10654
  }
10655
+ const DefaultCommandsAccessValue = {
10656
+ Add: false,
10657
+ AddToList: false,
10658
+ Delete: false,
10659
+ Edit: false,
10660
+ Export: false,
10661
+ Print: false,
10662
+ Refresh: false,
10663
+ RemoveFromList: false,
10664
+ View: false
10665
+ };
10550
10666
  class CustomCommand {
10551
10667
  }
10552
10668
  class ReportModel extends BaseReportModel {
@@ -10564,6 +10680,12 @@ class ReportTreeModel extends BaseReportModel {
10564
10680
  }
10565
10681
  class ReportViewColumn {
10566
10682
  }
10683
+ const DefaultGridSetting = {
10684
+ ColSettingList: [],
10685
+ AutoSizeColumns: false,
10686
+ SortSettingList: [],
10687
+ Hidden: true
10688
+ };
10567
10689
  class GridSetting {
10568
10690
  }
10569
10691
  class ColSetting {
@@ -12356,6 +12478,9 @@ class BaseDynamicComponent extends BaseComponent {
12356
12478
  this._component.instance.value = this.value;
12357
12479
  }
12358
12480
  this.setComponentInputs();
12481
+ if (typeof this.FnHandleEvents === 'function') {
12482
+ this.FnHandleEvents(this._component.instance);
12483
+ }
12359
12484
  const events = this._component.instance.events;
12360
12485
  if (events) {
12361
12486
  events
@@ -12367,6 +12492,7 @@ class BaseDynamicComponent extends BaseComponent {
12367
12492
  });
12368
12493
  // this.setComponentInputs();
12369
12494
  }
12495
+ setOutput() { }
12370
12496
  setComponentInputs() {
12371
12497
  const inputProperties = Object.keys(this).filter((c) => !c.startsWith('_') && c !== 'events');
12372
12498
  inputProperties.forEach((key) => {
@@ -12387,7 +12513,7 @@ class BaseDynamicComponent extends BaseComponent {
12387
12513
  }
12388
12514
  }
12389
12515
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseDynamicComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12390
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: BaseDynamicComponent, isStandalone: false, selector: "bnrc-dynamic-component", inputs: { component: "component", value: "value" }, outputs: { events: "events" }, viewQueries: [{ propertyName: "_container", first: true, predicate: ["componentContainer"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12516
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: BaseDynamicComponent, isStandalone: false, selector: "bnrc-dynamic-component", inputs: { component: "component", FnHandleEvents: "FnHandleEvents", value: "value" }, outputs: { events: "events" }, viewQueries: [{ propertyName: "_container", first: true, predicate: ["componentContainer"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
12391
12517
  }
12392
12518
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseDynamicComponent, decorators: [{
12393
12519
  type: Component,
@@ -12402,6 +12528,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
12402
12528
  args: ['componentContainer', { read: ViewContainerRef, static: true }]
12403
12529
  }], component: [{
12404
12530
  type: Input
12531
+ }], FnHandleEvents: [{
12532
+ type: Input
12405
12533
  }], value: [{
12406
12534
  type: Input
12407
12535
  }], events: [{
@@ -13601,6 +13729,85 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
13601
13729
  type: Output
13602
13730
  }] } });
13603
13731
 
13732
+ class DynamicUlvToolbarComponent extends BaseDynamicComponent {
13733
+ constructor() {
13734
+ super(...arguments);
13735
+ this.hideTitle = false;
13736
+ }
13737
+ ngOnChanges(changes) {
13738
+ if (this._component) {
13739
+ Object.keys(changes).forEach((key) => {
13740
+ if (!changes[key].firstChange) {
13741
+ this._component.instance[key] = changes[key].currentValue;
13742
+ }
13743
+ });
13744
+ this._component.instance.ngOnChanges(changes);
13745
+ this._component.instance.changeDetect && this._component.instance.changeDetect();
13746
+ }
13747
+ }
13748
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicUlvToolbarComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
13749
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.6", type: DynamicUlvToolbarComponent, isStandalone: false, selector: "bnrc-dynamic-ulv-toolbar-component", inputs: { allowGridColumnSort: "allowGridColumnSort", useLayoutItemTextForControl: "useLayoutItemTextForControl", enableSearch: "enableSearch", hideTitle: "hideTitle", title: "title", icon: "icon", deviceName: "deviceName", deviceSize: "deviceSize", access: "access", hideToolbar: "hideToolbar", toolbarButtons: "toolbarButtons", contentDensity: "contentDensity", inlineEditMode: "inlineEditMode", allowInlineEdit: "allowInlineEdit", gridSetting: "gridSetting", viewCollection: "viewCollection", reportView: "reportView", inDialog: "inDialog", isMultiSelect: "isMultiSelect", cls: "cls", hasSelected: "hasSelected", config: "config", hidden: "hidden", buttons: "buttons", moDataListCount: "moDataListCount" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-container #componentContainer></ng-container>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13750
+ }
13751
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DynamicUlvToolbarComponent, decorators: [{
13752
+ type: Component,
13753
+ args: [{
13754
+ selector: 'bnrc-dynamic-ulv-toolbar-component',
13755
+ template: `<ng-container #componentContainer></ng-container>`,
13756
+ changeDetection: ChangeDetectionStrategy.OnPush,
13757
+ standalone: false
13758
+ }]
13759
+ }], propDecorators: { allowGridColumnSort: [{
13760
+ type: Input
13761
+ }], useLayoutItemTextForControl: [{
13762
+ type: Input
13763
+ }], enableSearch: [{
13764
+ type: Input
13765
+ }], hideTitle: [{
13766
+ type: Input
13767
+ }], title: [{
13768
+ type: Input
13769
+ }], icon: [{
13770
+ type: Input
13771
+ }], deviceName: [{
13772
+ type: Input
13773
+ }], deviceSize: [{
13774
+ type: Input
13775
+ }], access: [{
13776
+ type: Input
13777
+ }], hideToolbar: [{
13778
+ type: Input
13779
+ }], toolbarButtons: [{
13780
+ type: Input
13781
+ }], contentDensity: [{
13782
+ type: Input
13783
+ }], inlineEditMode: [{
13784
+ type: Input
13785
+ }], allowInlineEdit: [{
13786
+ type: Input
13787
+ }], gridSetting: [{
13788
+ type: Input
13789
+ }], viewCollection: [{
13790
+ type: Input
13791
+ }], reportView: [{
13792
+ type: Input
13793
+ }], inDialog: [{
13794
+ type: Input
13795
+ }], isMultiSelect: [{
13796
+ type: Input
13797
+ }], cls: [{
13798
+ type: Input
13799
+ }], hasSelected: [{
13800
+ type: Input
13801
+ }], config: [{
13802
+ type: Input
13803
+ }], hidden: [{
13804
+ type: Input
13805
+ }], buttons: [{
13806
+ type: Input
13807
+ }], moDataListCount: [{
13808
+ type: Input
13809
+ }] } });
13810
+
13604
13811
  class UnlimitSessionComponent extends BaseComponent {
13605
13812
  constructor() {
13606
13813
  super(...arguments);
@@ -17602,6 +17809,7 @@ const components = [
17602
17809
  DynamicItemComponent,
17603
17810
  CardDynamicItemComponent,
17604
17811
  DynamicFormComponent,
17812
+ DynamicUlvToolbarComponent,
17605
17813
  BaseDynamicComponent,
17606
17814
  DynamicFormToolbaritemComponent,
17607
17815
  DynamicLayoutComponent,
@@ -17869,6 +18077,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
17869
18077
  DynamicItemComponent,
17870
18078
  CardDynamicItemComponent,
17871
18079
  DynamicFormComponent,
18080
+ DynamicUlvToolbarComponent,
17872
18081
  BaseDynamicComponent,
17873
18082
  DynamicFormToolbaritemComponent,
17874
18083
  DynamicLayoutComponent,
@@ -18008,6 +18217,7 @@ class BarsaNovinRayCoreModule extends BaseModule {
18008
18217
  DynamicItemComponent,
18009
18218
  CardDynamicItemComponent,
18010
18219
  DynamicFormComponent,
18220
+ DynamicUlvToolbarComponent,
18011
18221
  BaseDynamicComponent,
18012
18222
  DynamicFormToolbaritemComponent,
18013
18223
  DynamicLayoutComponent,
@@ -18158,5 +18368,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
18158
18368
  * Generated bundle index. Do not edit.
18159
18369
  */
18160
18370
 
18161
- export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportBreadcrumbResolver, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, fixUnclosedParentheses, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, scrollToElement, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
18371
+ export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BarsaApi, BarsaDialogService, BarsaIconDictPipe, BarsaNovinRayCoreModule, BarsaReadonlyDirective, BarsaSapUiFormPageModule, BarsaStorageService, BaseColumnPropsComponent, BaseComponent, BaseController, BaseDirective, BaseDynamicComponent, BaseFormToolbaritemPropsComponent, BaseItemContentPropsComponent, BaseModule, BaseReportModel, BaseUlvSettingComponent, BaseViewContentPropsComponent, BaseViewItemPropsComponent, BaseViewPropsComponent, BbbTranslatePipe, BodyClickDirective, BoolControlInfoModel, BreadcrumbService, ButtonLoadingComponent, CalculateControlInfoModel, CanUploadFilePipe, CardBaseItemContentPropsComponent, CardDynamicItemComponent, CardMediaSizePipe, CardViewService, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStrategy, DIALOG_SERVICE, DateHijriService, DateMiladiService, DateRanges, DateService, DateShamsiService, DateTimeControlInfoModel, DefaultCommandsAccessValue, DefaultGridSetting, DeviceWidth, DialogParams, DynamicCommandDirective, DynamicComponentService, DynamicDarkColorPipe, DynamicFormComponent, DynamicFormToolbaritemComponent, DynamicItemComponent, DynamicLayoutComponent, DynamicRootVariableDirective, DynamicStyleDirective, DynamicTileGroupComponent, DynamicUlvToolbarComponent, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, IdbService, ImageLazyDirective, ImageMimeType, ImagetoPrint, InMemoryStorageService, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelStarTrimPipe, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LeafletLongPressDirective, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MapToChatMessagePipe, MasterDetailsPageComponent, MeasureFormTitleWidthDirective, MergeFieldsToColumnsPipe, MetaobjectDataModel, MetaobjectRelationModel, MoForReportModel, MoForReportModelBase, MoInfoUlvMoListPipe, MoInfoUlvPagingPipe, MoReportValueConcatPipe, MoReportValuePipe, MoValuePipe, MobileDirective, ModalRootComponent, MultipleGroupByPipe, NOTIFICATAION_POPUP_SERVER, NOTIFICATION_WEBWORKER_FACTORY, NetworkStatusService, NotFoundComponent, NotificationService, NowraptextDirective, NumberBaseComponent, NumberControlInfoModel, NumbersOnlyInputDirective, NumeralPipe, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, RemoveNewlinePipe, RenderUlvDirective, RenderUlvPaginDirective, RenderUlvViewerDirective, ReplacePipe, ReportBaseComponent, ReportBaseInfo, ReportBreadcrumbResolver, ReportCalendarModel, ReportContainerComponent, ReportEmptyPageComponent, ReportExtraInfo, ReportField, ReportFormModel, ReportItemBaseComponent, ReportListModel, ReportModel, ReportNavigatorComponent, ReportTreeModel, ReportViewBaseComponent, ReportViewColumn, ResizableComponent, ResizableDirective, ResizableModule, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RotateImage, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, SafeBottomDirective, SanitizeTextPipe, SaveImageDirective, SaveImageToFile, SaveScrollPositionService, ScrollPersistDirective, ScrollToSelectedDirective, SelectionMode, SeperatorFixPipe, ServiceWorkerCommuncationService, ServiceWorkerNotificationService, ShellbarHeightService, ShortcutHandlerDirective, ShortcutRegisterDirective, SimplebarDirective, SingleRelationControlInfoModel, SortDirection, SortPipe, SortSetting, SplideSliderDirective, SplitPipe, StopPropagationDirective, StringControlInfoModel, StringToNumberPipe, SubformControlInfoModel, SystemBaseComponent, TOAST_SERVICE, TableHeaderWidthMode, TableResizerDirective, TabpageService, ThImageOrIconePipe, TileGroupBreadcrumResolver, TilePropsComponent, TlbButtonsPipe, ToolbarSettingsPipe, TooltipDirective, TotalSummaryPipe, UiService, UlvCommandDirective, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, VideoMimeType, VideoRecordingService, ViewBase, VisibleValuePipe, WebOtpDirective, WordMimeType, WorfkflowwChoiceCommandDirective, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, checkPermission, compareVersions, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, fixUnclosedParentheses, flattenTree, forbiddenValidator, formRoutes, formatBytes, fromEntries, fromIntersectionObserver, genrateInlineMoId, getAllItemsPerChildren, getColumnValueOfMoDataList, getComponentDefined, getControlList, getControlSizeMode, getDateService, getDeviceIsDesktop, getDeviceIsMobile, getDeviceIsPhone, getDeviceIsTablet, getFieldValue, getFocusableTagNames, getFormSettings, getGridSettings, getHeaderValue, getIcon, getImagePath, getLabelWidth, getLayout94ObjectInfo, getLayoutControl, getNewMoGridEditor, getParentHeight, getRequestAnimationFrame, getResetGridSettings, getTargetRect, getUniqueId, getValidExtension, isFF, isFirefox, isFunction, isImage, isInLocalMode, isSafari, isTargetWindow, isVersionBiggerThan, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, scrollToElement, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
18162
18372
  //# sourceMappingURL=barsa-novin-ray-core.mjs.map