barsa-sap-ui 1.0.300 → 1.0.302
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-search-form/barsa-search-form.component.mjs +1 -1
- package/esm2020/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.mjs +17 -3
- package/esm2020/lib/ui-form-panel/ui-form-panel.component.mjs +3 -3
- package/fesm2015/barsa-sap-ui.mjs +20 -5
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +19 -5
- package/fesm2020/barsa-sap-ui.mjs.map +1 -1
- package/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.d.ts +8 -5
- package/package.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ContentDensity, DynamicPageComponent, TabPanelComponent } from '@fundamental-ngx/core';
|
|
3
|
-
import { BaseComponent, BreadCrumbInfo, MetaobjectDataModel, LayoutSetting } from 'barsa-novin-ray-core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ContentDensity, DynamicPageComponent, TabPanelComponent, ToolbarComponent } from '@fundamental-ngx/core';
|
|
3
|
+
import { BaseComponent, BreadCrumbInfo, MetaobjectDataModel, LayoutSetting, FormVisibilityStatus } from 'barsa-novin-ray-core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FundamentalDynamicFormComponent extends BaseComponent implements OnInit {
|
|
5
|
+
export declare class FundamentalDynamicFormComponent extends BaseComponent implements OnInit, OnChanges {
|
|
6
6
|
el: ElementRef;
|
|
7
7
|
_dynamicPageComponent: DynamicPageComponent;
|
|
8
|
+
_toolbarComponent: ToolbarComponent;
|
|
8
9
|
toolbarClick: EventEmitter<any>;
|
|
9
10
|
workflowChoiceClick: EventEmitter<any>;
|
|
10
11
|
close: EventEmitter<any>;
|
|
@@ -41,6 +42,7 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
41
42
|
landscape: boolean;
|
|
42
43
|
standalone: boolean;
|
|
43
44
|
modernTabs: LayoutSetting[];
|
|
45
|
+
formVisibilityStatus: FormVisibilityStatus;
|
|
44
46
|
titleRef: ViewContainerRef;
|
|
45
47
|
headerAvatarRef: TemplateRef<any>;
|
|
46
48
|
workflowButtons: any[];
|
|
@@ -51,11 +53,12 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
51
53
|
isFirefox: boolean;
|
|
52
54
|
constructor(el: ElementRef);
|
|
53
55
|
ngOnInit(): void;
|
|
56
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
54
57
|
onToolbarClick(btn: any, menu?: any): void;
|
|
55
58
|
onWfChoiceSelect(wfChoice: any): void;
|
|
56
59
|
onTabChanged(tab: TabPanelComponent): void;
|
|
57
60
|
getNumber(val: any): number;
|
|
58
61
|
onDynamicComponentEvents(e: any): void;
|
|
59
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<FundamentalDynamicFormComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FundamentalDynamicFormComponent, "bsu-fundamental-dynamic-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "landscape": "landscape"; "standalone": "standalone"; "modernTabs": "modernTabs"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; }, never, never, false>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FundamentalDynamicFormComponent, "bsu-fundamental-dynamic-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "landscape": "landscape"; "standalone": "standalone"; "modernTabs": "modernTabs"; "formVisibilityStatus": "formVisibilityStatus"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; }, never, never, false>;
|
|
61
64
|
}
|