barsa-novin-ray-core 2.2.21 → 2.2.32
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/abstract-classes/layout-panel-base.mjs +7 -5
- package/esm2022/lib/abstract-classes/report-view-base.component.mjs +4 -2
- package/esm2022/lib/barsa-novin-ray-core-routing.module.mjs +18 -4
- package/esm2022/lib/barsa-novin-ray-core.module.mjs +8 -5
- package/esm2022/lib/constants.mjs +12 -1
- package/esm2022/lib/controllers/login-verification-controller.mjs +2 -2
- package/esm2022/lib/directives/dynamic-style.directive.mjs +10 -2
- package/esm2022/lib/directives/fill-empty-space.mjs +8 -3
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/directives/save-image.directive.mjs +28 -0
- package/esm2022/lib/dynamic-component/base-view-item-props.mjs +10 -5
- package/esm2022/lib/login-enter-mobile/login-enter-mobile.component.mjs +5 -16
- package/esm2022/lib/login-verification/login-verification.component.mjs +14 -15
- package/esm2022/lib/login2/login2.component.mjs +14 -6
- package/esm2022/lib/portal-page/portal-sidebar.component.mjs +1 -1
- package/esm2022/lib/services/form-panel.service.mjs +10 -3
- package/esm2022/lib/services/index.mjs +2 -1
- package/esm2022/lib/services/layout-main-content.service.mjs +19 -0
- package/fesm2022/barsa-novin-ray-core.mjs +142 -53
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/layout-panel-base.d.ts +4 -2
- package/lib/abstract-classes/report-view-base.component.d.ts +2 -1
- package/lib/barsa-novin-ray-core.module.d.ts +7 -6
- package/lib/constants.d.ts +1 -0
- package/lib/directives/dynamic-style.directive.d.ts +2 -0
- package/lib/directives/fill-empty-space.d.ts +3 -2
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/save-image.directive.d.ts +8 -0
- package/lib/dynamic-component/base-view-item-props.d.ts +3 -2
- package/lib/login-enter-mobile/login-enter-mobile.component.d.ts +0 -3
- package/lib/login-verification/login-verification.component.d.ts +3 -3
- package/lib/login2/login2.component.d.ts +8 -2
- package/lib/services/index.d.ts +1 -0
- package/lib/services/layout-main-content.service.d.ts +11 -0
- package/package.json +1 -1
|
@@ -4,10 +4,12 @@ import { FormPanelService } from '../services/form-panel.service';
|
|
|
4
4
|
import { LayoutService } from '../services/layout.service';
|
|
5
5
|
import { LayoutItemBaseComponent } from './layout-item-base';
|
|
6
6
|
import { LayoutSetting } from './models';
|
|
7
|
+
import { PortalService } from '../services/portal.service';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class LayoutPanelBaseComponent extends LayoutItemBaseComponent implements OnInit {
|
|
9
10
|
el: ElementRef;
|
|
10
11
|
protected formPanelService: FormPanelService;
|
|
12
|
+
protected portalService: PortalService;
|
|
11
13
|
protected layoutService: LayoutService;
|
|
12
14
|
protected _cdr: ChangeDetectorRef;
|
|
13
15
|
parentDom: HTMLElement;
|
|
@@ -16,10 +18,10 @@ export declare class LayoutPanelBaseComponent extends LayoutItemBaseComponent im
|
|
|
16
18
|
maxLabelWidth$: Observable<number>;
|
|
17
19
|
isSearchPanel: boolean;
|
|
18
20
|
id: string;
|
|
19
|
-
constructor(el: ElementRef, formPanelService: FormPanelService, layoutService: LayoutService, _cdr: ChangeDetectorRef);
|
|
21
|
+
constructor(el: ElementRef, formPanelService: FormPanelService, portalService: PortalService, layoutService: LayoutService, _cdr: ChangeDetectorRef);
|
|
20
22
|
ngOnInit(): void;
|
|
21
23
|
protected _calcWidth(config: any): void;
|
|
22
24
|
protected _setLabelWidth(item: any): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutPanelBaseComponent, [null, null, { self: true; }, null]>;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutPanelBaseComponent, [null, null, null, { self: true; }, null]>;
|
|
24
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutPanelBaseComponent, "bnrc-layout-panel-base", never, { "parentDom": { "alias": "parentDom"; "required": false; }; "isPanel": { "alias": "isPanel"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
27
|
}
|
|
@@ -22,6 +22,7 @@ export declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting>
|
|
|
22
22
|
allColumns: any;
|
|
23
23
|
isCheckList: boolean;
|
|
24
24
|
simpleInlineEdit: boolean;
|
|
25
|
+
inlineEditWithoutSelection: boolean;
|
|
25
26
|
hideToolbar: boolean;
|
|
26
27
|
hideTitle: boolean;
|
|
27
28
|
toolbarButtons: MenuItem[];
|
|
@@ -201,5 +202,5 @@ export declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting>
|
|
|
201
202
|
protected _containerWidthChanged(_: number): void;
|
|
202
203
|
protected _setRowIndicator(columns: ReportViewColumn[]): void;
|
|
203
204
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewBaseComponent<any>, [null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; skipSelf: true; }]>;
|
|
204
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewBaseComponent<any>, "bnrc-report-view-base", never, { "contextView": { "alias": "contextView"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "simpleInlineEdit": { "alias": "simpleInlineEdit"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "access": { "alias": "access"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "selectedCount": { "alias": "selectedCount"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "secondaryColumns": { "alias": "secondaryColumns"; "required": false; }; "popin": { "alias": "popin"; "required": false; }; "customFieldInfo": { "alias": "customFieldInfo"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "listEditViewId": { "alias": "listEditViewId"; "required": false; }; "typeViewId": { "alias": "typeViewId"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "relationList": { "alias": "relationList"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "rowItem": { "alias": "rowItem"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "selectedMo": { "alias": "selectedMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "hasInlineDeleteButton": { "alias": "hasInlineDeleteButton"; "required": false; }; "hasInlineEditButton": { "alias": "hasInlineEditButton"; "required": false; }; "contextSetting": { "alias": "contextSetting"; "required": false; }; "gridFreeColumnSizing": { "alias": "gridFreeColumnSizing"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "cartableTemplates": { "alias": "cartableTemplates"; "required": false; }; "cartableChildsMo": { "alias": "cartableChildsMo"; "required": false; }; "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; }, { "columnSummary": "columnSummary"; "escapeKey": "escapeKey"; "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "workflowShareButtons": "workflowShareButtons"; "sortDescending": "sortDescending"; "filter": "filter"; "executeToolbarButton": "executeToolbarButton"; "resetGridSettings": "resetGridSettings"; "sortSettingsChange": "sortSettingsChange"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "columnResized": "columnResized"; "hasDetailsInRow": "hasDetailsInRow"; }, never, never, false, never>;
|
|
205
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReportViewBaseComponent<any>, "bnrc-report-view-base", never, { "contextView": { "alias": "contextView"; "required": false; }; "viewSetting": { "alias": "viewSetting"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "isCheckList": { "alias": "isCheckList"; "required": false; }; "simpleInlineEdit": { "alias": "simpleInlineEdit"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "allChecked": { "alias": "allChecked"; "required": false; }; "moDataList": { "alias": "moDataList"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "access": { "alias": "access"; "required": false; }; "groupby": { "alias": "groupby"; "required": false; }; "selectedCount": { "alias": "selectedCount"; "required": false; }; "conditionalFormats": { "alias": "conditionalFormats"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "secondaryColumns": { "alias": "secondaryColumns"; "required": false; }; "popin": { "alias": "popin"; "required": false; }; "customFieldInfo": { "alias": "customFieldInfo"; "required": false; }; "hasSummary": { "alias": "hasSummary"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "columnsCount": { "alias": "columnsCount"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "openOnClick": { "alias": "openOnClick"; "required": false; }; "typeDefId": { "alias": "typeDefId"; "required": false; }; "reportId": { "alias": "reportId"; "required": false; }; "listEditViewId": { "alias": "listEditViewId"; "required": false; }; "typeViewId": { "alias": "typeViewId"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "relationList": { "alias": "relationList"; "required": false; }; "disableResponsive": { "alias": "disableResponsive"; "required": false; }; "rowItem": { "alias": "rowItem"; "required": false; }; "mobileOrTablet": { "alias": "mobileOrTablet"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "newInlineEditMo": { "alias": "newInlineEditMo"; "required": false; }; "selectedMo": { "alias": "selectedMo"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "onlyInlineEdit": { "alias": "onlyInlineEdit"; "required": false; }; "rowHoverable": { "alias": "rowHoverable"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "tlbButtons": { "alias": "tlbButtons"; "required": false; }; "formSetting": { "alias": "formSetting"; "required": false; }; "disableOverflowContextMenu": { "alias": "disableOverflowContextMenu"; "required": false; }; "rowActivable": { "alias": "rowActivable"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "showOkCancelButtons": { "alias": "showOkCancelButtons"; "required": false; }; "title": { "alias": "title"; "required": false; }; "hasInlineDeleteButton": { "alias": "hasInlineDeleteButton"; "required": false; }; "hasInlineEditButton": { "alias": "hasInlineEditButton"; "required": false; }; "contextSetting": { "alias": "contextSetting"; "required": false; }; "gridFreeColumnSizing": { "alias": "gridFreeColumnSizing"; "required": false; }; "navigationArrow": { "alias": "navigationArrow"; "required": false; }; "cartableTemplates": { "alias": "cartableTemplates"; "required": false; }; "cartableChildsMo": { "alias": "cartableChildsMo"; "required": false; }; "pagingSetting": { "alias": "pagingSetting"; "required": false; }; "containerWidth": { "alias": "containerWidth"; "required": false; }; }, { "columnSummary": "columnSummary"; "escapeKey": "escapeKey"; "resetWorkflowState": "resetWorkflowState"; "deselectAll": "deselectAll"; "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelSave": "editFormPanelSave"; "selectNextInlineRecord": "selectNextInlineRecord"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "workflowShareButtons": "workflowShareButtons"; "sortDescending": "sortDescending"; "filter": "filter"; "executeToolbarButton": "executeToolbarButton"; "resetGridSettings": "resetGridSettings"; "sortSettingsChange": "sortSettingsChange"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "columnResized": "columnResized"; "hasDetailsInRow": "hasDetailsInRow"; }, never, never, false, never>;
|
|
205
206
|
}
|
|
@@ -127,11 +127,12 @@ import * as i106 from "./directives/stop-propagation.directive";
|
|
|
127
127
|
import * as i107 from "./directives/prevent-default.directive";
|
|
128
128
|
import * as i108 from "./directives/render-ulv.directive";
|
|
129
129
|
import * as i109 from "./directives/print-files.directive";
|
|
130
|
-
import * as i110 from "
|
|
131
|
-
import * as i111 from "
|
|
132
|
-
import * as i112 from "./
|
|
133
|
-
import * as i113 from "./
|
|
134
|
-
import * as i114 from "
|
|
130
|
+
import * as i110 from "./directives/save-image.directive";
|
|
131
|
+
import * as i111 from "@angular/common";
|
|
132
|
+
import * as i112 from "./barsa-novin-ray-core-routing.module";
|
|
133
|
+
import * as i113 from "./form-page-routing/barsa-sap-ui-form-page.module";
|
|
134
|
+
import * as i114 from "./resizable-module/resizable.module";
|
|
135
|
+
import * as i115 from "@angular/forms";
|
|
135
136
|
export declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
136
137
|
protected dcm: DynamicComponentService;
|
|
137
138
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
@@ -139,6 +140,6 @@ export declare class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
139
140
|
constructor(dcm: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver);
|
|
140
141
|
static forRoot(): ModuleWithProviders<BarsaNovinRayCoreModule>;
|
|
141
142
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaNovinRayCoreModule, never>;
|
|
142
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof i1.FormComponent, typeof i2.FieldUiComponent, typeof i3.NotFoundComponent, typeof i4.RootPageComponent, typeof i5.RootPortalComponent, typeof i6.ReportContainerComponent, typeof i7.FormNewComponent, typeof i8.ModalRootComponent, typeof i9.PortalPageComponent, typeof i10.PortalPageSidebarComponent, typeof i11.RedirectReportNavigatorCommandComponent, typeof i12.EmptyPageWithRouterAndRouterOutletComponent, typeof i13.DynamicItemComponent, typeof i14.DynamicFormComponent, typeof i15.BaseDynamicComponent, typeof i16.DynamicFormToolbaritemComponent, typeof i17.DynamicLayoutComponent, typeof i18.EmptyPageComponent, typeof i19.FormPageComponent, typeof i20.FormFieldReportPageComponent, typeof i21.Login2Component, typeof i22.LoginEnterMobileComponent, typeof i23.LoginVerificationComponent, typeof i24.ButtonLoadingComponent, typeof i25.NumeralPipe, typeof i26.CanUploadFilePipe, typeof i27.RemoveNewlinePipe, typeof i28.ConvertToStylePipe, typeof i29.FilterPipe, typeof i30.FilterTabPipe, typeof i31.FilterStringPipe, typeof i32.FioriIconPipe, typeof i33.SortPipe, typeof i34.GroupByPipe, typeof i35.MultipleGroupByPipe, typeof i36.MoValuePipe, typeof i37.MoReportValuePipe, typeof i38.HeaderFacetValuePipe, typeof i39.PictureFieldSourcePipe, typeof i40.TlbButtonsPipe, typeof i41.SeperatorFixPipe, typeof i42.MoReportValueConcatPipe, typeof i43.ContextMenuPipe, typeof i44.BbbTranslatePipe, typeof i45.BarsaIconDictPipe, typeof i46.FileInfoCountPipe, typeof i47.ControlUiPipe, typeof i48.VisibleValuePipe, typeof i49.DateTimeToCaptionPipe, typeof i50.FilterToolbarControlPipe, typeof i51.ListCountPipe, typeof i52.TotalSummaryPipe, typeof i53.MergeFieldsToColumnsPipe, typeof i54.FindColumnByDbNamePipe, typeof i55.FilterColumnsByDetailsPipe, typeof i56.MoInfoUlvMoListPipe, typeof i57.MoInfoUlvPagingPipe, typeof i58.ReversePipe, typeof i59.ColumnCustomUiPipe, typeof i60.SanitizeTextPipe, typeof i61.ColumnCustomComponentPipe, typeof i62.ColumnIconPipe, typeof i63.ColumnValuePipe, typeof i64.RowNumberPipe, typeof i65.ComboRowImagePipe, typeof i66.IsExpandedNodePipe, typeof i67.ThImageOrIconePipe, typeof i68.FindPreviewColumnPipe, typeof i69.ReplacePipe, typeof i70.FilterWorkflowInMobilePipe, typeof i71.HideColumnsInmobilePipe, typeof i72.StringToNumberPipe, typeof i73.ColumnValueOfParametersPipe, typeof i74.HideAcceptCancelButtonsPipe, typeof i75.FilterInlineActionListPipe, typeof i76.IsImagePipe, typeof i77.PlaceHolderDirective, typeof i78.NumbersOnlyInputDirective, typeof i79.RenderUlvViewerDirective, typeof i80.RenderUlvPaginDirective, typeof i81.AnchorScrollDirective, typeof i82.ItemsRendererDirective, typeof i83.UlvCommandDirective, typeof i84.DynamicCommandDirective, typeof i85.WorfkflowwChoiceCommandDirective, typeof i86.ImageLazyDirective, typeof i87.UntilInViewDirective, typeof i88.IntersectionObserverDirective, typeof i89.EllipsifyDirective, typeof i90.TableResizerDirective, typeof i91.ColumnResizerDirective, typeof i92.AttrRtlDirective, typeof i93.CopyDirective, typeof i94.EllapsisTextDirective, typeof i95.FillEmptySpaceDirective, typeof i96.FormCloseDirective, typeof i97.MobileDirective, typeof i98.BodyClickDirective, typeof i99.CountDownDirective, typeof i100.RouteFormChangeDirective, typeof i101.DynamicStyleDirective, typeof i102.NowraptextDirective, typeof i103.LabelmandatoryDirective, typeof i104.AbsoluteDivBodyDirective, typeof i105.LoadExternalFilesDirective, typeof i106.StopPropagationDirective, typeof i107.PreventDefaultDirective, typeof i108.RenderUlvDirective, typeof i109.PrintFilesDirective], [typeof
|
|
143
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaNovinRayCoreModule, [typeof i1.FormComponent, typeof i2.FieldUiComponent, typeof i3.NotFoundComponent, typeof i4.RootPageComponent, typeof i5.RootPortalComponent, typeof i6.ReportContainerComponent, typeof i7.FormNewComponent, typeof i8.ModalRootComponent, typeof i9.PortalPageComponent, typeof i10.PortalPageSidebarComponent, typeof i11.RedirectReportNavigatorCommandComponent, typeof i12.EmptyPageWithRouterAndRouterOutletComponent, typeof i13.DynamicItemComponent, typeof i14.DynamicFormComponent, typeof i15.BaseDynamicComponent, typeof i16.DynamicFormToolbaritemComponent, typeof i17.DynamicLayoutComponent, typeof i18.EmptyPageComponent, typeof i19.FormPageComponent, typeof i20.FormFieldReportPageComponent, typeof i21.Login2Component, typeof i22.LoginEnterMobileComponent, typeof i23.LoginVerificationComponent, typeof i24.ButtonLoadingComponent, typeof i25.NumeralPipe, typeof i26.CanUploadFilePipe, typeof i27.RemoveNewlinePipe, typeof i28.ConvertToStylePipe, typeof i29.FilterPipe, typeof i30.FilterTabPipe, typeof i31.FilterStringPipe, typeof i32.FioriIconPipe, typeof i33.SortPipe, typeof i34.GroupByPipe, typeof i35.MultipleGroupByPipe, typeof i36.MoValuePipe, typeof i37.MoReportValuePipe, typeof i38.HeaderFacetValuePipe, typeof i39.PictureFieldSourcePipe, typeof i40.TlbButtonsPipe, typeof i41.SeperatorFixPipe, typeof i42.MoReportValueConcatPipe, typeof i43.ContextMenuPipe, typeof i44.BbbTranslatePipe, typeof i45.BarsaIconDictPipe, typeof i46.FileInfoCountPipe, typeof i47.ControlUiPipe, typeof i48.VisibleValuePipe, typeof i49.DateTimeToCaptionPipe, typeof i50.FilterToolbarControlPipe, typeof i51.ListCountPipe, typeof i52.TotalSummaryPipe, typeof i53.MergeFieldsToColumnsPipe, typeof i54.FindColumnByDbNamePipe, typeof i55.FilterColumnsByDetailsPipe, typeof i56.MoInfoUlvMoListPipe, typeof i57.MoInfoUlvPagingPipe, typeof i58.ReversePipe, typeof i59.ColumnCustomUiPipe, typeof i60.SanitizeTextPipe, typeof i61.ColumnCustomComponentPipe, typeof i62.ColumnIconPipe, typeof i63.ColumnValuePipe, typeof i64.RowNumberPipe, typeof i65.ComboRowImagePipe, typeof i66.IsExpandedNodePipe, typeof i67.ThImageOrIconePipe, typeof i68.FindPreviewColumnPipe, typeof i69.ReplacePipe, typeof i70.FilterWorkflowInMobilePipe, typeof i71.HideColumnsInmobilePipe, typeof i72.StringToNumberPipe, typeof i73.ColumnValueOfParametersPipe, typeof i74.HideAcceptCancelButtonsPipe, typeof i75.FilterInlineActionListPipe, typeof i76.IsImagePipe, typeof i77.PlaceHolderDirective, typeof i78.NumbersOnlyInputDirective, typeof i79.RenderUlvViewerDirective, typeof i80.RenderUlvPaginDirective, typeof i81.AnchorScrollDirective, typeof i82.ItemsRendererDirective, typeof i83.UlvCommandDirective, typeof i84.DynamicCommandDirective, typeof i85.WorfkflowwChoiceCommandDirective, typeof i86.ImageLazyDirective, typeof i87.UntilInViewDirective, typeof i88.IntersectionObserverDirective, typeof i89.EllipsifyDirective, typeof i90.TableResizerDirective, typeof i91.ColumnResizerDirective, typeof i92.AttrRtlDirective, typeof i93.CopyDirective, typeof i94.EllapsisTextDirective, typeof i95.FillEmptySpaceDirective, typeof i96.FormCloseDirective, typeof i97.MobileDirective, typeof i98.BodyClickDirective, typeof i99.CountDownDirective, typeof i100.RouteFormChangeDirective, typeof i101.DynamicStyleDirective, typeof i102.NowraptextDirective, typeof i103.LabelmandatoryDirective, typeof i104.AbsoluteDivBodyDirective, typeof i105.LoadExternalFilesDirective, typeof i106.StopPropagationDirective, typeof i107.PreventDefaultDirective, typeof i108.RenderUlvDirective, typeof i109.PrintFilesDirective, typeof i110.SaveImageDirective], [typeof i111.CommonModule, typeof i112.BarsaNovinRayCoreRoutingModule, typeof i113.BarsaSapUiFormPageModule, typeof i114.ResizableModule, typeof i115.FormsModule, typeof i115.ReactiveFormsModule], [typeof i1.FormComponent, typeof i2.FieldUiComponent, typeof i3.NotFoundComponent, typeof i4.RootPageComponent, typeof i5.RootPortalComponent, typeof i6.ReportContainerComponent, typeof i7.FormNewComponent, typeof i8.ModalRootComponent, typeof i9.PortalPageComponent, typeof i10.PortalPageSidebarComponent, typeof i11.RedirectReportNavigatorCommandComponent, typeof i12.EmptyPageWithRouterAndRouterOutletComponent, typeof i13.DynamicItemComponent, typeof i14.DynamicFormComponent, typeof i15.BaseDynamicComponent, typeof i16.DynamicFormToolbaritemComponent, typeof i17.DynamicLayoutComponent, typeof i18.EmptyPageComponent, typeof i19.FormPageComponent, typeof i20.FormFieldReportPageComponent, typeof i21.Login2Component, typeof i22.LoginEnterMobileComponent, typeof i23.LoginVerificationComponent, typeof i24.ButtonLoadingComponent, typeof i25.NumeralPipe, typeof i26.CanUploadFilePipe, typeof i27.RemoveNewlinePipe, typeof i28.ConvertToStylePipe, typeof i29.FilterPipe, typeof i30.FilterTabPipe, typeof i31.FilterStringPipe, typeof i32.FioriIconPipe, typeof i33.SortPipe, typeof i34.GroupByPipe, typeof i35.MultipleGroupByPipe, typeof i36.MoValuePipe, typeof i37.MoReportValuePipe, typeof i38.HeaderFacetValuePipe, typeof i39.PictureFieldSourcePipe, typeof i40.TlbButtonsPipe, typeof i41.SeperatorFixPipe, typeof i42.MoReportValueConcatPipe, typeof i43.ContextMenuPipe, typeof i44.BbbTranslatePipe, typeof i45.BarsaIconDictPipe, typeof i46.FileInfoCountPipe, typeof i47.ControlUiPipe, typeof i48.VisibleValuePipe, typeof i49.DateTimeToCaptionPipe, typeof i50.FilterToolbarControlPipe, typeof i51.ListCountPipe, typeof i52.TotalSummaryPipe, typeof i53.MergeFieldsToColumnsPipe, typeof i54.FindColumnByDbNamePipe, typeof i55.FilterColumnsByDetailsPipe, typeof i56.MoInfoUlvMoListPipe, typeof i57.MoInfoUlvPagingPipe, typeof i58.ReversePipe, typeof i59.ColumnCustomUiPipe, typeof i60.SanitizeTextPipe, typeof i61.ColumnCustomComponentPipe, typeof i62.ColumnIconPipe, typeof i63.ColumnValuePipe, typeof i64.RowNumberPipe, typeof i65.ComboRowImagePipe, typeof i66.IsExpandedNodePipe, typeof i67.ThImageOrIconePipe, typeof i68.FindPreviewColumnPipe, typeof i69.ReplacePipe, typeof i70.FilterWorkflowInMobilePipe, typeof i71.HideColumnsInmobilePipe, typeof i72.StringToNumberPipe, typeof i73.ColumnValueOfParametersPipe, typeof i74.HideAcceptCancelButtonsPipe, typeof i75.FilterInlineActionListPipe, typeof i76.IsImagePipe, typeof i77.PlaceHolderDirective, typeof i78.NumbersOnlyInputDirective, typeof i79.RenderUlvViewerDirective, typeof i80.RenderUlvPaginDirective, typeof i81.AnchorScrollDirective, typeof i82.ItemsRendererDirective, typeof i83.UlvCommandDirective, typeof i84.DynamicCommandDirective, typeof i85.WorfkflowwChoiceCommandDirective, typeof i86.ImageLazyDirective, typeof i87.UntilInViewDirective, typeof i88.IntersectionObserverDirective, typeof i89.EllipsifyDirective, typeof i90.TableResizerDirective, typeof i91.ColumnResizerDirective, typeof i92.AttrRtlDirective, typeof i93.CopyDirective, typeof i94.EllapsisTextDirective, typeof i95.FillEmptySpaceDirective, typeof i96.FormCloseDirective, typeof i97.MobileDirective, typeof i98.BodyClickDirective, typeof i99.CountDownDirective, typeof i100.RouteFormChangeDirective, typeof i101.DynamicStyleDirective, typeof i102.NowraptextDirective, typeof i103.LabelmandatoryDirective, typeof i104.AbsoluteDivBodyDirective, typeof i105.LoadExternalFilesDirective, typeof i106.StopPropagationDirective, typeof i107.PreventDefaultDirective, typeof i108.RenderUlvDirective, typeof i109.PrintFilesDirective, typeof i110.SaveImageDirective]>;
|
|
143
144
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaNovinRayCoreModule>;
|
|
144
145
|
}
|
package/lib/constants.d.ts
CHANGED
|
@@ -162,3 +162,4 @@ export declare function forbiddenValidator(nameRe: RegExp): ValidatorFn;
|
|
|
162
162
|
export declare function GetImgTags(setting: any): string;
|
|
163
163
|
export declare function ImagetoPrint(setting: any): string;
|
|
164
164
|
export declare function PrintImage(setting: any): void;
|
|
165
|
+
export declare function SaveImageToFile(name: string, src: string): void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SimpleChanges } from '@angular/core';
|
|
1
2
|
import { BaseDirective } from './base.directive';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DynamicStyleDirective extends BaseDirective {
|
|
@@ -5,6 +6,7 @@ export declare class DynamicStyleDirective extends BaseDirective {
|
|
|
5
6
|
id: string;
|
|
6
7
|
private _style;
|
|
7
8
|
ngOnInit(): void;
|
|
9
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
8
10
|
ngOnDestroy(): void;
|
|
9
11
|
protected _addDynamicFormStyles(cssStyles: string | undefined): void;
|
|
10
12
|
protected _removeDynamicFormStyles(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, Renderer2, EventEmitter } from '@angular/core';
|
|
2
2
|
import { BaseDirective } from './base.directive';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FillEmptySpaceDirective extends BaseDirective implements AfterViewInit {
|
|
@@ -13,6 +13,7 @@ export declare class FillEmptySpaceDirective extends BaseDirective implements Af
|
|
|
13
13
|
height?: number;
|
|
14
14
|
dontUseTopBound: boolean;
|
|
15
15
|
setMinHeight: boolean;
|
|
16
|
+
heightChanged: EventEmitter<any>;
|
|
16
17
|
_height: string;
|
|
17
18
|
topBound: string;
|
|
18
19
|
oldTopBound: string;
|
|
@@ -21,5 +22,5 @@ export declare class FillEmptySpaceDirective extends BaseDirective implements Af
|
|
|
21
22
|
Refresh(): void;
|
|
22
23
|
private _setHeightOfFormContent;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FillEmptySpaceDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FillEmptySpaceDirective, "[fillEmptySpace]", ["fillEmptySpace"], { "containerDom": { "alias": "containerDom"; "required": false; }; "decrement": { "alias": "decrement"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dontUseTopBound": { "alias": "dontUseTopBound"; "required": false; }; "setMinHeight": { "alias": "setMinHeight"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FillEmptySpaceDirective, "[fillEmptySpace]", ["fillEmptySpace"], { "containerDom": { "alias": "containerDom"; "required": false; }; "decrement": { "alias": "decrement"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dontUseTopBound": { "alias": "dontUseTopBound"; "required": false; }; "setMinHeight": { "alias": "setMinHeight"; "required": false; }; }, { "heightChanged": "heightChanged"; }, never, never, false, never>;
|
|
25
26
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SaveImageDirective {
|
|
3
|
+
name: string;
|
|
4
|
+
src: string;
|
|
5
|
+
_handleClick(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SaveImageDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SaveImageDirective, "[saveImage]", never, { "name": { "alias": "name"; "required": false; }; "src": { "alias": "src"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -39,6 +39,7 @@ export declare class BaseViewItemPropsComponent extends BaseViewPropsComponent i
|
|
|
39
39
|
isNewInlineMo: boolean;
|
|
40
40
|
extraRelation: any;
|
|
41
41
|
hideOpenIcon: boolean;
|
|
42
|
+
inlineEditWithoutSelection: boolean;
|
|
42
43
|
inDialog: boolean;
|
|
43
44
|
isMobile: boolean;
|
|
44
45
|
isMultiSelect: boolean;
|
|
@@ -65,7 +66,7 @@ export declare class BaseViewItemPropsComponent extends BaseViewPropsComponent i
|
|
|
65
66
|
formPanelCtrlr: any;
|
|
66
67
|
saving: boolean;
|
|
67
68
|
saved: boolean;
|
|
68
|
-
|
|
69
|
+
rewriteLayout: boolean;
|
|
69
70
|
hasCartableTemplate: boolean;
|
|
70
71
|
cartableParams: {
|
|
71
72
|
formSetting: FormSetting;
|
|
@@ -134,6 +135,6 @@ export declare class BaseViewItemPropsComponent extends BaseViewPropsComponent i
|
|
|
134
135
|
saved: boolean;
|
|
135
136
|
}>;
|
|
136
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseViewItemPropsComponent, [null, null, null, null, { optional: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; }]>;
|
|
137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewItemPropsComponent, "bnrc-base-view-item-props", never, { "checkboxComponent": { "alias": "checkboxComponent"; "required": false; }; "disableEllapsis": { "alias": "disableEllapsis"; "required": false; }; "contextMenuOverflowText": { "alias": "contextMenuOverflowText"; "required": false; }; "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; "index": { "alias": "index"; "required": false; }; "last": { "alias": "last"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "hideDetailsText": { "alias": "hideDetailsText"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "isLastChildGroup": { "alias": "isLastChildGroup"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "rowNumber": { "alias": "rowNumber"; "required": false; }; "coloringRow": { "alias": "coloringRow"; "required": false; }; "noSaveInlineEditInServer": { "alias": "noSaveInlineEditInServer"; "required": false; }; "rowIndicatorColor": { "alias": "rowIndicatorColor"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "serializedRelatedMo": { "alias": "serializedRelatedMo"; "required": false; }; "cartableTemplate": { "alias": "cartableTemplate"; "required": false; }; "cartableMo": { "alias": "cartableMo"; "required": false; }; "cartableWorkflowData": { "alias": "cartableWorkflowData"; "required": false; }; }, { "actionListClick": "actionListClick"; "events": "events"; }, never, never, false, never>;
|
|
138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseViewItemPropsComponent, "bnrc-base-view-item-props", never, { "checkboxComponent": { "alias": "checkboxComponent"; "required": false; }; "disableEllapsis": { "alias": "disableEllapsis"; "required": false; }; "contextMenuOverflowText": { "alias": "contextMenuOverflowText"; "required": false; }; "detailsComponent": { "alias": "detailsComponent"; "required": false; }; "detailsColumns": { "alias": "detailsColumns"; "required": false; }; "detailsText": { "alias": "detailsText"; "required": false; }; "mo": { "alias": "mo"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; "index": { "alias": "index"; "required": false; }; "last": { "alias": "last"; "required": false; }; "isdirty": { "alias": "isdirty"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "hideDetailsText": { "alias": "hideDetailsText"; "required": false; }; "showViewButton": { "alias": "showViewButton"; "required": false; }; "isNewInlineMo": { "alias": "isNewInlineMo"; "required": false; }; "extraRelation": { "alias": "extraRelation"; "required": false; }; "hideOpenIcon": { "alias": "hideOpenIcon"; "required": false; }; "inlineEditWithoutSelection": { "alias": "inlineEditWithoutSelection"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "rowIndicator": { "alias": "rowIndicator"; "required": false; }; "groupSummary": { "alias": "groupSummary"; "required": false; }; "isLastChildGroup": { "alias": "isLastChildGroup"; "required": false; }; "showRowNumber": { "alias": "showRowNumber"; "required": false; }; "rowNumber": { "alias": "rowNumber"; "required": false; }; "coloringRow": { "alias": "coloringRow"; "required": false; }; "noSaveInlineEditInServer": { "alias": "noSaveInlineEditInServer"; "required": false; }; "rowIndicatorColor": { "alias": "rowIndicatorColor"; "required": false; }; "UlvMainCtrlr": { "alias": "UlvMainCtrlr"; "required": false; }; "fieldDict": { "alias": "fieldDict"; "required": false; }; "actionList": { "alias": "actionList"; "required": false; }; "serializedRelatedMo": { "alias": "serializedRelatedMo"; "required": false; }; "cartableTemplate": { "alias": "cartableTemplate"; "required": false; }; "cartableMo": { "alias": "cartableMo"; "required": false; }; "cartableWorkflowData": { "alias": "cartableWorkflowData"; "required": false; }; }, { "actionListClick": "actionListClick"; "events": "events"; }, never, never, false, never>;
|
|
138
139
|
}
|
|
139
140
|
export {};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ILoginView, LoginController, ViewBase } from '../controllers';
|
|
3
3
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
4
|
-
import { MessageToastService } from '@fundamental-ngx/core';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class LoginEnterMobileComponent extends ViewBase<LoginController> implements ILoginView {
|
|
7
6
|
private fb;
|
|
@@ -11,9 +10,7 @@ export declare class LoginEnterMobileComponent extends ViewBase<LoginController>
|
|
|
11
10
|
form: FormGroup;
|
|
12
11
|
capId: import("@angular/core").WritableSignal<string>;
|
|
13
12
|
showCaptcha: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
-
messageToastService: MessageToastService<any>;
|
|
15
13
|
constructor(fb: FormBuilder);
|
|
16
|
-
showError(message: string, code: number): void;
|
|
17
14
|
codeSent(): void;
|
|
18
15
|
ngOnInit(): void;
|
|
19
16
|
get loading(): boolean;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, NgZone, QueryList, TemplateRef } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { ViewBase, ILoginVerificationView, LoginVerificationController } from '../controllers';
|
|
4
|
-
import { MessageToastService } from '@fundamental-ngx/core';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class LoginVerificationComponent extends ViewBase<LoginVerificationController> implements ILoginVerificationView {
|
|
7
6
|
private fb;
|
|
@@ -16,11 +15,12 @@ export declare class LoginVerificationComponent extends ViewBase<LoginVerificati
|
|
|
16
15
|
capId: import("@angular/core").WritableSignal<string>;
|
|
17
16
|
showCaptcha: import("@angular/core").WritableSignal<boolean>;
|
|
18
17
|
_ngZone: NgZone;
|
|
19
|
-
|
|
18
|
+
now: import("@angular/core").WritableSignal<string>;
|
|
20
19
|
constructor(fb: FormBuilder);
|
|
21
20
|
ngOnInit(): void;
|
|
22
|
-
codeVerified(): void;
|
|
23
21
|
showError(message: string, code: number): void;
|
|
22
|
+
codeVerified(): void;
|
|
23
|
+
onRefreshCaptcha(): void;
|
|
24
24
|
onVerifyCode(): void;
|
|
25
25
|
_verifyCode(): void;
|
|
26
26
|
get invArr(): ElementRef[];
|
|
@@ -1,23 +1,28 @@
|
|
|
1
|
-
import { WritableSignal, OnInit } from '@angular/core';
|
|
1
|
+
import { WritableSignal, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { PortalService } from '../services/portal.service';
|
|
4
4
|
import { LoginState } from '../controllers';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class Login2Component implements OnInit {
|
|
7
|
+
_errorTemplate: TemplateRef<any>;
|
|
7
8
|
mobile: WritableSignal<string>;
|
|
8
9
|
loading: WritableSignal<boolean>;
|
|
9
10
|
_router: Router;
|
|
10
11
|
_portalService: PortalService;
|
|
11
12
|
state: WritableSignal<LoginState>;
|
|
13
|
+
errorMessage: WritableSignal<string>;
|
|
12
14
|
appSettings: WritableSignal<Settings>;
|
|
13
15
|
logoUrl: string;
|
|
14
16
|
backgroundUrl: string;
|
|
15
17
|
title: string;
|
|
16
18
|
hideGovSso: boolean;
|
|
17
|
-
constructor();
|
|
18
19
|
ngOnInit(): void;
|
|
19
20
|
onOtpSent(mobile: string): void;
|
|
20
21
|
onChangeMobile(): void;
|
|
22
|
+
onOtpError(e: {
|
|
23
|
+
message: string;
|
|
24
|
+
code: number;
|
|
25
|
+
}): void;
|
|
21
26
|
onOtpVerfied(): void;
|
|
22
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<Login2Component, never>;
|
|
23
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<Login2Component, "bnrc-login2", never, {}, {}, never, never, false, never>;
|
|
@@ -30,5 +35,6 @@ interface Settings {
|
|
|
30
35
|
LogoUrl: string;
|
|
31
36
|
BackgroundUrl: string;
|
|
32
37
|
HideGovSso: boolean;
|
|
38
|
+
GovSSOHref: string;
|
|
33
39
|
}
|
|
34
40
|
export {};
|
package/lib/services/index.d.ts
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LayoutMainContentService {
|
|
4
|
+
mainContentHeight$: Observable<number>;
|
|
5
|
+
private mainContentHeightSource;
|
|
6
|
+
id: string;
|
|
7
|
+
constructor();
|
|
8
|
+
setMainContentHeight(height: number): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutMainContentService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutMainContentService>;
|
|
11
|
+
}
|