barsa-novin-ray-core 2.2.91 → 2.2.93
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 +119 -8
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/models.d.ts +2 -0
- package/lib/barsa-novin-ray-core.module.d.ts +8 -6
- package/lib/constants.d.ts +3 -0
- package/lib/directives/index.d.ts +2 -0
- package/lib/directives/measure-form-title-width.directive.d.ts +15 -0
- package/lib/directives/overflow-text.directive.d.ts +14 -0
- package/lib/directives/splide-slider.directive.d.ts +1 -0
- package/lib/services/dynamic-component.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1599,7 +1599,7 @@ function throwIfAlreadyLoaded(parentModule, moduleName) {
|
|
|
1599
1599
|
}
|
|
1600
1600
|
}
|
|
1601
1601
|
const measureTextValues = {};
|
|
1602
|
-
function
|
|
1602
|
+
function measureText2(text, fontSize, fontName) {
|
|
1603
1603
|
if (measureTextValues[text]) {
|
|
1604
1604
|
return measureTextValues[text];
|
|
1605
1605
|
}
|
|
@@ -1609,11 +1609,18 @@ function measureText(text, fontSize) {
|
|
|
1609
1609
|
}
|
|
1610
1610
|
const ctx = measureTextDom.getContext('2d');
|
|
1611
1611
|
fontSize = fontSize ? fontSize : '0.885rem';
|
|
1612
|
-
|
|
1612
|
+
fontName = fontName ? fontName : 'B-Font';
|
|
1613
|
+
ctx.font = `normal ${fontSize} ${fontName}`;
|
|
1613
1614
|
const x = ctx.measureText(text).width;
|
|
1614
1615
|
measureTextValues[text] = x;
|
|
1615
1616
|
return x;
|
|
1616
1617
|
}
|
|
1618
|
+
function measureText(text, fontSize) {
|
|
1619
|
+
return measureText2(text, fontSize, 'IRANYekanDigits');
|
|
1620
|
+
}
|
|
1621
|
+
function measureTextBy(text, fontSize, fontName) {
|
|
1622
|
+
return measureText2(text, fontSize, fontName || 'B-Font');
|
|
1623
|
+
}
|
|
1617
1624
|
function genrateInlineMoId() {
|
|
1618
1625
|
return (BarsaApi.idGenerator--).toString();
|
|
1619
1626
|
}
|
|
@@ -2379,6 +2386,9 @@ function flattenTree(root, prop) {
|
|
|
2379
2386
|
traverse(root);
|
|
2380
2387
|
return result;
|
|
2381
2388
|
}
|
|
2389
|
+
function IsDarkMode() {
|
|
2390
|
+
return document.documentElement.getAttribute('data-mode')?.includes('dark') || false;
|
|
2391
|
+
}
|
|
2382
2392
|
|
|
2383
2393
|
class ApiService {
|
|
2384
2394
|
constructor(httpClient) {
|
|
@@ -2627,6 +2637,11 @@ class DynamicComponentService {
|
|
|
2627
2637
|
};
|
|
2628
2638
|
}
|
|
2629
2639
|
}
|
|
2640
|
+
getComponentType(componentName, moduleName) {
|
|
2641
|
+
const moName = moduleName + 'Module';
|
|
2642
|
+
const module = this._dynamicModuleWithComponents[moName];
|
|
2643
|
+
return module.ngModuleRef.dynamicComponents.find((c) => c.name === componentName + 'Component');
|
|
2644
|
+
}
|
|
2630
2645
|
getComponentBySelector(selector, moduleName, injector) {
|
|
2631
2646
|
const moName = moduleName + 'Module';
|
|
2632
2647
|
const module = this._dynamicModuleWithComponents[moName];
|
|
@@ -13934,7 +13949,7 @@ class SplideSliderDirective extends BaseDirective {
|
|
|
13934
13949
|
this._splide && this._splide.length < this._splide.options.perPage && this._splide.Components.Arrows.destroy();
|
|
13935
13950
|
}
|
|
13936
13951
|
_init() {
|
|
13937
|
-
this._renderer2.setAttribute(this.dom, 'data-splide',
|
|
13952
|
+
this._renderer2.setAttribute(this.dom, 'data-splide', `{"direction":"${this.direction}"}`);
|
|
13938
13953
|
this._splide = new Splide(this.dom, {
|
|
13939
13954
|
...this._getCommonOptions,
|
|
13940
13955
|
gap: +this.sliderGap,
|
|
@@ -13961,10 +13976,13 @@ class SplideSliderDirective extends BaseDirective {
|
|
|
13961
13976
|
rewind: true,
|
|
13962
13977
|
arrows: this.moDataList?.length > 1,
|
|
13963
13978
|
type: 'slide',
|
|
13964
|
-
direction:
|
|
13979
|
+
direction: this.direction,
|
|
13965
13980
|
pagination: false
|
|
13966
13981
|
};
|
|
13967
13982
|
}
|
|
13983
|
+
get direction() {
|
|
13984
|
+
return BarsaApi.LoginFormData.IsRtl ? 'rtl' : 'ltr';
|
|
13985
|
+
}
|
|
13968
13986
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SplideSliderDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
13969
13987
|
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: SplideSliderDirective, isStandalone: false, 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 }); }
|
|
13970
13988
|
}
|
|
@@ -14104,6 +14122,93 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
|
|
|
14104
14122
|
type: Input
|
|
14105
14123
|
}] } });
|
|
14106
14124
|
|
|
14125
|
+
class MeasureFormTitleWidthDirective extends BaseDirective {
|
|
14126
|
+
constructor(_el) {
|
|
14127
|
+
super(_el);
|
|
14128
|
+
this._el = _el;
|
|
14129
|
+
this._renderer2 = inject(Renderer2);
|
|
14130
|
+
this.ismobile = getDeviceIsMobile();
|
|
14131
|
+
}
|
|
14132
|
+
ngOnInit() {
|
|
14133
|
+
super.ngOnInit();
|
|
14134
|
+
this._addClass(this.mWidthTitle);
|
|
14135
|
+
}
|
|
14136
|
+
ngOnChanges(changes) {
|
|
14137
|
+
super.ngOnChanges(changes);
|
|
14138
|
+
changes.mWidthTitle && !changes.mWidthTitle.firstChange && this._addClass(changes.mWidthTitle.currentValue);
|
|
14139
|
+
}
|
|
14140
|
+
_addClass(title) {
|
|
14141
|
+
if (!this.ismobile) {
|
|
14142
|
+
return;
|
|
14143
|
+
}
|
|
14144
|
+
this._renderer2.removeClass(this._el.nativeElement, 'title-auto');
|
|
14145
|
+
const x = measureText(title);
|
|
14146
|
+
const w = this._el.nativeElement.offsetWidth;
|
|
14147
|
+
x > w / 2
|
|
14148
|
+
? this._renderer2.addClass(this._el.nativeElement, 'overflow-toolbar')
|
|
14149
|
+
: this._renderer2.addClass(this._el.nativeElement, 'title-auto');
|
|
14150
|
+
}
|
|
14151
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MeasureFormTitleWidthDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14152
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: MeasureFormTitleWidthDirective, isStandalone: false, selector: "[mWidthTitle]", inputs: { mWidthTitle: "mWidthTitle" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
14153
|
+
}
|
|
14154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MeasureFormTitleWidthDirective, decorators: [{
|
|
14155
|
+
type: Directive,
|
|
14156
|
+
args: [{
|
|
14157
|
+
selector: '[mWidthTitle]',
|
|
14158
|
+
standalone: false
|
|
14159
|
+
}]
|
|
14160
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { mWidthTitle: [{
|
|
14161
|
+
type: Input
|
|
14162
|
+
}] } });
|
|
14163
|
+
|
|
14164
|
+
class OverflowTextDirective extends BaseDirective {
|
|
14165
|
+
constructor() {
|
|
14166
|
+
super(...arguments);
|
|
14167
|
+
this._checkText$ = new Subject();
|
|
14168
|
+
this._renderer2 = inject(Renderer2);
|
|
14169
|
+
}
|
|
14170
|
+
ngAfterViewInit() {
|
|
14171
|
+
super.ngAfterViewInit();
|
|
14172
|
+
this._checkText$.pipe(takeUntil$1(this._onDestroy$), debounceTime$1(500)).subscribe(() => this._checkOverflow());
|
|
14173
|
+
const handleResize = (entries) => {
|
|
14174
|
+
if (entries.length) {
|
|
14175
|
+
this._checkText$.next();
|
|
14176
|
+
}
|
|
14177
|
+
};
|
|
14178
|
+
const resizeObserver = new ResizeObserver(handleResize);
|
|
14179
|
+
// Observe an element
|
|
14180
|
+
resizeObserver.observe(this._el.nativeElement);
|
|
14181
|
+
this.resizeObserver = resizeObserver;
|
|
14182
|
+
}
|
|
14183
|
+
ngOnDestroy() {
|
|
14184
|
+
super.ngOnDestroy();
|
|
14185
|
+
this.resizeObserver.disconnect();
|
|
14186
|
+
}
|
|
14187
|
+
isTextOverflowing(element) {
|
|
14188
|
+
return element.scrollWidth > element.clientWidth;
|
|
14189
|
+
}
|
|
14190
|
+
_checkOverflow() {
|
|
14191
|
+
if (this.isTextOverflowing(this._el.nativeElement)) {
|
|
14192
|
+
this._addOverflowTextClass();
|
|
14193
|
+
}
|
|
14194
|
+
}
|
|
14195
|
+
_addOverflowTextClass() {
|
|
14196
|
+
this._renderer2.removeClass(this._el.nativeElement, 'overflow-text-in');
|
|
14197
|
+
this._renderer2.addClass(this._el.nativeElement, 'overflow-text-in');
|
|
14198
|
+
this._renderer2.addClass(this._el.nativeElement.parentNode, 'child-has-overflow-text');
|
|
14199
|
+
}
|
|
14200
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: OverflowTextDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14201
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: OverflowTextDirective, isStandalone: false, selector: "[overflowText]", exportAs: ["overflowText"], usesInheritance: true, ngImport: i0 }); }
|
|
14202
|
+
}
|
|
14203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: OverflowTextDirective, decorators: [{
|
|
14204
|
+
type: Directive,
|
|
14205
|
+
args: [{
|
|
14206
|
+
selector: '[overflowText]',
|
|
14207
|
+
standalone: false,
|
|
14208
|
+
exportAs: 'overflowText'
|
|
14209
|
+
}]
|
|
14210
|
+
}] });
|
|
14211
|
+
|
|
14107
14212
|
class PortalDynamicPageResolver {
|
|
14108
14213
|
constructor(portalService) {
|
|
14109
14214
|
this.portalService = portalService;
|
|
@@ -15243,7 +15348,9 @@ const directives = [
|
|
|
15243
15348
|
WebOtpDirective,
|
|
15244
15349
|
SplideSliderDirective,
|
|
15245
15350
|
DynamicRootVariableDirective,
|
|
15246
|
-
HorizontalResponsiveDirective
|
|
15351
|
+
HorizontalResponsiveDirective,
|
|
15352
|
+
MeasureFormTitleWidthDirective,
|
|
15353
|
+
OverflowTextDirective
|
|
15247
15354
|
];
|
|
15248
15355
|
const pipes = [
|
|
15249
15356
|
NumeralPipe,
|
|
@@ -15516,7 +15623,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15516
15623
|
WebOtpDirective,
|
|
15517
15624
|
SplideSliderDirective,
|
|
15518
15625
|
DynamicRootVariableDirective,
|
|
15519
|
-
HorizontalResponsiveDirective
|
|
15626
|
+
HorizontalResponsiveDirective,
|
|
15627
|
+
MeasureFormTitleWidthDirective,
|
|
15628
|
+
OverflowTextDirective], imports: [CommonModule,
|
|
15520
15629
|
BarsaNovinRayCoreRoutingModule,
|
|
15521
15630
|
BarsaSapUiFormPageModule,
|
|
15522
15631
|
ResizableModule,
|
|
@@ -15632,7 +15741,9 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
15632
15741
|
WebOtpDirective,
|
|
15633
15742
|
SplideSliderDirective,
|
|
15634
15743
|
DynamicRootVariableDirective,
|
|
15635
|
-
HorizontalResponsiveDirective
|
|
15744
|
+
HorizontalResponsiveDirective,
|
|
15745
|
+
MeasureFormTitleWidthDirective,
|
|
15746
|
+
OverflowTextDirective] }); }
|
|
15636
15747
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: BarsaNovinRayCoreModule, providers: [provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
|
|
15637
15748
|
BarsaNovinRayCoreRoutingModule,
|
|
15638
15749
|
BarsaSapUiFormPageModule,
|
|
@@ -15662,5 +15773,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
|
|
|
15662
15773
|
* Generated bundle index. Do not edit.
|
|
15663
15774
|
*/
|
|
15664
15775
|
|
|
15665
|
-
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, DynamicRootVariableDirective, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, 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, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, 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 };
|
|
15776
|
+
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, DynamicRootVariableDirective, 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, GetAllHorizontalFromLayout94, GetDefaultMoObjectInfo, GetImgTags, GetVisibleValue, GridSetting, GroupBy, GroupByPipe, GroupByService, HeaderFacetValuePipe, HideAcceptCancelButtonsPipe, HideColumnsInmobilePipe, HistoryControlInfoModel, HorizontalLayoutService, HorizontalResponsiveDirective, IconControlInfoModel, ImageLazyDirective, ImageMimeType, ImagetoPrint, IndexedDbService, InputNumber, IntersectionObserverDirective, IntersectionStatus, IsDarkMode, IsExpandedNodePipe, IsImagePipe, ItemsRendererDirective, LabelmandatoryDirective, LayoutItemBaseComponent, LayoutMainContentService, LayoutPanelBaseComponent, LayoutService, LinearListControlInfoModel, LinearListHelper, ListCountPipe, ListRelationModel, LoadExternalFilesDirective, LocalStorageService, LogService, LoginSettingsResolver, MeasureFormTitleWidthDirective, 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, 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, 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, addCssVariableToRoot, availablePrefixes, calcContextMenuWidth, calculateColumnContent, calculateColumnWidth, calculateColumnWidthFitToContainer, calculateFreeColumnSize, calculateMoDataListContentWidthByColumnName, cancelRequestAnimationFrame, createFormPanelMetaConditions, createGridEditorFormPanel, easeInOutCubic, elementInViewport2, enumValueToStringSize, executeUlvCommandHandler, flattenTree, 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, measureText2, measureTextBy, mobile_regex, number_only, requestAnimationFramePolyfill, setColumnWidthByMaxMoContentWidth, setOneDepthLevel, setTableThWidth, shallowEqual, stopPropagation, throwIfAlreadyLoaded, toNumber, validateAllFormFields };
|
|
15666
15777
|
//# sourceMappingURL=barsa-novin-ray-core.mjs.map
|