barsa-sap-ui 2.0.88 → 2.0.90
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-network-offline/barsa-network-offline.component.mjs +6 -2
- package/esm2022/lib/barsa-simple-form/barsa-simple-form.component.mjs +1 -1
- package/esm2022/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.mjs +3 -3
- package/esm2022/lib/layout-control/layout-control.component.mjs +4 -3
- package/esm2022/lib/layout-wizard/layout-wizard.component.mjs +7 -2
- package/esm2022/lib/ly-label/ly-label.component.mjs +7 -4
- package/fesm2022/barsa-sap-ui.mjs +65 -53
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/lib/layout-control/layout-control.component.d.ts +1 -0
- package/lib/layout-wizard/layout-wizard.component.d.ts +2 -1
- package/lib/ly-label/ly-label.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -61,6 +61,7 @@ export declare class LayoutControlComponent extends LayoutItemBaseComponent impl
|
|
|
61
61
|
layoutControlWidth: number;
|
|
62
62
|
formHeight$: Observable<number>;
|
|
63
63
|
checkboxWidth: string;
|
|
64
|
+
helpDescription: string;
|
|
64
65
|
constructor(formPanelService: FormPanelService, el: ElementRef, _contentDensityService: ContentDensityService, domSanitizer: DomSanitizer, _cdr: ChangeDetectorRef, _ngZone: NgZone, _renderer2: Renderer2, _bbbTranslate: BbbTranslatePipe, _parentLayoutService: LayoutService);
|
|
65
66
|
ngOnChanges(changes: SimpleChanges): void;
|
|
66
67
|
ngOnInit(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentRef, ElementRef, OnInit, QueryList } from '@angular/core';
|
|
1
|
+
import { ComponentRef, ElementRef, OnInit, QueryList, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { WizardSize, WizardStepComponent, WizardStepStatus } from '@fundamental-ngx/core';
|
|
3
3
|
import { FormPropsBaseComponent, LayoutSetting } from 'barsa-novin-ray-core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -17,6 +17,7 @@ export declare class LayoutWizardComponent extends FormPropsBaseComponent implem
|
|
|
17
17
|
wizardSize: WizardSize;
|
|
18
18
|
showFooter: boolean;
|
|
19
19
|
ngOnInit(): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
20
21
|
ngAfterViewInit(): void;
|
|
21
22
|
resizeWorks(): void;
|
|
22
23
|
onStatusChange(i: any, e: any): void;
|
|
@@ -6,11 +6,12 @@ export declare class LyLabelComponent extends LayoutItemBaseComponent {
|
|
|
6
6
|
minWidth: string;
|
|
7
7
|
caption: string | SafeHtml;
|
|
8
8
|
captionIcon: string;
|
|
9
|
+
helpDescription: string;
|
|
9
10
|
isColumn: boolean;
|
|
10
11
|
isMandatory: boolean;
|
|
11
12
|
fieldIcon: string;
|
|
12
13
|
originalXtype: string;
|
|
13
14
|
textVisible: boolean | undefined;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<LyLabelComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LyLabelComponent, "bsu-ly-label", never, { "originalWidth": { "alias": "originalWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "captionIcon": { "alias": "captionIcon"; "required": false; }; "isColumn": { "alias": "isColumn"; "required": false; }; "isMandatory": { "alias": "isMandatory"; "required": false; }; "fieldIcon": { "alias": "fieldIcon"; "required": false; }; "originalXtype": { "alias": "originalXtype"; "required": false; }; "textVisible": { "alias": "textVisible"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LyLabelComponent, "bsu-ly-label", never, { "originalWidth": { "alias": "originalWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "captionIcon": { "alias": "captionIcon"; "required": false; }; "helpDescription": { "alias": "helpDescription"; "required": false; }; "isColumn": { "alias": "isColumn"; "required": false; }; "isMandatory": { "alias": "isMandatory"; "required": false; }; "fieldIcon": { "alias": "fieldIcon"; "required": false; }; "originalXtype": { "alias": "originalXtype"; "required": false; }; "textVisible": { "alias": "textVisible"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
17
|
}
|