barsa-sap-ui 1.0.281 → 1.0.286
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/esm2020/lib/barsa-cartable-form/barsa-cartable-form.component.mjs +10 -14
- package/esm2020/lib/barsa-monaco-editor/barsa-monaco-editor.component.mjs +25 -19
- package/esm2020/lib/barsa-sap-ui.module.mjs +1 -1
- package/esm2020/lib/barsa-table-row/barsa-table-row.component.mjs +3 -3
- package/esm2020/lib/barsa-tree-item/barsa-tree-item.component.mjs +3 -3
- package/esm2020/lib/card-item/card-item.component.mjs +3 -3
- package/esm2020/lib/card-view-content/card-view-content.component.mjs +3 -3
- package/esm2020/lib/global-search-panel/global-search-panel.component.mjs +5 -10
- package/esm2020/lib/layout-control/layout-control.component.mjs +4 -3
- package/esm2020/lib/list-item/list-item.component.mjs +3 -3
- package/esm2020/lib/sap-ui-report-base.component.mjs +3 -10
- package/esm2020/lib/ui-container-with-button/ui-container-with-button.component.mjs +3 -3
- package/esm2020/lib/ui-form-panel/ui-form-panel.component.mjs +15 -13
- package/esm2020/lib/ui-mo-info-general-object-ui/ui-mo-info-general-object-ui.component.mjs +4 -3
- package/esm2020/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +66 -35
- package/esm2020/lib/ui-pdf-viewer/ui-pdf-viewer.component.mjs +11 -4
- package/esm2020/lib/ui-radio-group/ui-radio-group.component.mjs +15 -4
- package/esm2020/lib/ui-read-only-field/ui-read-only-field.component.mjs +3 -3
- package/esm2020/lib/ui-tree-view/ui-tree-view.component.mjs +3 -3
- package/fesm2015/barsa-sap-ui.mjs +191 -147
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +189 -145
- package/fesm2020/barsa-sap-ui.mjs.map +1 -1
- package/lib/barsa-cartable-form/barsa-cartable-form.component.d.ts +2 -7
- package/lib/barsa-monaco-editor/barsa-monaco-editor.component.d.ts +6 -1
- package/lib/barsa-sap-ui.module.d.ts +1 -1
- package/lib/global-search-panel/global-search-panel.component.d.ts +1 -3
- package/lib/index.d.ts +2 -1
- package/lib/layout-control/layout-control.component.d.ts +1 -0
- package/lib/ui-form-panel/ui-form-panel.component.d.ts +9 -5
- package/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.d.ts +6 -3
- package/lib/ui-pdf-viewer/ui-pdf-viewer.component.d.ts +4 -2
- package/lib/ui-radio-group/ui-radio-group.component.d.ts +9 -0
- package/package.json +1 -1
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FormBaseComponent,
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBaseComponent, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BarsaCartableFormComponent extends FormBaseComponent implements OnInit {
|
|
5
|
-
protected _cdr: ChangeDetectorRef;
|
|
6
|
-
protected _portalService: PortalService;
|
|
7
|
-
protected _formPanelService: FormPanelService;
|
|
8
|
-
protected _el: ElementRef;
|
|
9
5
|
_isSmallDevice: boolean;
|
|
10
|
-
constructor(_cdr: ChangeDetectorRef, _portalService: PortalService, _formPanelService: FormPanelService, _el: ElementRef);
|
|
11
6
|
ngOnInit(): void;
|
|
12
7
|
protected _isSmalDeviceSize(deviceSize: AbbrevationDeviceSize): boolean;
|
|
13
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaCartableFormComponent, never>;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
2
|
import { BaseComponent } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BarsaMonacoEditorComponent extends BaseComponent implements AfterViewInit, OnDestroy {
|
|
5
|
+
private _el;
|
|
5
6
|
value: string;
|
|
6
7
|
textAlign: string;
|
|
7
8
|
valueChange: EventEmitter<string>;
|
|
8
9
|
_editor: any;
|
|
9
10
|
loading: boolean;
|
|
11
|
+
/**
|
|
12
|
+
*
|
|
13
|
+
*/
|
|
14
|
+
constructor(_el: ElementRef);
|
|
10
15
|
ngAfterViewInit(): void;
|
|
11
16
|
ngOnDestroy(): void;
|
|
12
17
|
private _initEditor;
|
|
@@ -183,7 +183,7 @@ import * as i178 from "./barsa-sap-ui-routing.module";
|
|
|
183
183
|
export declare class BarsaSapUiModule extends BaseModule {
|
|
184
184
|
protected dcm: DynamicComponentService;
|
|
185
185
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
186
|
-
protected dynamicComponents: (typeof import("barsa-sap-ui").GanttDhtmlChartViewComponent | typeof import("barsa-sap-ui").LayoutControlComponent | typeof import("barsa-sap-ui").UlvColumnSettingsComponent | typeof import("barsa-sap-ui").UiGridSortSettingComponent | typeof import("barsa-sap-ui").UlvSortSettingsComponent | typeof import("barsa-sap-ui").UlvGroupbySettingsComponent | typeof import("barsa-sap-ui").UlvFilterSettingsComponent | typeof import("barsa-sap-ui").UiMoInfoGeneralObjectUiComponent | typeof import("barsa-sap-ui").FileInDialogComponent | typeof import("barsa-sap-ui").BarsaAspViewerComponent | typeof import("barsa-sap-ui").CustomDateTimeComponent | typeof import("barsa-sap-ui").UiExceptionFormComponent | typeof import("barsa-sap-ui").UiMatrixViewComponent | typeof import("barsa-sap-ui").UiGraphComponent | typeof import("barsa-sap-ui").UiTreeViewComponent | typeof import("barsa-sap-ui").ColumnRendererComponent | typeof import("barsa-sap-ui").UiCardViewComponent | typeof import("barsa-sap-ui").UiListViewComponent | typeof import("barsa-sap-ui").UiTableViewComponent | typeof import("barsa-sap-ui").UlNotifyPopupComponent | typeof import("barsa-sap-ui").ReportSearchPanelSaveComponent | typeof import("barsa-sap-ui").ReportSearchFieldsHiddenSettingsComponent | typeof import("barsa-sap-ui").ReportSearchFieldsManageComponent | typeof import("barsa-sap-ui").ManageFiltersReportComponent | typeof import("barsa-sap-ui").ReportNavigatorComponent | typeof import("barsa-sap-ui").LyLineComponent | typeof import("barsa-sap-ui").UiUlvMainUiComponent | typeof import("barsa-sap-ui").BarsaTreeItemComponent | typeof import("barsa-sap-ui").BarsaTinyemceComponent | typeof import("barsa-sap-ui").UlvFormMultiSelectComponent | typeof import("barsa-sap-ui").UiUlvFormMultiSelectUiComponent | typeof import("barsa-sap-ui").LayoutActionsComponent | typeof import("barsa-sap-ui").FundamentalDynamicFormComponent | typeof import("barsa-sap-ui").UlToastAdapterComponent | typeof import("barsa-sap-ui").GlobalSearchModuleComponent | typeof import("barsa-sap-ui").GlobalSearchPanelComponent | typeof import("barsa-sap-ui").LySimpleLabelComponent | typeof import("barsa-sap-ui").UlLoadingMaskUiComponent | typeof import("barsa-sap-ui").UlvContextMenuComponent | typeof import("barsa-sap-ui").PageWithHeaderComponent | typeof import("barsa-sap-ui").UlMsgBoxAdapterComponent | typeof import("barsa-sap-ui").LyLabelComponent | typeof import("barsa-sap-ui").LyVerticalLayoutComponent | typeof import("barsa-sap-ui").LyHorizontalLayoutComponent | typeof import("barsa-sap-ui").FormDialogLessComponent | typeof import("barsa-sap-ui").UiFormPanelComponent | typeof import("barsa-sap-ui").LayoutWizardComponent | typeof import("barsa-sap-ui").ResponsiveToolbarRendererComponent | typeof import("barsa-sap-ui").ResponsiveToolbarComponent | typeof FormDialogComponent | typeof import("barsa-sap-ui").UlvSettingsComponent | typeof import("barsa-sap-ui").UiFormPanelToolbarComponent | typeof import("barsa-sap-ui").UiInfoBarPanelComponent | typeof import("barsa-sap-ui").UlvPagingComponent | typeof import("barsa-sap-ui").UlvToolbarComponent | typeof import("barsa-sap-ui").UlvSelectionComponent | typeof import("barsa-sap-ui").LyLayoutContainerOfRootComponent | typeof import("barsa-sap-ui").CardItemComponent | typeof import("barsa-sap-ui").BarsaUlvMainComponent | typeof import("barsa-sap-ui").ListItemComponent | typeof import("barsa-sap-ui").BarsaTableRowComponent | typeof import("barsa-sap-ui").BarsaTableColumnComponent | typeof import("barsa-sap-ui").BarsaTableHeaderComponent | typeof import("barsa-sap-ui").BreadcrumbComponent | typeof import("barsa-sap-ui").FormToolbarButtonComponent | typeof import("barsa-sap-ui").ReportNewTopFormComponent | typeof import("barsa-sap-ui").BarsaNetworkOfflineComponent | typeof import("barsa-sap-ui").FileViewerContentComponent | typeof import("barsa-sap-ui").FileViewerComponent | typeof import("barsa-sap-ui").BlobViewerComponent | typeof import("barsa-sap-ui").ExecutePushNotificationCommandComponent | typeof import("barsa-sap-ui").BarsaCartableFormComponent | typeof import("barsa-sap-ui").BarsaCartableGroupComponent)[];
|
|
186
|
+
protected dynamicComponents: (typeof import("barsa-sap-ui").GanttDhtmlChartViewComponent | typeof import("barsa-sap-ui").LayoutControlComponent | typeof import("barsa-sap-ui").UlvColumnSettingsComponent | typeof import("barsa-sap-ui").UiGridSortSettingComponent | typeof import("barsa-sap-ui").UlvSortSettingsComponent | typeof import("barsa-sap-ui").UlvGroupbySettingsComponent | typeof import("barsa-sap-ui").UlvFilterSettingsComponent | typeof import("barsa-sap-ui").UiMoInfoGeneralObjectUiComponent | typeof import("barsa-sap-ui").FileInDialogComponent | typeof import("barsa-sap-ui").BarsaAspViewerComponent | typeof import("barsa-sap-ui").CustomDateTimeComponent | typeof import("barsa-sap-ui").UiExceptionFormComponent | typeof import("barsa-sap-ui").UiMatrixViewComponent | typeof import("barsa-sap-ui").UiGraphComponent | typeof import("barsa-sap-ui").UiTreeViewComponent | typeof import("barsa-sap-ui").ColumnRendererComponent | typeof import("barsa-sap-ui").UiCardViewComponent | typeof import("barsa-sap-ui").UiListViewComponent | typeof import("barsa-sap-ui").UiTableViewComponent | typeof import("barsa-sap-ui").UlNotifyPopupComponent | typeof import("barsa-sap-ui").ReportSearchPanelSaveComponent | typeof import("barsa-sap-ui").ReportSearchFieldsHiddenSettingsComponent | typeof import("barsa-sap-ui").ReportSearchFieldsManageComponent | typeof import("barsa-sap-ui").ManageFiltersReportComponent | typeof import("barsa-sap-ui").ReportNavigatorComponent | typeof import("barsa-sap-ui").LyLineComponent | typeof import("barsa-sap-ui").UiUlvMainUiComponent | typeof import("barsa-sap-ui").BarsaTreeItemComponent | typeof import("barsa-sap-ui").BarsaMonacoEditorComponent | typeof import("barsa-sap-ui").BarsaTinyemceComponent | typeof import("barsa-sap-ui").UlvFormMultiSelectComponent | typeof import("barsa-sap-ui").UiUlvFormMultiSelectUiComponent | typeof import("barsa-sap-ui").LayoutActionsComponent | typeof import("barsa-sap-ui").FundamentalDynamicFormComponent | typeof import("barsa-sap-ui").UlToastAdapterComponent | typeof import("barsa-sap-ui").GlobalSearchModuleComponent | typeof import("barsa-sap-ui").GlobalSearchPanelComponent | typeof import("barsa-sap-ui").LySimpleLabelComponent | typeof import("barsa-sap-ui").UlLoadingMaskUiComponent | typeof import("barsa-sap-ui").UlvContextMenuComponent | typeof import("barsa-sap-ui").PageWithHeaderComponent | typeof import("barsa-sap-ui").UlMsgBoxAdapterComponent | typeof import("barsa-sap-ui").LyLabelComponent | typeof import("barsa-sap-ui").LyVerticalLayoutComponent | typeof import("barsa-sap-ui").LyHorizontalLayoutComponent | typeof import("barsa-sap-ui").FormDialogLessComponent | typeof import("barsa-sap-ui").UiFormPanelComponent | typeof import("barsa-sap-ui").LayoutWizardComponent | typeof import("barsa-sap-ui").ResponsiveToolbarRendererComponent | typeof import("barsa-sap-ui").ResponsiveToolbarComponent | typeof FormDialogComponent | typeof import("barsa-sap-ui").UlvSettingsComponent | typeof import("barsa-sap-ui").UiFormPanelToolbarComponent | typeof import("barsa-sap-ui").UiInfoBarPanelComponent | typeof import("barsa-sap-ui").UlvPagingComponent | typeof import("barsa-sap-ui").UlvToolbarComponent | typeof import("barsa-sap-ui").UlvSelectionComponent | typeof import("barsa-sap-ui").LyLayoutContainerOfRootComponent | typeof import("barsa-sap-ui").CardItemComponent | typeof import("barsa-sap-ui").BarsaUlvMainComponent | typeof import("barsa-sap-ui").ListItemComponent | typeof import("barsa-sap-ui").BarsaTableRowComponent | typeof import("barsa-sap-ui").BarsaTableColumnComponent | typeof import("barsa-sap-ui").BarsaTableHeaderComponent | typeof import("barsa-sap-ui").BreadcrumbComponent | typeof import("barsa-sap-ui").FormToolbarButtonComponent | typeof import("barsa-sap-ui").ReportNewTopFormComponent | typeof import("barsa-sap-ui").BarsaNetworkOfflineComponent | typeof import("barsa-sap-ui").FileViewerContentComponent | typeof import("barsa-sap-ui").FileViewerComponent | typeof import("barsa-sap-ui").BlobViewerComponent | typeof import("barsa-sap-ui").ExecutePushNotificationCommandComponent | typeof import("barsa-sap-ui").BarsaCartableFormComponent | typeof import("barsa-sap-ui").BarsaCartableGroupComponent)[];
|
|
187
187
|
constructor(dcm: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver);
|
|
188
188
|
static forRoot(): ModuleWithProviders<BarsaSapUiModule>;
|
|
189
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiModule, never>;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormBaseComponent, MetaobjectDataModel
|
|
2
|
+
import { FormBaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class GlobalSearchPanelComponent extends FormBaseComponent implements OnInit {
|
|
5
|
-
protected _formPanelService: FormPanelService;
|
|
6
5
|
parentMo: MetaobjectDataModel;
|
|
7
|
-
constructor(_formPanelService: FormPanelService);
|
|
8
6
|
ngOnInit(): void;
|
|
9
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalSearchPanelComponent, never>;
|
|
10
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<GlobalSearchPanelComponent, "bsu-global-search-panel", never, {}, {}, never, never, false>;
|
package/lib/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ import { UlvFilterSettingsComponent } from './ulv-filter-settings/ulv-filter-set
|
|
|
38
38
|
import { UlvSortSettingsComponent } from './ulv-sort-settings/ulv-sort-settings.component';
|
|
39
39
|
import { UlvGroupbySettingsComponent } from './ulv-groupby-settings/ulv-groupby-settings.component';
|
|
40
40
|
import { BarsaTinyemceComponent } from './barsa-tinyemce/barsa-tinyemce.component';
|
|
41
|
+
import { BarsaMonacoEditorComponent } from './barsa-monaco-editor/barsa-monaco-editor.component';
|
|
41
42
|
import { BarsaTreeItemComponent } from './barsa-tree-item/barsa-tree-item.component';
|
|
42
43
|
import { UploadFileStatusPipe } from './upload-file-status.pipe';
|
|
43
44
|
import { LyLineComponent } from './ly-line/ly-line.component';
|
|
@@ -86,7 +87,7 @@ import { FullscreenFilesDirective } from './fullscreen-files.directive';
|
|
|
86
87
|
import { ExecutePushNotificationCommandComponent } from './execute-push-notification-command/execute-push-notification-command.component';
|
|
87
88
|
import { BarsaCartableGroupComponent } from './barsa-group-cartable/barsa-cartable-group.component';
|
|
88
89
|
import { BarsaCartableFormComponent } from './barsa-cartable-form/barsa-cartable-form.component';
|
|
89
|
-
export declare const components: (typeof GanttDhtmlChartViewComponent | typeof LayoutControlComponent | typeof UlvColumnSettingsComponent | typeof UiGridSortSettingComponent | typeof UlvSortSettingsComponent | typeof UlvGroupbySettingsComponent | typeof UlvFilterSettingsComponent | typeof UiMoInfoGeneralObjectUiComponent | typeof FileInDialogComponent | typeof BarsaAspViewerComponent | typeof CustomDateTimeComponent | typeof UiExceptionFormComponent | typeof UiMatrixViewComponent | typeof UiGraphComponent | typeof UiTreeViewComponent | typeof ColumnRendererComponent | typeof UiCardViewComponent | typeof UiListViewComponent | typeof UiTableViewComponent | typeof UlNotifyPopupComponent | typeof ReportSearchPanelSaveComponent | typeof ReportSearchFieldsHiddenSettingsComponent | typeof ReportSearchFieldsManageComponent | typeof ManageFiltersReportComponent | typeof ReportNavigatorComponent | typeof LyLineComponent | typeof UiUlvMainUiComponent | typeof BarsaTreeItemComponent | typeof BarsaTinyemceComponent | typeof UlvFormMultiSelectComponent | typeof UiUlvFormMultiSelectUiComponent | typeof LayoutActionsComponent | typeof FundamentalDynamicFormComponent | typeof UlToastAdapterComponent | typeof GlobalSearchModuleComponent | typeof GlobalSearchPanelComponent | typeof LySimpleLabelComponent | typeof UlLoadingMaskUiComponent | typeof UlvContextMenuComponent | typeof PageWithHeaderComponent | typeof UlMsgBoxAdapterComponent | typeof LyLabelComponent | typeof LyVerticalLayoutComponent | typeof LyHorizontalLayoutComponent | typeof FormDialogLessComponent | typeof UiFormPanelComponent | typeof LayoutWizardComponent | typeof ResponsiveToolbarRendererComponent | typeof ResponsiveToolbarComponent | typeof FormDialogComponent | typeof UlvSettingsComponent | typeof UiFormPanelToolbarComponent | typeof UiInfoBarPanelComponent | typeof UlvPagingComponent | typeof UlvToolbarComponent | typeof UlvSelectionComponent | typeof LyLayoutContainerOfRootComponent | typeof CardItemComponent | typeof BarsaUlvMainComponent | typeof ListItemComponent | typeof BarsaTableRowComponent | typeof BarsaTableColumnComponent | typeof BarsaTableHeaderComponent | typeof BreadcrumbComponent | typeof FormToolbarButtonComponent | typeof ReportNewTopFormComponent | typeof BarsaNetworkOfflineComponent | typeof FileViewerContentComponent | typeof FileViewerComponent | typeof BlobViewerComponent | typeof ExecutePushNotificationCommandComponent | typeof BarsaCartableFormComponent | typeof BarsaCartableGroupComponent)[];
|
|
90
|
+
export declare const components: (typeof GanttDhtmlChartViewComponent | typeof LayoutControlComponent | typeof UlvColumnSettingsComponent | typeof UiGridSortSettingComponent | typeof UlvSortSettingsComponent | typeof UlvGroupbySettingsComponent | typeof UlvFilterSettingsComponent | typeof UiMoInfoGeneralObjectUiComponent | typeof FileInDialogComponent | typeof BarsaAspViewerComponent | typeof CustomDateTimeComponent | typeof UiExceptionFormComponent | typeof UiMatrixViewComponent | typeof UiGraphComponent | typeof UiTreeViewComponent | typeof ColumnRendererComponent | typeof UiCardViewComponent | typeof UiListViewComponent | typeof UiTableViewComponent | typeof UlNotifyPopupComponent | typeof ReportSearchPanelSaveComponent | typeof ReportSearchFieldsHiddenSettingsComponent | typeof ReportSearchFieldsManageComponent | typeof ManageFiltersReportComponent | typeof ReportNavigatorComponent | typeof LyLineComponent | typeof UiUlvMainUiComponent | typeof BarsaTreeItemComponent | typeof BarsaMonacoEditorComponent | typeof BarsaTinyemceComponent | typeof UlvFormMultiSelectComponent | typeof UiUlvFormMultiSelectUiComponent | typeof LayoutActionsComponent | typeof FundamentalDynamicFormComponent | typeof UlToastAdapterComponent | typeof GlobalSearchModuleComponent | typeof GlobalSearchPanelComponent | typeof LySimpleLabelComponent | typeof UlLoadingMaskUiComponent | typeof UlvContextMenuComponent | typeof PageWithHeaderComponent | typeof UlMsgBoxAdapterComponent | typeof LyLabelComponent | typeof LyVerticalLayoutComponent | typeof LyHorizontalLayoutComponent | typeof FormDialogLessComponent | typeof UiFormPanelComponent | typeof LayoutWizardComponent | typeof ResponsiveToolbarRendererComponent | typeof ResponsiveToolbarComponent | typeof FormDialogComponent | typeof UlvSettingsComponent | typeof UiFormPanelToolbarComponent | typeof UiInfoBarPanelComponent | typeof UlvPagingComponent | typeof UlvToolbarComponent | typeof UlvSelectionComponent | typeof LyLayoutContainerOfRootComponent | typeof CardItemComponent | typeof BarsaUlvMainComponent | typeof ListItemComponent | typeof BarsaTableRowComponent | typeof BarsaTableColumnComponent | typeof BarsaTableHeaderComponent | typeof BreadcrumbComponent | typeof FormToolbarButtonComponent | typeof ReportNewTopFormComponent | typeof BarsaNetworkOfflineComponent | typeof FileViewerContentComponent | typeof FileViewerComponent | typeof BlobViewerComponent | typeof ExecutePushNotificationCommandComponent | typeof BarsaCartableFormComponent | typeof BarsaCartableGroupComponent)[];
|
|
90
91
|
export declare const pipes: (typeof MatrixValuePipe | typeof DynamicPageSizePipe | typeof StringToArrayPipe | typeof UploadFileStatusPipe | typeof SapFontPipe | typeof SapFontClassPipe | typeof NodeHasOneDepthLevelPipe)[];
|
|
91
92
|
export declare const directives: (typeof WizardLayoutDirective | typeof ColRendererDirective | typeof ApplyConditionalFormatsDirective | typeof ReportViewRendererDirective | typeof FullscreenDialogDirective | typeof FullscreenFilesDirective | typeof DownloadFilesDirective)[];
|
|
92
93
|
export declare const INIT_SAPFIORI: (rtlService: RtlService, contentDensityService: GlobalContentDensityService, themeService: ThemesService, portalService: PortalService) => () => void;
|
|
@@ -54,6 +54,7 @@ export declare class LayoutControlComponent extends LayoutItemBaseComponent impl
|
|
|
54
54
|
textVisible: boolean | undefined;
|
|
55
55
|
emptyText: SafeHtml;
|
|
56
56
|
layoutControlWidth: number;
|
|
57
|
+
formHeight$: Observable<number>;
|
|
57
58
|
constructor(formPanelService: FormPanelService, el: ElementRef, _contentDensityService: ContentDensityService, domSanitizer: DomSanitizer, _cdr: ChangeDetectorRef, _ngZone: NgZone, _renderer2: Renderer2, _bbbTranslate: BbbTranslatePipe);
|
|
58
59
|
ngOnChanges(changes: SimpleChanges): void;
|
|
59
60
|
ngOnInit(): void;
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
1
2
|
import { Observable } from 'rxjs';
|
|
2
3
|
import { ContentDensity, ContentDensityService } from '@fundamental-ngx/core';
|
|
3
|
-
import { FormBaseComponent, PortalService, BreadCrumbInfo, FormPanelService, BreadcrumbService } from 'barsa-novin-ray-core';
|
|
4
|
+
import { FormBaseComponent, PortalService, BreadCrumbInfo, FormPanelService, BreadcrumbService, ControlUiPipe } from 'barsa-novin-ray-core';
|
|
4
5
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class UiFormPanelComponent extends FormBaseComponent {
|
|
7
8
|
protected _breadcrumbService: BreadcrumbService;
|
|
8
|
-
protected _contentDensityService: ContentDensityService;
|
|
9
9
|
protected _portalService: PortalService;
|
|
10
|
-
protected _activatedRoute: ActivatedRoute;
|
|
11
10
|
protected _router: Router;
|
|
11
|
+
protected _el: ElementRef;
|
|
12
|
+
protected _controlUiPipe: ControlUiPipe;
|
|
12
13
|
protected _formPanelService: FormPanelService;
|
|
14
|
+
protected _activatedRoute: ActivatedRoute;
|
|
15
|
+
protected _cdr: ChangeDetectorRef;
|
|
16
|
+
protected _contentDensityService: ContentDensityService;
|
|
13
17
|
_typeDefName: string;
|
|
14
18
|
breadCrumbs$: Observable<BreadCrumbInfo[]>;
|
|
15
19
|
contentDensity$: Observable<ContentDensity>;
|
|
@@ -19,7 +23,7 @@ export declare class UiFormPanelComponent extends FormBaseComponent {
|
|
|
19
23
|
canSend$: Observable<boolean>;
|
|
20
24
|
portrait$: Observable<boolean>;
|
|
21
25
|
standalone$: Observable<boolean>;
|
|
22
|
-
constructor(_breadcrumbService: BreadcrumbService,
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UiFormPanelComponent, [null, null, null, null, null, { self: true; }]>;
|
|
26
|
+
constructor(_breadcrumbService: BreadcrumbService, _portalService: PortalService, _router: Router, _el: ElementRef, _controlUiPipe: ControlUiPipe, _formPanelService: FormPanelService, _activatedRoute: ActivatedRoute, _cdr: ChangeDetectorRef, _contentDensityService: ContentDensityService);
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UiFormPanelComponent, [null, null, null, null, null, { self: true; }, null, null, null]>;
|
|
24
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiFormPanelComponent, "bsu-ui-form-panel", never, {}, {}, never, never, false>;
|
|
25
29
|
}
|
|
@@ -33,17 +33,18 @@ export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implem
|
|
|
33
33
|
isDataLoadedFirstTime: boolean;
|
|
34
34
|
valueText: string;
|
|
35
35
|
allColumns: ReportViewColumn[];
|
|
36
|
+
hasValue: boolean;
|
|
37
|
+
comboboxId: string;
|
|
36
38
|
private _openPopupFormSelectionSource;
|
|
37
39
|
private _closeDialogSource;
|
|
38
40
|
private _loadingSource;
|
|
39
|
-
|
|
40
|
-
comboboxId: string;
|
|
41
|
+
onKeyDown(e: any): void;
|
|
41
42
|
onAlt(e: any): void;
|
|
42
43
|
ngOnInit(): void;
|
|
43
44
|
ngAfterViewInit(): void;
|
|
44
45
|
onPagingClick(e: any): void;
|
|
45
46
|
onPageChange(e: number): void;
|
|
46
|
-
onItemClick(e: ComboboxItem): void;
|
|
47
|
+
onItemClick(e: ComboboxItem, moDataList: MetaobjectDataModel[]): void;
|
|
47
48
|
onPageChange2(pageSetting: PagingSetting, e: any): void;
|
|
48
49
|
onOpenChange(fdCombobox: any, isOpen: boolean): void;
|
|
49
50
|
onInputChange(e: any): void;
|
|
@@ -70,11 +71,13 @@ export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implem
|
|
|
70
71
|
Unmask: (type: any) => void;
|
|
71
72
|
getRawValue: () => string;
|
|
72
73
|
protected _setValue(value: any): void;
|
|
74
|
+
protected _checkHasValue(value: any): void;
|
|
73
75
|
protected _setValueText(value: any): void;
|
|
74
76
|
protected _getValueText(value: any): any;
|
|
75
77
|
protected _setComboText(value: string): void;
|
|
76
78
|
protected _openPopupFormSelection(): Observable<boolean>;
|
|
77
79
|
protected _filterSmartChange(value: any): boolean;
|
|
80
|
+
protected _setColumns(): void;
|
|
78
81
|
protected _focus(): void;
|
|
79
82
|
protected _raiseSmartChange(value: any): void;
|
|
80
83
|
protected _triggerClick(eventName: any, value?: null): void;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { ContentDensity } from '@fundamental-ngx/core';
|
|
5
5
|
import { FilesValidationHelper, IUploadingState } from 'barsa-novin-ray-core';
|
|
6
6
|
import { DeviceInfoFieldBaseComponent } from '../device-info-field-base';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class UiPdfViewerComponent extends DeviceInfoFieldBaseComponent implements OnInit {
|
|
8
|
+
export declare class UiPdfViewerComponent extends DeviceInfoFieldBaseComponent implements OnInit, OnChanges {
|
|
9
9
|
fileName: string;
|
|
10
10
|
fallbackLink: any;
|
|
11
11
|
canNotRenderPdf: boolean;
|
|
@@ -37,7 +37,9 @@ export declare class UiPdfViewerComponent extends DeviceInfoFieldBaseComponent i
|
|
|
37
37
|
filesValidationHelper: FilesValidationHelper;
|
|
38
38
|
singleControl: boolean;
|
|
39
39
|
singleFileThumbnailUrl: string;
|
|
40
|
+
parentHeight: number;
|
|
40
41
|
ngOnInit(): void;
|
|
42
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
41
43
|
onEdit(): void;
|
|
42
44
|
onView(event: MouseEvent): void;
|
|
43
45
|
onDownload(): void;
|
|
@@ -4,8 +4,17 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class UiRadioGroupComponent extends DeviceInfoFieldBaseComponent implements OnInit {
|
|
5
5
|
isVertically: boolean;
|
|
6
6
|
onlyInMobileVertically: boolean;
|
|
7
|
+
selectedItem: ItemType;
|
|
8
|
+
get items(): ItemType[];
|
|
7
9
|
ngOnInit(): void;
|
|
8
10
|
onRadioClicked(item: any): void;
|
|
11
|
+
protected _setValue(value: any): void;
|
|
9
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiRadioGroupComponent, never>;
|
|
10
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiRadioGroupComponent, "bsu-ui-radio-group", never, {}, {}, never, never, false>;
|
|
11
14
|
}
|
|
15
|
+
declare type ItemType = {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
IsEmpty: boolean;
|
|
18
|
+
inputValue: string;
|
|
19
|
+
};
|
|
20
|
+
export {};
|