barsa-sap-ui 1.0.278 → 1.0.285
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-column/barsa-table-column.component.mjs +7 -24
- 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/barsa-ulv-main/barsa-ulv-main.component.mjs +19 -13
- 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-date-time/ui-date-time.component.mjs +2 -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 +63 -22
- package/esm2020/lib/ui-pdf-viewer/ui-pdf-viewer.component.mjs +11 -4
- package/esm2020/lib/ui-radio-group/ui-radio-group.component.mjs +23 -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/esm2020/lib/ui-ulv-main-ui/ui-ulv-main-ui.component.mjs +6 -3
- package/esm2020/lib/ulv-paging/ulv-paging.component.mjs +31 -20
- package/fesm2015/barsa-sap-ui.mjs +301 -238
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +300 -237
- 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/barsa-table-column/barsa-table-column.component.d.ts +3 -12
- package/lib/barsa-ulv-main/barsa-ulv-main.component.d.ts +5 -3
- 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 +9 -2
- package/lib/ui-pdf-viewer/ui-pdf-viewer.component.d.ts +4 -2
- package/lib/ui-radio-group/ui-radio-group.component.d.ts +11 -0
- package/lib/ui-ulv-main-ui/ui-ulv-main-ui.component.d.ts +1 -0
- package/lib/ulv-paging/ulv-paging.component.d.ts +8 -7
- 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,16 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BaseViewItemPropsComponent, ReportViewColumn, MetaobjectDataModel, LayoutSetting, EjrayOlgo } from 'barsa-novin-ray-core';
|
|
1
|
+
import { BaseColumnPropsComponent } from 'barsa-novin-ray-core';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BarsaTableColumnComponent extends
|
|
5
|
-
column: ReportViewColumn;
|
|
6
|
-
mo: MetaobjectDataModel;
|
|
7
|
-
index: number;
|
|
8
|
-
inlineEditMode: boolean;
|
|
9
|
-
layout94: LayoutSetting;
|
|
10
|
-
customComponent: EjrayOlgo | null;
|
|
11
|
-
detailsComponentSetting: any;
|
|
3
|
+
export declare class BarsaTableColumnComponent extends BaseColumnPropsComponent {
|
|
12
4
|
ngOnInit(): void;
|
|
13
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
14
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTableColumnComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableColumnComponent, "bsu-barsa-table-column", never, {
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableColumnComponent, "bsu-barsa-table-column", never, {}, {}, never, never, false>;
|
|
16
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, AfterViewInit, ElementRef } from '@angular/core';
|
|
2
2
|
import { DynamicPageComponent } from '@fundamental-ngx/core';
|
|
3
|
-
import { AbbrevationDeviceSize, BaseComponent, BreadCrumbInfo } from 'barsa-novin-ray-core';
|
|
3
|
+
import { AbbrevationDeviceSize, BaseComponent, BreadCrumbInfo, PagingSetting } from 'barsa-novin-ray-core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BarsaUlvMainComponent extends BaseComponent implements AfterViewInit {
|
|
6
6
|
el: ElementRef;
|
|
@@ -20,7 +20,7 @@ export declare class BarsaUlvMainComponent extends BaseComponent implements Afte
|
|
|
20
20
|
searchPanelMoChanged: boolean;
|
|
21
21
|
selectedSearchPanelSettingsId: string;
|
|
22
22
|
hideSearchPanel: boolean;
|
|
23
|
-
pagingSetting:
|
|
23
|
+
pagingSetting: PagingSetting;
|
|
24
24
|
contentDensity: any;
|
|
25
25
|
context: any;
|
|
26
26
|
close: EventEmitter<any>;
|
|
@@ -30,6 +30,7 @@ export declare class BarsaUlvMainComponent extends BaseComponent implements Afte
|
|
|
30
30
|
hideSearchPanelClick: EventEmitter<any>;
|
|
31
31
|
filterSave: EventEmitter<any>;
|
|
32
32
|
filterSaveAs: EventEmitter<any>;
|
|
33
|
+
pageChange: EventEmitter<number>;
|
|
33
34
|
showFilterFieldsSetting: EventEmitter<any>;
|
|
34
35
|
manageFilters: EventEmitter<any>;
|
|
35
36
|
clearSearch: EventEmitter<any>;
|
|
@@ -49,7 +50,8 @@ export declare class BarsaUlvMainComponent extends BaseComponent implements Afte
|
|
|
49
50
|
onManageFilters(popover: any): void;
|
|
50
51
|
onClearSearch(): void;
|
|
51
52
|
onSearch(): void;
|
|
53
|
+
onPageChange(e: number): void;
|
|
52
54
|
onSelectSearchPanelSettings(selectedSearchPanelSettingsId: string, popover: any): void;
|
|
53
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaUlvMainComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaUlvMainComponent, "bsu-barsa-ulv-main", never, { "viewerControl": "viewerControl"; "loading": "loading"; "viewerLoading": "viewerLoading"; "isReportPage": "isReportPage"; "deviceSize": "deviceSize"; "title": "title"; "searchPanelUi": "searchPanelUi"; "breadCrumbs": "breadCrumbs"; "allSearchPanelSettings": "allSearchPanelSettings"; "isAnonymous": "isAnonymous"; "rtl": "rtl"; "selectedSearchPanelSettings": "selectedSearchPanelSettings"; "searchPanelMoChanged": "searchPanelMoChanged"; "selectedSearchPanelSettingsId": "selectedSearchPanelSettingsId"; "hideSearchPanel": "hideSearchPanel"; "pagingSetting": "pagingSetting"; "contentDensity": "contentDensity"; "context": "context"; }, { "close": "close"; "searchPanelMoChange": "searchPanelMoChange"; "openManageFilters": "openManageFilters"; "collapsedChange": "collapsedChange"; "hideSearchPanelClick": "hideSearchPanelClick"; "filterSave": "filterSave"; "filterSaveAs": "filterSaveAs"; "showFilterFieldsSetting": "showFilterFieldsSetting"; "manageFilters": "manageFilters"; "clearSearch": "clearSearch"; "search": "search"; "selectSearchPanelSettings": "selectSearchPanelSettings"; }, never, never, false>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaUlvMainComponent, "bsu-barsa-ulv-main", never, { "viewerControl": "viewerControl"; "loading": "loading"; "viewerLoading": "viewerLoading"; "isReportPage": "isReportPage"; "deviceSize": "deviceSize"; "title": "title"; "searchPanelUi": "searchPanelUi"; "breadCrumbs": "breadCrumbs"; "allSearchPanelSettings": "allSearchPanelSettings"; "isAnonymous": "isAnonymous"; "rtl": "rtl"; "selectedSearchPanelSettings": "selectedSearchPanelSettings"; "searchPanelMoChanged": "searchPanelMoChanged"; "selectedSearchPanelSettingsId": "selectedSearchPanelSettingsId"; "hideSearchPanel": "hideSearchPanel"; "pagingSetting": "pagingSetting"; "contentDensity": "contentDensity"; "context": "context"; }, { "close": "close"; "searchPanelMoChange": "searchPanelMoChange"; "openManageFilters": "openManageFilters"; "collapsedChange": "collapsedChange"; "hideSearchPanelClick": "hideSearchPanelClick"; "filterSave": "filterSave"; "filterSaveAs": "filterSaveAs"; "pageChange": "pageChange"; "showFilterFieldsSetting": "showFilterFieldsSetting"; "manageFilters": "manageFilters"; "clearSearch": "clearSearch"; "search": "search"; "selectSearchPanelSettings": "selectSearchPanelSettings"; }, never, never, false>;
|
|
55
57
|
}
|
|
@@ -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
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnInit, AfterViewInit } from '@angular/core';
|
|
2
2
|
import { Observable, Subject } from 'rxjs';
|
|
3
|
-
import { ComboboxComponent, DialogRef } from '@fundamental-ngx/core';
|
|
4
|
-
import { FieldBaseComponent, ReportExtraInfo, MoForReportModel, ClassNamesModel, ViewTypes, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import { ComboboxComponent, ComboboxItem, DialogRef } from '@fundamental-ngx/core';
|
|
4
|
+
import { FieldBaseComponent, ReportExtraInfo, MoForReportModel, ClassNamesModel, ViewTypes, MetaobjectDataModel, PagingSetting, ReportViewColumn } from 'barsa-novin-ray-core';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implements OnInit, AfterViewInit {
|
|
7
7
|
ulvAdapter: {
|
|
@@ -32,13 +32,19 @@ export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implem
|
|
|
32
32
|
originalValue: any;
|
|
33
33
|
isDataLoadedFirstTime: boolean;
|
|
34
34
|
valueText: string;
|
|
35
|
+
allColumns: ReportViewColumn[];
|
|
35
36
|
private _openPopupFormSelectionSource;
|
|
36
37
|
private _closeDialogSource;
|
|
37
38
|
private _loadingSource;
|
|
38
39
|
private _valueMo;
|
|
40
|
+
comboboxId: string;
|
|
39
41
|
onAlt(e: any): void;
|
|
40
42
|
ngOnInit(): void;
|
|
41
43
|
ngAfterViewInit(): void;
|
|
44
|
+
onPagingClick(e: any): void;
|
|
45
|
+
onPageChange(e: number): void;
|
|
46
|
+
onItemClick(e: ComboboxItem): void;
|
|
47
|
+
onPageChange2(pageSetting: PagingSetting, e: any): void;
|
|
42
48
|
onOpenChange(fdCombobox: any, isOpen: boolean): void;
|
|
43
49
|
onInputChange(e: any): void;
|
|
44
50
|
onInputChange2(e: any): void;
|
|
@@ -65,6 +71,7 @@ export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implem
|
|
|
65
71
|
getRawValue: () => string;
|
|
66
72
|
protected _setValue(value: any): void;
|
|
67
73
|
protected _setValueText(value: any): void;
|
|
74
|
+
protected _getValueText(value: any): any;
|
|
68
75
|
protected _setComboText(value: string): void;
|
|
69
76
|
protected _openPopupFormSelection(): Observable<boolean>;
|
|
70
77
|
protected _filterSmartChange(value: any): boolean;
|
|
@@ -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;
|
|
@@ -2,8 +2,19 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { DeviceInfoFieldBaseComponent } from '../device-info-field-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class UiRadioGroupComponent extends DeviceInfoFieldBaseComponent implements OnInit {
|
|
5
|
+
isVertically: boolean;
|
|
6
|
+
onlyInMobileVertically: boolean;
|
|
7
|
+
selectedItem: ItemType;
|
|
8
|
+
get items(): ItemType[];
|
|
5
9
|
ngOnInit(): void;
|
|
6
10
|
onRadioClicked(item: any): void;
|
|
11
|
+
protected _setValue(value: any): void;
|
|
7
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiRadioGroupComponent, never>;
|
|
8
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiRadioGroupComponent, "bsu-ui-radio-group", never, {}, {}, never, never, false>;
|
|
9
14
|
}
|
|
15
|
+
declare type ItemType = {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
IsEmpty: boolean;
|
|
18
|
+
inputValue: string;
|
|
19
|
+
};
|
|
20
|
+
export {};
|
|
@@ -47,6 +47,7 @@ export declare class UiUlvMainUiComponent extends BaseComponent implements OnIni
|
|
|
47
47
|
ngOnInit(): void;
|
|
48
48
|
onClose(): void;
|
|
49
49
|
onSearchPanelMoChanged(): void;
|
|
50
|
+
onPageChange(e: number): void;
|
|
50
51
|
onOpenManageFilters(): void;
|
|
51
52
|
onCollapsedChange(collapsed: boolean): void;
|
|
52
53
|
onHideSearchPanelClick(): void;
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { BbbTranslatePipe, BaseComponent, UlvMainService, PagingSetting } from 'barsa-novin-ray-core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BbbTranslatePipe, BaseComponent, PagingSetting } from 'barsa-novin-ray-core';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class UlvPagingComponent extends BaseComponent implements OnInit {
|
|
6
|
-
private
|
|
5
|
+
private _cdr;
|
|
7
6
|
private bbbPipe;
|
|
8
7
|
pageChange: EventEmitter<number>;
|
|
9
8
|
pageSizeChange: EventEmitter<number>;
|
|
10
9
|
height: number;
|
|
11
|
-
pagingSetting
|
|
10
|
+
pagingSetting: PagingSetting;
|
|
12
11
|
context: any;
|
|
13
12
|
currentPage: number;
|
|
14
13
|
totalPage: number;
|
|
15
14
|
totalPageStr: string;
|
|
16
|
-
constructor(
|
|
15
|
+
constructor(_cdr: ChangeDetectorRef, bbbPipe: BbbTranslatePipe);
|
|
17
16
|
ngOnInit(): void;
|
|
17
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18
18
|
onPageSizeChange(e: any): void;
|
|
19
19
|
onEndClick(): void;
|
|
20
20
|
onFirstClick(): void;
|
|
21
21
|
onNextClick(): void;
|
|
22
22
|
onPreviousClick(): void;
|
|
23
23
|
onPageChange(pageNumber: number): void;
|
|
24
|
+
private _initValues;
|
|
24
25
|
private _pageChanged;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<UlvPagingComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UlvPagingComponent, "bsu-ulv-paging", never, {}, { "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; }, never, never, false>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UlvPagingComponent, "bsu-ulv-paging", never, { "pagingSetting": "pagingSetting"; }, { "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; }, never, never, false>;
|
|
27
28
|
}
|