barsa-sap-ui 2.1.6 → 2.1.8
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ChangeDetectorRef, AfterViewInit, OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, AfterViewInit, OnInit, OnChanges, SimpleChanges, WritableSignal } from '@angular/core';
|
|
2
2
|
import { AbbrevationDeviceSize, BaseComponent, LayoutSetting, MetaobjectDataModel, ReportViewColumn } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ColumnRendererComponent extends BaseComponent implements OnInit, AfterViewInit {
|
|
4
|
+
export declare class ColumnRendererComponent extends BaseComponent implements OnInit, OnChanges, AfterViewInit {
|
|
5
5
|
protected _cdr: ChangeDetectorRef;
|
|
6
6
|
_isSmall: boolean;
|
|
7
7
|
column: ReportViewColumn;
|
|
@@ -25,11 +25,13 @@ export declare class ColumnRendererComponent extends BaseComponent implements On
|
|
|
25
25
|
icon: any;
|
|
26
26
|
showMore: boolean;
|
|
27
27
|
fieldTypeId: number;
|
|
28
|
+
signalValue: WritableSignal<any>;
|
|
28
29
|
/**
|
|
29
30
|
*
|
|
30
31
|
*/
|
|
31
32
|
constructor(_cdr: ChangeDetectorRef);
|
|
32
33
|
ngOnInit(): void;
|
|
34
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
33
35
|
ngAfterViewInit(): void;
|
|
34
36
|
onElapsised(val: boolean): void;
|
|
35
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnRendererComponent, never>;
|
|
@@ -43,9 +43,10 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
43
43
|
oldWidth: number;
|
|
44
44
|
isMobile: boolean;
|
|
45
45
|
ngOnInit(): void;
|
|
46
|
+
ngAfterViewInit(): void;
|
|
47
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
46
48
|
_calcContextMenuWidth(contextMenuItems: any): void;
|
|
47
49
|
onTableVisibilityChange(e: any, dom: any): void;
|
|
48
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
49
50
|
onColumnResizing(e: {
|
|
50
51
|
column: ReportViewColumn;
|
|
51
52
|
width: number;
|
|
@@ -41,12 +41,13 @@ export declare class UlvToolbarComponent extends BaseComponent implements OnChan
|
|
|
41
41
|
enable: boolean;
|
|
42
42
|
_renderer2: Renderer2;
|
|
43
43
|
_portalService: PortalService;
|
|
44
|
+
visibled: boolean;
|
|
44
45
|
constructor(el: ElementRef, _cdr: ChangeDetectorRef);
|
|
45
46
|
ngAfterViewInit(): void;
|
|
46
47
|
ngOnChanges(changes: SimpleChanges): void;
|
|
47
|
-
visibled: boolean;
|
|
48
48
|
onVisibilityChange(e: any): void;
|
|
49
49
|
protected _setWidth(): void;
|
|
50
|
+
private refreshResize;
|
|
50
51
|
onGroupbySettings(): void;
|
|
51
52
|
onSortSettings(): void;
|
|
52
53
|
onColumnSettings(): void;
|