barsa-sap-ui 1.0.278 → 1.0.281
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-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-ulv-main/barsa-ulv-main.component.mjs +19 -13
- package/esm2020/lib/card-item/card-item.component.mjs +3 -3
- package/esm2020/lib/list-item/list-item.component.mjs +3 -3
- package/esm2020/lib/ui-date-time/ui-date-time.component.mjs +2 -3
- package/esm2020/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +52 -20
- package/esm2020/lib/ui-radio-group/ui-radio-group.component.mjs +11 -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 +213 -170
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +212 -170
- package/fesm2020/barsa-sap-ui.mjs.map +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/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.d.ts +9 -2
- package/lib/ui-radio-group/ui-radio-group.component.d.ts +2 -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,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,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;
|
|
@@ -2,6 +2,8 @@ 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;
|
|
5
7
|
ngOnInit(): void;
|
|
6
8
|
onRadioClicked(item: any): void;
|
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiRadioGroupComponent, never>;
|
|
@@ -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
|
}
|