barsa-novin-ray-core 2.3.86 → 2.3.88
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.mjs +125 -79
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +18 -9
- package/package.json +1 -1
|
@@ -5166,11 +5166,16 @@ class ApplicationCtrlrService {
|
|
|
5166
5166
|
}
|
|
5167
5167
|
this._addSystemUi(context._systemsUi);
|
|
5168
5168
|
this._customApplicationMenuBodyUi = appMenuBodyUi;
|
|
5169
|
-
this._customApplicationMenuBodyUi.on({
|
|
5170
|
-
HideMenu: () => !this._isMobile && this.deviceSize !== 's' && this._document?.body?.click()
|
|
5171
|
-
});
|
|
5172
5169
|
}
|
|
5173
5170
|
_appMenuBodyUi_itemsChanged(items) {
|
|
5171
|
+
items.forEach((c) => {
|
|
5172
|
+
const x = c.callback;
|
|
5173
|
+
c.callback = (e) => {
|
|
5174
|
+
x && x(e);
|
|
5175
|
+
this._document?.body?.click();
|
|
5176
|
+
this.sidebarToggled(true);
|
|
5177
|
+
};
|
|
5178
|
+
});
|
|
5174
5179
|
this._appMenuItems$.next([...items]);
|
|
5175
5180
|
}
|
|
5176
5181
|
_addSystemUi(_systemUi) {
|
|
@@ -8642,57 +8647,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
8642
8647
|
args: ['class.isTablet']
|
|
8643
8648
|
}] } });
|
|
8644
8649
|
|
|
8645
|
-
var IntersectionStatus;
|
|
8646
|
-
(function (IntersectionStatus) {
|
|
8647
|
-
IntersectionStatus["Visible"] = "Visible";
|
|
8648
|
-
IntersectionStatus["Pending"] = "Pending";
|
|
8649
|
-
IntersectionStatus["NotVisible"] = "NotVisible";
|
|
8650
|
-
})(IntersectionStatus || (IntersectionStatus = {}));
|
|
8651
|
-
/* eslint-disable */
|
|
8652
|
-
const fromIntersectionObserver = (element, config, debounce = 0, autoStop = true) => new Observable((subscriber) => {
|
|
8653
|
-
const subject$ = new Subject();
|
|
8654
|
-
const intersectionObserver = new IntersectionObserver((entries, observer) => {
|
|
8655
|
-
entries.forEach((entry) => {
|
|
8656
|
-
if (isIntersecting(entry)) {
|
|
8657
|
-
subject$.next({ entry, observer });
|
|
8658
|
-
}
|
|
8659
|
-
});
|
|
8660
|
-
}, config);
|
|
8661
|
-
subject$.subscribe(() => {
|
|
8662
|
-
subscriber.next(IntersectionStatus.Pending);
|
|
8663
|
-
});
|
|
8664
|
-
subject$.pipe(debounceTime(debounce), filter(Boolean)).subscribe(async (x) => {
|
|
8665
|
-
const { entry, observer } = x;
|
|
8666
|
-
const isEntryVisible = await isVisible(entry.target);
|
|
8667
|
-
if (isEntryVisible) {
|
|
8668
|
-
subscriber.next(IntersectionStatus.Visible);
|
|
8669
|
-
autoStop && observer.unobserve(entry.target);
|
|
8670
|
-
}
|
|
8671
|
-
else {
|
|
8672
|
-
subscriber.next(IntersectionStatus.NotVisible);
|
|
8673
|
-
}
|
|
8674
|
-
});
|
|
8675
|
-
intersectionObserver.observe(element);
|
|
8676
|
-
return {
|
|
8677
|
-
unsubscribe() {
|
|
8678
|
-
intersectionObserver.disconnect();
|
|
8679
|
-
subject$.unsubscribe();
|
|
8680
|
-
}
|
|
8681
|
-
};
|
|
8682
|
-
});
|
|
8683
|
-
async function isVisible(element) {
|
|
8684
|
-
return new Promise((resolve) => {
|
|
8685
|
-
const observer = new IntersectionObserver(([entry]) => {
|
|
8686
|
-
resolve(entry.isIntersecting);
|
|
8687
|
-
observer.disconnect();
|
|
8688
|
-
});
|
|
8689
|
-
observer.observe(element);
|
|
8690
|
-
});
|
|
8691
|
-
}
|
|
8692
|
-
function isIntersecting(entry) {
|
|
8693
|
-
return true; // entry.isIntersecting || entry.intersectionRatio > 0;
|
|
8694
|
-
}
|
|
8695
|
-
|
|
8696
8650
|
class FormBaseComponent extends BaseComponent {
|
|
8697
8651
|
constructor() {
|
|
8698
8652
|
super();
|
|
@@ -8777,20 +8731,6 @@ class FormBaseComponent extends BaseComponent {
|
|
|
8777
8731
|
this.obtainHeight();
|
|
8778
8732
|
});
|
|
8779
8733
|
}
|
|
8780
|
-
ngAfterViewInit() {
|
|
8781
|
-
super.ngAfterViewInit();
|
|
8782
|
-
if (this.isMobile) {
|
|
8783
|
-
this._formIntersection = fromIntersectionObserver(this._el.nativeElement, {
|
|
8784
|
-
root: null,
|
|
8785
|
-
rootMargin: '0px',
|
|
8786
|
-
threshold: 0
|
|
8787
|
-
}, 100, false)
|
|
8788
|
-
.pipe(takeUntil(this._onDestroy$))
|
|
8789
|
-
.subscribe((e) => {
|
|
8790
|
-
this._onInView(e);
|
|
8791
|
-
});
|
|
8792
|
-
}
|
|
8793
|
-
}
|
|
8794
8734
|
ngOnDestroy() {
|
|
8795
8735
|
super.ngOnDestroy();
|
|
8796
8736
|
if (this._formIntersection) {
|
|
@@ -8822,12 +8762,6 @@ class FormBaseComponent extends BaseComponent {
|
|
|
8822
8762
|
const fieldUi = this.context._listFieldUi.find((c) => c.originalXtype === 'Ui.SearchCommandInfoUi');
|
|
8823
8763
|
fieldUi.fireEvent(BarsaApi.Ul.FormPanelCtrlr.EventEnum.SearchClick, fieldUi);
|
|
8824
8764
|
}
|
|
8825
|
-
_onInView(e) {
|
|
8826
|
-
if (this.isMobile) {
|
|
8827
|
-
this.formVisibilityStatus = e;
|
|
8828
|
-
this._cdr.detectChanges();
|
|
8829
|
-
}
|
|
8830
|
-
}
|
|
8831
8765
|
obtainHeight() {
|
|
8832
8766
|
const parentHeight = getParentHeight(this._el.nativeElement);
|
|
8833
8767
|
this._formPanelService.setFormHeight(parentHeight);
|
|
@@ -10002,6 +9936,57 @@ class FilesValidationHelper {
|
|
|
10002
9936
|
}
|
|
10003
9937
|
}
|
|
10004
9938
|
|
|
9939
|
+
var IntersectionStatus;
|
|
9940
|
+
(function (IntersectionStatus) {
|
|
9941
|
+
IntersectionStatus["Visible"] = "Visible";
|
|
9942
|
+
IntersectionStatus["Pending"] = "Pending";
|
|
9943
|
+
IntersectionStatus["NotVisible"] = "NotVisible";
|
|
9944
|
+
})(IntersectionStatus || (IntersectionStatus = {}));
|
|
9945
|
+
/* eslint-disable */
|
|
9946
|
+
const fromIntersectionObserver = (element, config, debounce = 0, autoStop = true) => new Observable((subscriber) => {
|
|
9947
|
+
const subject$ = new Subject();
|
|
9948
|
+
const intersectionObserver = new IntersectionObserver((entries, observer) => {
|
|
9949
|
+
entries.forEach((entry) => {
|
|
9950
|
+
if (isIntersecting(entry)) {
|
|
9951
|
+
subject$.next({ entry, observer });
|
|
9952
|
+
}
|
|
9953
|
+
});
|
|
9954
|
+
}, config);
|
|
9955
|
+
subject$.subscribe(() => {
|
|
9956
|
+
subscriber.next(IntersectionStatus.Pending);
|
|
9957
|
+
});
|
|
9958
|
+
subject$.pipe(debounceTime(debounce), filter(Boolean)).subscribe(async (x) => {
|
|
9959
|
+
const { entry, observer } = x;
|
|
9960
|
+
const isEntryVisible = await isVisible(entry.target);
|
|
9961
|
+
if (isEntryVisible) {
|
|
9962
|
+
subscriber.next(IntersectionStatus.Visible);
|
|
9963
|
+
autoStop && observer.unobserve(entry.target);
|
|
9964
|
+
}
|
|
9965
|
+
else {
|
|
9966
|
+
subscriber.next(IntersectionStatus.NotVisible);
|
|
9967
|
+
}
|
|
9968
|
+
});
|
|
9969
|
+
intersectionObserver.observe(element);
|
|
9970
|
+
return {
|
|
9971
|
+
unsubscribe() {
|
|
9972
|
+
intersectionObserver.disconnect();
|
|
9973
|
+
subject$.unsubscribe();
|
|
9974
|
+
}
|
|
9975
|
+
};
|
|
9976
|
+
});
|
|
9977
|
+
async function isVisible(element) {
|
|
9978
|
+
return new Promise((resolve) => {
|
|
9979
|
+
const observer = new IntersectionObserver(([entry]) => {
|
|
9980
|
+
resolve(entry.isIntersecting);
|
|
9981
|
+
observer.disconnect();
|
|
9982
|
+
});
|
|
9983
|
+
observer.observe(element);
|
|
9984
|
+
});
|
|
9985
|
+
}
|
|
9986
|
+
function isIntersecting(entry) {
|
|
9987
|
+
return true; // entry.isIntersecting || entry.intersectionRatio > 0;
|
|
9988
|
+
}
|
|
9989
|
+
|
|
10005
9990
|
class ReportViewBaseComponent extends BaseComponent {
|
|
10006
9991
|
constructor() {
|
|
10007
9992
|
super(...arguments);
|
|
@@ -15523,6 +15508,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
15523
15508
|
type: Output
|
|
15524
15509
|
}] } });
|
|
15525
15510
|
|
|
15511
|
+
class ResizeHandlerDirective extends BaseDirective {
|
|
15512
|
+
constructor() {
|
|
15513
|
+
super(...arguments);
|
|
15514
|
+
this.$resize = new Subject();
|
|
15515
|
+
}
|
|
15516
|
+
ngOnInit() {
|
|
15517
|
+
super.ngOnInit();
|
|
15518
|
+
this._handleResize();
|
|
15519
|
+
this.$resize
|
|
15520
|
+
.asObservable()
|
|
15521
|
+
.pipe(takeUntil$1(this._onDestroy$), debounceTime$1(200))
|
|
15522
|
+
.subscribe(() => this._resize());
|
|
15523
|
+
}
|
|
15524
|
+
ngOnDestroy() {
|
|
15525
|
+
super.ngOnDestroy();
|
|
15526
|
+
this._ro.disconnect();
|
|
15527
|
+
}
|
|
15528
|
+
_resize() {
|
|
15529
|
+
if (typeof this.fnResize === 'function') {
|
|
15530
|
+
this.fnResize();
|
|
15531
|
+
}
|
|
15532
|
+
}
|
|
15533
|
+
_handleResize() {
|
|
15534
|
+
fromEvent(window, 'resize')
|
|
15535
|
+
.pipe(takeUntil$1(this._onDestroy$))
|
|
15536
|
+
.subscribe(() => {
|
|
15537
|
+
this.$resize.next();
|
|
15538
|
+
});
|
|
15539
|
+
// اگر container تغییر اندازه پیدا کرد (مثلاً parent تغییر کنه)
|
|
15540
|
+
try {
|
|
15541
|
+
this._ro = new ResizeObserver(() => {
|
|
15542
|
+
requestAnimationFrame(() => {
|
|
15543
|
+
this.$resize.next();
|
|
15544
|
+
});
|
|
15545
|
+
});
|
|
15546
|
+
if (this._el?.nativeElement) {
|
|
15547
|
+
this._ro.observe(this._el.nativeElement);
|
|
15548
|
+
}
|
|
15549
|
+
}
|
|
15550
|
+
catch {
|
|
15551
|
+
// مرورگرهای خیلی قدیمی ممکنه ResizeObserver نداشته باشند
|
|
15552
|
+
// در آنصورت rely به window resize میکنیم
|
|
15553
|
+
// no-op
|
|
15554
|
+
}
|
|
15555
|
+
}
|
|
15556
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ResizeHandlerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
15557
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.6", type: ResizeHandlerDirective, isStandalone: false, selector: "[resizeHandler]", inputs: { fnResize: "fnResize" }, usesInheritance: true, ngImport: i0 }); }
|
|
15558
|
+
}
|
|
15559
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ResizeHandlerDirective, decorators: [{
|
|
15560
|
+
type: Directive,
|
|
15561
|
+
args: [{
|
|
15562
|
+
selector: '[resizeHandler]',
|
|
15563
|
+
standalone: false
|
|
15564
|
+
}]
|
|
15565
|
+
}], propDecorators: { fnResize: [{
|
|
15566
|
+
type: Input
|
|
15567
|
+
}] } });
|
|
15568
|
+
|
|
15526
15569
|
class PortalDynamicPageResolver {
|
|
15527
15570
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
15528
15571
|
constructor() {
|
|
@@ -15734,7 +15777,7 @@ class ReportContainerComponent extends BaseComponent {
|
|
|
15734
15777
|
Id: null,
|
|
15735
15778
|
ReportId: this.settings.RelatedReport.Id,
|
|
15736
15779
|
UlvParams: ulvParam
|
|
15737
|
-
}, this.vcr, this.injector)
|
|
15780
|
+
}, this.vcr, this.injector, this.settings.IsReportPage)
|
|
15738
15781
|
.pipe(takeUntil(this._onDestroy$), catchError((err) => throwError(err)), finalize(() => this._loadingSource.next(false)))
|
|
15739
15782
|
.subscribe();
|
|
15740
15783
|
}
|
|
@@ -16661,7 +16704,8 @@ const directives = [
|
|
|
16661
16704
|
ScrollPersistDirective,
|
|
16662
16705
|
TooltipDirective,
|
|
16663
16706
|
SimplebarDirective,
|
|
16664
|
-
LeafletLongPressDirective
|
|
16707
|
+
LeafletLongPressDirective,
|
|
16708
|
+
ResizeHandlerDirective
|
|
16665
16709
|
];
|
|
16666
16710
|
const services = [
|
|
16667
16711
|
PortalService,
|
|
@@ -16972,7 +17016,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
16972
17016
|
ScrollPersistDirective,
|
|
16973
17017
|
TooltipDirective,
|
|
16974
17018
|
SimplebarDirective,
|
|
16975
|
-
LeafletLongPressDirective
|
|
17019
|
+
LeafletLongPressDirective,
|
|
17020
|
+
ResizeHandlerDirective], imports: [CommonModule,
|
|
16976
17021
|
BarsaNovinRayCoreRoutingModule,
|
|
16977
17022
|
BarsaSapUiFormPageModule,
|
|
16978
17023
|
ResizableModule,
|
|
@@ -17106,7 +17151,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
17106
17151
|
ScrollPersistDirective,
|
|
17107
17152
|
TooltipDirective,
|
|
17108
17153
|
SimplebarDirective,
|
|
17109
|
-
LeafletLongPressDirective
|
|
17154
|
+
LeafletLongPressDirective,
|
|
17155
|
+
ResizeHandlerDirective] }); }
|
|
17110
17156
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
17111
17157
|
BarsaNovinRayCoreRoutingModule,
|
|
17112
17158
|
BarsaSapUiFormPageModule,
|
|
@@ -17136,5 +17182,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
17136
17182
|
* Generated bundle index. Do not edit.
|
|
17137
17183
|
*/
|
|
17138
17184
|
|
|
17139
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, 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, CardMediaSizePipe, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, 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, 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, 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, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, 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, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, 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, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
17185
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, 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, CardMediaSizePipe, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, ContainerComponent, ContainerService, ContextMenuPipe, ControlUiPipe, ConvertToStylePipe, CopyDirective, CountDownDirective, CustomCommand, CustomInjector, CustomRouteReuseStategy, 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, 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, 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, ResizeHandlerDirective, ResizeObserverDirective, ReversePipe, RichStringControlInfoModel, RootPageComponent, RootPortalComponent, RouteFormChangeDirective, RoutingService, RowDataOption, RowNumberPipe, 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, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, 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, measureText, measureText2, measureTextBy, mobile_regex, nullOrUndefinedString, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
17140
17186
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|