barsa-sap-ui 2.0.34 → 2.0.36
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/esm2022/lib/barsa-asp-viewer/barsa-asp-viewer.component.mjs +6 -4
- package/esm2022/lib/barsa-chat/barsa-chat.component.mjs +15 -13
- package/esm2022/lib/barsa-chat/chat.model.mjs +1 -1
- package/esm2022/lib/barsa-chat-list/barsa-chat-list.component.mjs +9 -7
- package/esm2022/lib/barsa-chat-message/barsa-chat-message.component.mjs +9 -8
- package/esm2022/lib/barsa-form-side-content/barsa-form-side-content.component.mjs +1 -1
- package/esm2022/lib/barsa-report-one-of-list/barsa-report-one-of-list.component.mjs +19 -15
- package/esm2022/lib/barsa-table-header/barsa-table-header.component.mjs +7 -3
- package/esm2022/lib/barsa-table-row/barsa-table-row.component.mjs +2 -2
- package/esm2022/lib/barsa-ulv-main/barsa-ulv-main.component.mjs +3 -3
- package/esm2022/lib/column-renderer/column-renderer.component.mjs +4 -3
- package/esm2022/lib/file-viewer-content/file-viewer-content.component.mjs +1 -1
- package/esm2022/lib/ly-label/ly-label.component.mjs +3 -3
- package/esm2022/lib/ui-asp-report-viewer/ui-asp-report-viewer.component.mjs +20 -4
- package/esm2022/lib/ui-calendar/ui-calendar.component.mjs +1 -1
- package/esm2022/lib/ui-editable-grid/ui-editable-grid.component.mjs +1 -1
- package/esm2022/lib/ui-gantt-chart/ui-gantt-chart.component.mjs +1 -1
- package/esm2022/lib/ui-grid/ui-grid.component.mjs +1 -1
- package/esm2022/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +3 -3
- package/esm2022/lib/ui-pdf-viewer/ui-pdf-viewer.component.mjs +1 -1
- package/esm2022/lib/ui-report-container/ui-report-container.component.mjs +3 -3
- package/esm2022/lib/ui-table-view/ui-table-view.component.mjs +7 -3
- package/esm2022/lib/ui-tree/ui-tree.component.mjs +1 -1
- package/esm2022/lib/ulv-toolbar/ulv-toolbar.component.mjs +8 -5
- package/fesm2022/barsa-sap-ui.mjs +112 -78
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/lib/barsa-asp-viewer/barsa-asp-viewer.component.d.ts +2 -1
- package/lib/barsa-chat/chat.model.d.ts +3 -13
- package/lib/barsa-chat-message/barsa-chat-message.component.d.ts +2 -1
- package/lib/barsa-report-one-of-list/barsa-report-one-of-list.component.d.ts +6 -5
- package/lib/barsa-table-header/barsa-table-header.component.d.ts +3 -1
- package/lib/column-renderer/column-renderer.component.d.ts +1 -0
- package/lib/ui-asp-report-viewer/ui-asp-report-viewer.component.d.ts +4 -1
- package/lib/ui-table-view/ui-table-view.component.d.ts +3 -1
- package/lib/ulv-toolbar/ulv-toolbar.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export declare class BarsaAspViewerComponent extends BaseComponent implements On
|
|
|
8
8
|
context: any;
|
|
9
9
|
parentHeight: number;
|
|
10
10
|
isReportPage: boolean;
|
|
11
|
+
hideSearchpanel: boolean;
|
|
11
12
|
form: ElementRef<HTMLFormElement>;
|
|
12
13
|
iframe: ElementRef<HTMLIFrameElement>;
|
|
13
14
|
hidden: ElementRef<HTMLInputElement>;
|
|
@@ -27,5 +28,5 @@ export declare class BarsaAspViewerComponent extends BaseComponent implements On
|
|
|
27
28
|
private _onLoadIfram;
|
|
28
29
|
private _submitForm;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaAspViewerComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaAspViewerComponent, "bsu-barsa-asp-viewer", never, { "context": { "alias": "context"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaAspViewerComponent, "bsu-barsa-asp-viewer", never, { "context": { "alias": "context"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
32
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FileAttachmentInfo, FilePictureInfoModel } from 'barsa-novin-ray-core';
|
|
1
2
|
export type Thread = {
|
|
2
3
|
id: number;
|
|
3
4
|
title: string;
|
|
@@ -13,8 +14,8 @@ export type Message = {
|
|
|
13
14
|
id: string;
|
|
14
15
|
owner: User;
|
|
15
16
|
text?: string;
|
|
16
|
-
file?:
|
|
17
|
-
image?:
|
|
17
|
+
file?: FileAttachmentInfo;
|
|
18
|
+
image?: FilePictureInfoModel;
|
|
18
19
|
createdAt: Date;
|
|
19
20
|
deliveredAt: Date;
|
|
20
21
|
readAt: Date;
|
|
@@ -30,14 +31,3 @@ export type User = {
|
|
|
30
31
|
avatar: string;
|
|
31
32
|
name: string;
|
|
32
33
|
};
|
|
33
|
-
export type MessageFile = {
|
|
34
|
-
name: string;
|
|
35
|
-
ext: string;
|
|
36
|
-
size: string;
|
|
37
|
-
};
|
|
38
|
-
export type MessageImage = {
|
|
39
|
-
name: string;
|
|
40
|
-
url: string;
|
|
41
|
-
originalWidth: number;
|
|
42
|
-
originalHeight: number;
|
|
43
|
-
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Message } from '../barsa-chat/chat.model';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BarsaChatMessageComponent {
|
|
4
|
-
message:
|
|
5
|
+
message: Message;
|
|
5
6
|
showSender: boolean;
|
|
6
7
|
nextIsSame: boolean;
|
|
7
8
|
pervIsSame: boolean;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SimpleChanges, WritableSignal } from '@angular/core';
|
|
1
2
|
import { MetaobjectDataModel, ReportViewBaseComponent, UiReportViewBaseSetting, MenuItem } from 'barsa-novin-ray-core';
|
|
2
3
|
import { InputGroupComponent, PopoverComponent } from '@fundamental-ngx/core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
@@ -8,18 +9,18 @@ export declare class BarsaReportOneOfListComponent extends ReportViewBaseCompone
|
|
|
8
9
|
private _dialogService;
|
|
9
10
|
private _router;
|
|
10
11
|
private _activatedRoute;
|
|
11
|
-
|
|
12
|
-
lastRecord: any;
|
|
12
|
+
hastLastRecord: WritableSignal<boolean>;
|
|
13
13
|
caption: string;
|
|
14
14
|
isMobile: boolean;
|
|
15
15
|
customButtons: MenuItem[];
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
-
|
|
18
|
-
onAdd(popover: any): void;
|
|
17
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
19
18
|
get getNewButton(): MenuItem | undefined;
|
|
19
|
+
onAdd(popover: any): void;
|
|
20
20
|
open(popover: any, dialogTemplate: any): void;
|
|
21
|
-
close(
|
|
21
|
+
close(dialogRef: any): void;
|
|
22
22
|
openInIndependentFormClicked(): void;
|
|
23
|
+
private _setLastRecord;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaReportOneOfListComponent, never>;
|
|
24
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaReportOneOfListComponent, "bsu-barsa-report-one-of-list", never, { "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
26
|
}
|
|
@@ -26,6 +26,8 @@ export declare class BarsaTableHeaderComponent extends BaseComponent {
|
|
|
26
26
|
rowIndicator: boolean;
|
|
27
27
|
rtl: boolean;
|
|
28
28
|
showRowNumber: boolean;
|
|
29
|
+
disableResize: boolean;
|
|
30
|
+
disableHeaderContextMenu: boolean;
|
|
29
31
|
deviceSize: AbbrevationDeviceSize;
|
|
30
32
|
tableHeaderMode: TableHeaderWidthMode;
|
|
31
33
|
allCheckbox: EventEmitter<boolean>;
|
|
@@ -58,5 +60,5 @@ export declare class BarsaTableHeaderComponent extends BaseComponent {
|
|
|
58
60
|
onFilter(column: ReportViewColumn, menu: any): void;
|
|
59
61
|
_trackByColumn(index: number, column: ReportViewColumn): string;
|
|
60
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTableHeaderComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableHeaderComponent, "bsu-barsa-table-header", never, { "allChecked": { "alias": "allChecked"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "fitWidth": { "alias": "fitWidth"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "contextMenuWidth": { "alias": "contextMenuWidth"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "showDetailsInRow": { "alias": "showDetailsInRow"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "resizedByUser": { "alias": "resizedByUser"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "tableHeaderMode": { "alias": "tableHeaderMode"; "required": false; }; }, { "allCheckbox": "allCheckbox"; "columnResize": "columnResize"; "fitToContent": "fitToContent"; "fitToContainer": "fitToContainer"; "fitToColumn": "fitToColumn"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "filter": "filter"; "resetGridSettings": "resetGridSettings"; }, never, never, false, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableHeaderComponent, "bsu-barsa-table-header", never, { "allChecked": { "alias": "allChecked"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "fitWidth": { "alias": "fitWidth"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "contextMenuWidth": { "alias": "contextMenuWidth"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "showDetailsInRow": { "alias": "showDetailsInRow"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "resizedByUser": { "alias": "resizedByUser"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "disableResize": { "alias": "disableResize"; "required": false; }; "disableHeaderContextMenu": { "alias": "disableHeaderContextMenu"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "tableHeaderMode": { "alias": "tableHeaderMode"; "required": false; }; }, { "allCheckbox": "allCheckbox"; "columnResize": "columnResize"; "fitToContent": "fitToContent"; "fitToContainer": "fitToContainer"; "fitToColumn": "fitToColumn"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "filter": "filter"; "resetGridSettings": "resetGridSettings"; }, never, never, false, never>;
|
|
62
64
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { UiReportViewBaseSetting, LayoutSetting } from 'barsa-novin-ray-core';
|
|
1
|
+
import { UiReportViewBaseSetting, LayoutSetting, FillEmptySpaceDirective } from 'barsa-novin-ray-core';
|
|
2
2
|
import { SapUiReportBaseComponent } from '../sap-ui-report-base.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class UiAspReportViewerComponent extends SapUiReportBaseComponent<UiReportViewBaseSetting> {
|
|
5
5
|
isReportPage: boolean;
|
|
6
6
|
layoutInfo: LayoutSetting;
|
|
7
|
+
fillEmptySpace: FillEmptySpaceDirective;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
private _resizeAspViewer;
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiAspReportViewerComponent, never>;
|
|
8
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiAspReportViewerComponent, "bsu-ui-asp-report-viewer", never, { "isReportPage": { "alias": "isReportPage"; "required": false; }; "layoutInfo": { "alias": "layoutInfo"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
12
|
}
|
|
@@ -6,6 +6,8 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
6
6
|
columnWidth: number;
|
|
7
7
|
minWidth: any;
|
|
8
8
|
minHeight: any;
|
|
9
|
+
disableResize: any;
|
|
10
|
+
disableHeaderContextMenu: any;
|
|
9
11
|
rowResizer: any;
|
|
10
12
|
enableResizing: any;
|
|
11
13
|
disableFixedTableLayout: any;
|
|
@@ -36,5 +38,5 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
36
38
|
protected _setHasSummery(cartableTemplates: any): void;
|
|
37
39
|
protected _containerWidthChanged(val: number): void;
|
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiTableViewComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UiTableViewComponent, "bsu-ui-table-view", never, { "columnWidth": { "alias": "columnWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "rowResizer": { "alias": "rowResizer"; "required": false; }; "enableResizing": { "alias": "enableResizing"; "required": false; }; "disableFixedTableLayout": { "alias": "disableFixedTableLayout"; "required": false; }; }, {}, never, never, false, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UiTableViewComponent, "bsu-ui-table-view", never, { "columnWidth": { "alias": "columnWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "disableResize": { "alias": "disableResize"; "required": false; }; "disableHeaderContextMenu": { "alias": "disableHeaderContextMenu"; "required": false; }; "rowResizer": { "alias": "rowResizer"; "required": false; }; "enableResizing": { "alias": "enableResizing"; "required": false; }; "disableFixedTableLayout": { "alias": "disableFixedTableLayout"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
42
|
}
|
|
@@ -10,6 +10,7 @@ export declare class UlvToolbarComponent extends BaseComponent implements OnChan
|
|
|
10
10
|
enableSearch: boolean;
|
|
11
11
|
hideTitle: boolean;
|
|
12
12
|
title: string;
|
|
13
|
+
icon: string;
|
|
13
14
|
deviceName: DeviceSize;
|
|
14
15
|
deviceSize: AbbrevationDeviceSize;
|
|
15
16
|
access: DefaultCommandsAccess;
|
|
@@ -48,5 +49,5 @@ export declare class UlvToolbarComponent extends BaseComponent implements OnChan
|
|
|
48
49
|
identify(index: any, item: any): string;
|
|
49
50
|
private _refreshToolbar;
|
|
50
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<UlvToolbarComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UlvToolbarComponent, "bsu-ulv-toolbar", never, { "allowGridColumnSort": { "alias": "allowGridColumnSort"; "required": false; }; "useLayoutItemTextForControl": { "alias": "useLayoutItemTextForControl"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "access": { "alias": "access"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "gridSetting": { "alias": "gridSetting"; "required": false; }; "viewCollection": { "alias": "viewCollection"; "required": false; }; "reportView": { "alias": "reportView"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "config": { "alias": "config"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; }, { "search": "search"; "groupbyClick": "groupbyClick"; "sortClick": "sortClick"; "columnClick": "columnClick"; "editModeClick": "editModeClick"; "viewClick": "viewClick"; "createNewInlineMo": "createNewInlineMo"; }, never, ["[fd-toolbar-item]"], false, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UlvToolbarComponent, "bsu-ulv-toolbar", never, { "allowGridColumnSort": { "alias": "allowGridColumnSort"; "required": false; }; "useLayoutItemTextForControl": { "alias": "useLayoutItemTextForControl"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "access": { "alias": "access"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "gridSetting": { "alias": "gridSetting"; "required": false; }; "viewCollection": { "alias": "viewCollection"; "required": false; }; "reportView": { "alias": "reportView"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "config": { "alias": "config"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; }, { "search": "search"; "groupbyClick": "groupbyClick"; "sortClick": "sortClick"; "columnClick": "columnClick"; "editModeClick": "editModeClick"; "viewClick": "viewClick"; "createNewInlineMo": "createNewInlineMo"; }, never, ["[fd-toolbar-item]"], false, never>;
|
|
52
53
|
}
|