barsa-novin-ray-core 2.3.100 → 2.3.101
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 +241 -215
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +62 -35
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, AfterViewInit, AfterContentInit, OnDestroy, OnChanges, ElementRef, SimpleChanges, PipeTransform, Renderer2, ViewContainerRef, Injector, ComponentRef, NgModuleFactory, Type, ChangeDetectorRef, ProviderToken, InjectOptions, EventEmitter, TemplateRef, ComponentFactoryResolver, WritableSignal, ComponentFactory, InjectionToken, ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { OnInit, AfterViewInit, AfterContentInit, OnDestroy, OnChanges, ElementRef, SimpleChanges, PipeTransform, Renderer2, ViewContainerRef, Injector, ComponentRef, NgModuleFactory, Type, ChangeDetectorRef, ProviderToken, InjectOptions, Signal, EventEmitter, TemplateRef, ComponentFactoryResolver, WritableSignal, ComponentFactory, InjectionToken, ModuleWithProviders } from '@angular/core';
|
|
3
3
|
import { Subject, Observable, BehaviorSubject, Subscription } from 'rxjs';
|
|
4
4
|
import { SafeHtml, SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
|
|
5
5
|
import * as i1 from '@angular/router';
|
|
@@ -9,6 +9,7 @@ import { DurationInputArg1, DurationInputArg2, Duration, Moment } from 'moment';
|
|
|
9
9
|
import { IconFont, ContentDensity } from '@fundamental-ngx/core';
|
|
10
10
|
import * as i140 from '@angular/forms';
|
|
11
11
|
import { ValidatorFn, FormGroup } from '@angular/forms';
|
|
12
|
+
import { DBSchema } from 'idb';
|
|
12
13
|
import * as i1$1 from '@angular/common';
|
|
13
14
|
import { TitleCasePipe } from '@angular/common';
|
|
14
15
|
import { Direction } from '@angular/cdk/bidi';
|
|
@@ -2913,16 +2914,11 @@ declare class ServiceWorkerNotificationService {
|
|
|
2913
2914
|
hasRegistration: boolean;
|
|
2914
2915
|
private _swPush;
|
|
2915
2916
|
private _portalService;
|
|
2916
|
-
private _notificationPermissionAllowed;
|
|
2917
2917
|
constructor();
|
|
2918
2918
|
get isEnabled(): boolean;
|
|
2919
2919
|
closeNotifications(tags: string[]): Promise<void>;
|
|
2920
2920
|
showNotification(payload: ExNotificationPayload): Promise<void>;
|
|
2921
2921
|
private init;
|
|
2922
|
-
private handlePermission;
|
|
2923
|
-
private permissionQuery;
|
|
2924
|
-
private permissionError;
|
|
2925
|
-
private requestPermission;
|
|
2926
2922
|
private registerServiceWorker;
|
|
2927
2923
|
private getSw;
|
|
2928
2924
|
private _isSupported;
|
|
@@ -2957,10 +2953,9 @@ declare class ServiceWorkerCommuncationService {
|
|
|
2957
2953
|
private _portalService;
|
|
2958
2954
|
private _pushCheckService;
|
|
2959
2955
|
get token2(): string;
|
|
2960
|
-
private
|
|
2956
|
+
private _pushNotificatioService;
|
|
2961
2957
|
private _serviceWorker;
|
|
2962
2958
|
init(): void;
|
|
2963
|
-
subscribePush(): Promise<void>;
|
|
2964
2959
|
protected _subscribe(): void;
|
|
2965
2960
|
protected _setDefaultOptions(): void;
|
|
2966
2961
|
protected _isLoggedIn(isLoggedIn: boolean): void;
|
|
@@ -3116,6 +3111,55 @@ declare class PushCheckService {
|
|
|
3116
3111
|
static ɵprov: i0.ɵɵInjectableDeclaration<PushCheckService>;
|
|
3117
3112
|
}
|
|
3118
3113
|
|
|
3114
|
+
interface AppDB extends DBSchema {
|
|
3115
|
+
subscription: {
|
|
3116
|
+
key: string;
|
|
3117
|
+
value: any;
|
|
3118
|
+
};
|
|
3119
|
+
settings: {
|
|
3120
|
+
key: string;
|
|
3121
|
+
value: any;
|
|
3122
|
+
};
|
|
3123
|
+
}
|
|
3124
|
+
declare class IdbService {
|
|
3125
|
+
private dbPromise;
|
|
3126
|
+
constructor();
|
|
3127
|
+
get<T = any>(store: keyof AppDB, key: string): Promise<T | null>;
|
|
3128
|
+
set<T = any>(store: keyof AppDB, key: string, value: T): Promise<void>;
|
|
3129
|
+
delete(store: keyof AppDB, key: string): Promise<void>;
|
|
3130
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdbService, never>;
|
|
3131
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdbService>;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
interface PushState {
|
|
3135
|
+
bannerVisible: boolean;
|
|
3136
|
+
isSubscribed: boolean;
|
|
3137
|
+
permission: NotificationPermission;
|
|
3138
|
+
errorMessage: string | null;
|
|
3139
|
+
}
|
|
3140
|
+
declare class PushNotificationService {
|
|
3141
|
+
private swPush;
|
|
3142
|
+
private http;
|
|
3143
|
+
private idb;
|
|
3144
|
+
private local;
|
|
3145
|
+
private _push;
|
|
3146
|
+
get push(): Signal<PushState>;
|
|
3147
|
+
hideBanner(): void;
|
|
3148
|
+
setup(): Promise<void>;
|
|
3149
|
+
subscribe(): Promise<PushSubscription>;
|
|
3150
|
+
unsubscribe(): Promise<void>;
|
|
3151
|
+
handleNewSubscription(subData: any): Promise<void>;
|
|
3152
|
+
private update;
|
|
3153
|
+
private loadSubscription;
|
|
3154
|
+
private loadPublicKey;
|
|
3155
|
+
private initPushBanner;
|
|
3156
|
+
private registerServiceWorkerMessageListener;
|
|
3157
|
+
private deleteSubscription;
|
|
3158
|
+
private httpOptions;
|
|
3159
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PushNotificationService, never>;
|
|
3160
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PushNotificationService>;
|
|
3161
|
+
}
|
|
3162
|
+
|
|
3119
3163
|
interface FieldSetting {
|
|
3120
3164
|
[key: string]: any;
|
|
3121
3165
|
ControlFieldCaption: string;
|
|
@@ -5326,18 +5370,6 @@ declare class SafeBottomDirective extends BaseDirective {
|
|
|
5326
5370
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SafeBottomDirective, "[safe-area]", never, { "applyTop": { "alias": "applyTop"; "required": false; }; "disableBottom": { "alias": "disableBottom"; "required": false; }; }, {}, never, never, false, never>;
|
|
5327
5371
|
}
|
|
5328
5372
|
|
|
5329
|
-
declare function usePushNotification(): {
|
|
5330
|
-
bannerVisible: i0.WritableSignal<boolean>;
|
|
5331
|
-
isSubscribed: i0.WritableSignal<boolean>;
|
|
5332
|
-
permission: i0.WritableSignal<NotificationPermission>;
|
|
5333
|
-
errorMessage: i0.WritableSignal<string | null>;
|
|
5334
|
-
initPushBanner: () => Promise<void>;
|
|
5335
|
-
subscribe: () => Promise<PushSubscription>;
|
|
5336
|
-
unsubscribe: () => Promise<void>;
|
|
5337
|
-
handleNewSubscription: (subData: any) => Promise<void>;
|
|
5338
|
-
hideBanner: () => void;
|
|
5339
|
-
};
|
|
5340
|
-
|
|
5341
5373
|
declare class PortalDynamicPageResolver {
|
|
5342
5374
|
private portalService;
|
|
5343
5375
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
@@ -5660,18 +5692,13 @@ declare class ResizableModule {
|
|
|
5660
5692
|
static ɵinj: i0.ɵɵInjectorDeclaration<ResizableModule>;
|
|
5661
5693
|
}
|
|
5662
5694
|
|
|
5663
|
-
declare class PushBannerComponent {
|
|
5664
|
-
push:
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
subscribe: () => Promise<PushSubscription>;
|
|
5671
|
-
unsubscribe: () => Promise<void>;
|
|
5672
|
-
handleNewSubscription: (subData: any) => Promise<void>;
|
|
5673
|
-
hideBanner: () => void;
|
|
5674
|
-
};
|
|
5695
|
+
declare class PushBannerComponent extends BaseComponent {
|
|
5696
|
+
push: Signal<PushState>;
|
|
5697
|
+
private _pushService;
|
|
5698
|
+
constructor();
|
|
5699
|
+
get bannerPositionClass(): string;
|
|
5700
|
+
onHideBanner(): void;
|
|
5701
|
+
onEnable(): void;
|
|
5675
5702
|
static ɵfac: i0.ɵɵFactoryDeclaration<PushBannerComponent, never>;
|
|
5676
5703
|
static ɵcmp: i0.ɵɵComponentDeclaration<PushBannerComponent, "bnrc-push-banner", never, {}, {}, never, never, false, never>;
|
|
5677
5704
|
}
|
|
@@ -5685,7 +5712,7 @@ declare class BarsaNovinRayCoreRoutingModule {
|
|
|
5685
5712
|
declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
5686
5713
|
protected dcm: DynamicComponentService;
|
|
5687
5714
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
5688
|
-
protected dynamicComponents: (typeof EmptyPageWithRouterAndRouterOutletComponent | typeof ButtonLoadingComponent
|
|
5715
|
+
protected dynamicComponents: (typeof EmptyPageWithRouterAndRouterOutletComponent | typeof ButtonLoadingComponent)[];
|
|
5689
5716
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
5690
5717
|
constructor();
|
|
5691
5718
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
@@ -5694,5 +5721,5 @@ declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
5694
5721
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
5695
5722
|
}
|
|
5696
5723
|
|
|
5697
|
-
export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, 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, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, 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, Ext, 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, GanttChartHelper, 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, LoginAction, LoginForm, LoginFormData, LoginFormUi, 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, Offline, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, 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, 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, Ui, UiService, Ul, UlvCommandDirective, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, 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,
|
|
5698
|
-
export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavGroupItem, NavGroupItemData, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
|
|
5724
|
+
export { APP_VERSION, AbsoluteDivBodyDirective, AddDynamicFormStyles, AffixRespondEvents, AllFilesMimeType, AnchorScrollDirective, ApiService, ApplicationBaseComponent, ApplicationCtrlrService, AttrRtlDirective, AudioMimeType, AudioRecordingService, AuthGuard, BBB, 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, Bw, CalculateControlInfoModel, CalendarMetaobjectDataModel, CanUploadFilePipe, CardMediaSizePipe, ChangeLayoutInfoCustomUi, ChunkArrayPipe, CodeEditorControlInfoModel, ColSetting, ColumnCustomComponentPipe, ColumnCustomUiPipe, ColumnIconPipe, ColumnResizerDirective, ColumnService, ColumnValueDirective, ColumnValueOfParametersPipe, ColumnValuePipe, ComboRowImagePipe, CommandControlInfoModel, Common, 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, Ext, 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, GanttChartHelper, 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, LoginAction, LoginForm, LoginFormData, LoginFormUi, 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, Offline, OverflowTextDirective, PageBaseComponent, PageWithFormHandlerBaseComponent, PdfMimeType, PictureFieldSourcePipe, PictureFileControlInfoModel, PlaceHolderDirective, PortalDynamicPageResolver, PortalFormPageResolver, PortalPageComponent, PortalPageResolver, PortalPageSidebarComponent, PortalReportPageResolver, PortalService, PreventDefaulEvent, PreventDefaultDirective, PrintFilesDirective, PrintImage, PromptUpdateService, PushBannerComponent, PushCheckService, PushNotificationService, RabetehAkseTakiListiControlInfoModel, RedirectHomeGuard, RedirectReportNavigatorCommandComponent, RelatedReportControlInfoModel, RelationListControlInfoModel, RemoveDynamicFormStyles, 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, 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, Ui, UiService, Ul, UlvCommandDirective, UlvMainCtrl, UlvMainService, UnlimitSessionComponent, UntilInViewDirective, UploadService, Util, 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 };
|
|
5725
|
+
export type { AbbrevationDeviceSize, AppMenu, AppTile, AppTileGroup, ApplicationSetting, BreadCrumbInfo, BruleActionMessage, CalendarFields, CalendarView, CardMediaSize, CartableTemplateKey, ChoiceDef, ClassNamesModel, CollectionGroup, CollectionPage, CollectionSort, CollectionState, ColumnInfoType, ColumnResizedArgs, ColumnSummaryType, Command, CommandGroup, CommonObservable, ComponentDataModel, ComponentSettingsDataModel, ContainerReportSetting, ControlInfoTypes, CssBackground, CultureTypes, CustomApplicationMenuBodyUi, CustomApplicationUi, CustomNavGroupUi, CustomNavPageUi, CustomRibbon, CustomSystemContainerUi, CustomSystemNavUi, CustomSystemUi, DateInfo, DefaultCommandsAccess, DeviceSize, DownloadFileInfo, DownloadFileInfoResult, EasyingFn, EjrayOlgo, ExNotificationPayload, ExtraModel, FieldSetting, FieldSettings, FileAttachmentInfo, FormComponentParams, FormSetting, FormView, FormViewSetting, GridView, Group, GroupByItem, GroupVisibility, IApiResult, IBaseController, IDebug, IHeaderLayout, ISystem, ISystemData, IUploadingState, IViewBase, IndexableObject, InfoBarType, LayoutSetting, LibraryDepenecy, LoginResult, MenuItem, ModuleDataModel, ModuleListReportModel, ModuleWithDynamicComponents, Modules, NavGroupItem, NavGroupItemData, Navigator, NavigatorFolder, NavigatorFolderItem, NavigatorItem, NavigatorRoot, NavigatorRootItem, NgStyleInterface, NotificationAction, NotificationItem, NotificationPayload, NotificationPopupService, NotifyOptions, NumberInput, NzSafeAny, NzScrollToOptions, PageDataModel, PageListReportModel, PagingSetting, PlaceHolderDataModel, PortalDataModel, PushState, RelationItemType, RelationListTypes, ReportItemSetting, ReportModelTypes, ReportSetting, SearchInput, SearchPanelSettings, ShareButtonsChoiceDef, ShellbarSetting, ShortCutData, ShortCuts, SimpleRect, SortOrder, SystemSetting, TableState, TreeNodeObj, TreeView, TypeUlvDataCtrlr, TypeUlvMainCtrlr, UiReportViewBase, UiReportViewBaseSetting, UiResponsiveSettings, UlvParamType, User, ViewTypes, WorkflowExecuteChoiceStatus, WorkflowItem, columnsResizedEventArgs };
|