barsa-sap-ui 2.0.123 → 2.0.125
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-form-side-content/barsa-form-side-content.component.mjs +2 -2
- package/esm2022/lib/barsa-table-row/barsa-table-row.component.mjs +3 -9
- package/esm2022/lib/barsa-tinyemce/barsa-tinyemce.component.mjs +8 -7
- package/esm2022/lib/blob-viewer/blob-viewer.component.mjs +3 -7
- package/esm2022/lib/card-item/card-item.component.mjs +17 -12
- package/esm2022/lib/card-view-content/card-view-content.component.mjs +3 -3
- package/esm2022/lib/column-renderer/column-renderer.component.mjs +7 -10
- package/esm2022/lib/file-viewer/file-viewer.component.mjs +3 -3
- package/esm2022/lib/file-viewer-content/file-viewer-content.component.mjs +3 -3
- package/esm2022/lib/file-viewer-popover/file-viewer-popover.component.mjs +3 -3
- package/esm2022/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.mjs +3 -3
- package/esm2022/lib/index.mjs +14 -13
- package/esm2022/lib/no-data/no-data.component.mjs +3 -3
- package/esm2022/lib/ui-card-view/ui-card-view.component.mjs +3 -3
- package/esm2022/lib/ui-table-view/ui-table-view.component.mjs +3 -21
- package/esm2022/lib/ulv-context-menu/ulv-context-menu.component.mjs +3 -3
- package/esm2022/lib/ulv-form-multi-select/ulv-form-multi-select.component.mjs +10 -4
- package/fesm2022/barsa-sap-ui.mjs +77 -93
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/lib/barsa-table-row/barsa-table-row.component.d.ts +2 -5
- package/lib/barsa-tinyemce/barsa-tinyemce.component.d.ts +1 -1
- package/lib/card-item/card-item.component.d.ts +1 -0
- package/lib/ui-table-view/ui-table-view.component.d.ts +1 -4
- package/package.json +1 -1
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import { OnInit, TemplateRef, EventEmitter, Renderer2, ElementRef } from '@angular/core';
|
|
2
|
-
import { MoForReportModel, BaseViewItemPropsComponent,
|
|
2
|
+
import { MoForReportModel, BaseViewItemPropsComponent, ReportViewColumn, ColumnSummaryType } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BarsaTableRowComponent extends BaseViewItemPropsComponent implements OnInit {
|
|
5
5
|
showDetailsInRow: boolean;
|
|
6
|
-
detailsComponent?: EjrayOlgo;
|
|
7
|
-
detailsColumns: ReportViewColumn[];
|
|
8
|
-
detailsText: string;
|
|
9
6
|
previewColumn: ReportViewColumn;
|
|
10
7
|
columnComponents: MoForReportModel | null;
|
|
11
8
|
dirtyColumns: Record<string, boolean>;
|
|
@@ -21,5 +18,5 @@ export declare class BarsaTableRowComponent extends BaseViewItemPropsComponent i
|
|
|
21
18
|
onColumnClick(): void;
|
|
22
19
|
onRowDetails(): void;
|
|
23
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTableRowComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableRowComponent, "bsu-barsa-table-row", never, { "showDetailsInRow": { "alias": "showDetailsInRow"; "required": false; }; "
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableRowComponent, "bsu-barsa-table-row", never, { "showDetailsInRow": { "alias": "showDetailsInRow"; "required": false; }; "previewColumn": { "alias": "previewColumn"; "required": false; }; "columnComponents": { "alias": "columnComponents"; "required": false; }; "dirtyColumns": { "alias": "dirtyColumns"; "required": false; }; "detailsCollapsed": { "alias": "detailsCollapsed"; "required": false; }; }, { "columnSummary": "columnSummary"; }, never, never, false, never>;
|
|
25
22
|
}
|
|
@@ -27,10 +27,10 @@ export declare class BarsaTinyemceComponent extends BaseComponent implements Aft
|
|
|
27
27
|
constructor(_uploadService: UploadService, _el: ElementRef);
|
|
28
28
|
ngOnChanges(simpleChanges: SimpleChanges): void;
|
|
29
29
|
ngOnInit(): void;
|
|
30
|
-
ngAfterViewInit(): void;
|
|
31
30
|
ngOnDestroy(): void;
|
|
32
31
|
onFileSelection(files: File[]): void;
|
|
33
32
|
loadTinyMce(): void;
|
|
33
|
+
onVisibilityChange(e: any): void;
|
|
34
34
|
initilize(): void;
|
|
35
35
|
ShowUploadWindow(): void;
|
|
36
36
|
ShowOpenFileDialog(doReturn: any): void;
|
|
@@ -11,6 +11,7 @@ export declare class CardItemComponent extends BaseViewItemPropsComponent implem
|
|
|
11
11
|
maxWidth: string;
|
|
12
12
|
minWidth: string;
|
|
13
13
|
contextMenuInFooter: boolean;
|
|
14
|
+
contextMenuEnabled: boolean;
|
|
14
15
|
contentTemplateRef: TemplateRef<any>;
|
|
15
16
|
ngOnInit(): void;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardItemComponent, never>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
|
-
import {
|
|
3
|
+
import { MetaobjectDataModel, ReportViewBaseComponent, ReportViewColumn, TableHeaderWidthMode, ColumnResizedArgs } from 'barsa-novin-ray-core';
|
|
4
4
|
import { UiTableViewSetting } from '../models/grid-view';
|
|
5
5
|
import { BarsaTableHeaderComponent } from '../barsa-table-header/barsa-table-header.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -18,8 +18,6 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
18
18
|
height: number | null;
|
|
19
19
|
maxHeight: string | null;
|
|
20
20
|
_width: string;
|
|
21
|
-
detailsColumns: ReportViewColumn[];
|
|
22
|
-
detailsComponent: EjrayOlgo;
|
|
23
21
|
showDetailsInRow: boolean;
|
|
24
22
|
hasRowOlgo: boolean;
|
|
25
23
|
columnComponents: {
|
|
@@ -73,7 +71,6 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
73
71
|
protected _fitToRowContentColumn(moDataList: MetaobjectDataModel[], columns: ReportViewColumn[]): void;
|
|
74
72
|
protected _fitToContainer(moDataList: any, columns: any): void;
|
|
75
73
|
protected _freeColumnSize(moDataList: any, columns: any): void;
|
|
76
|
-
protected _setRowIndicator(columns: ReportViewColumn[]): void;
|
|
77
74
|
protected _setHeight(parentHeight: number): void;
|
|
78
75
|
protected _setHasSummery(cartableTemplates: any): void;
|
|
79
76
|
protected _containerWidthChanged(val: number): void;
|