barsa-sap-ui 1.0.439 → 1.0.441
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-custom-inline-edit/barsa-custom-inline-edit.component.mjs +15 -0
- package/esm2020/lib/barsa-custom-inline-edit-row/barsa-custom-inline-edit-row.component.mjs +26 -0
- package/esm2020/lib/barsa-grid-layout-panel/barsa-grid-layout-panel.component.mjs +3 -3
- package/esm2020/lib/barsa-horizontal-flex-panel/barsa-horizontal-flex-panel.component.mjs +3 -3
- package/esm2020/lib/barsa-sap-ui.module.mjs +21 -19
- package/esm2020/lib/barsa-table-header/barsa-table-header.component.mjs +3 -3
- package/esm2020/lib/index.mjs +15 -11
- package/esm2020/lib/layout-control/layout-control.component.mjs +5 -4
- package/esm2020/lib/ly-layout-panel/ly-layout-panel.component.mjs +2 -1
- package/esm2020/lib/ui-check-box/ui-check-box.component.mjs +8 -3
- package/esm2020/lib/ui-date-time/ui-date-time.component.mjs +40 -22
- package/esm2020/lib/ui-grid/ui-grid.component.mjs +3 -3
- package/esm2020/lib/ui-mo-info-sub-form-ui/ui-mo-info-sub-form-ui.component.mjs +13 -3
- package/esm2020/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +4 -4
- package/esm2020/lib/ui-pdf-viewer/ui-pdf-viewer.component.mjs +3 -3
- package/esm2020/lib/ui-switch-button/ui-switch-button.component.mjs +3 -3
- package/esm2020/lib/ulv-column-settings/ulv-column-settings.component.mjs +7 -2
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/barsa-sap-ui.mjs +132 -58
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +130 -57
- package/fesm2020/barsa-sap-ui.mjs.map +1 -1
- package/lib/barsa-custom-inline-edit/barsa-custom-inline-edit.component.d.ts +6 -0
- package/lib/barsa-custom-inline-edit-row/barsa-custom-inline-edit-row.component.d.ts +9 -0
- package/lib/barsa-horizontal-flex-panel/barsa-horizontal-flex-panel.component.d.ts +6 -1
- package/lib/barsa-sap-ui.module.d.ts +31 -29
- package/lib/index.d.ts +5 -8
- package/lib/ui-check-box/ui-check-box.component.d.ts +2 -0
- package/lib/ui-date-time/ui-date-time.component.d.ts +2 -0
- package/lib/ui-mo-info-sub-form-ui/ui-mo-info-sub-form-ui.component.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ReportViewBaseComponent, UiReportViewBaseSetting } from 'barsa-novin-ray-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BarsaCustomInlineEditComponent extends ReportViewBaseComponent<UiReportViewBaseSetting> {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaCustomInlineEditComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaCustomInlineEditComponent, "bsu-barsa-custom-inline-edit", never, {}, {}, never, never, false>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseViewItemPropsComponent, FormComponentParams } from 'barsa-novin-ray-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BarsaCustomInlineEditRowComponent extends BaseViewItemPropsComponent {
|
|
4
|
+
params: FormComponentParams;
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
protected readonly toolbar: BarProp;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaCustomInlineEditRowComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaCustomInlineEditRowComponent, "bsu-barsa-custom-inline-edit-row", never, {}, {}, never, never, false>;
|
|
9
|
+
}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { LayoutPanelBaseComponent, LayoutSetting } from 'barsa-novin-ray-core';
|
|
2
|
+
import { MetaobjectDataModel, LayoutPanelBaseComponent, LayoutSetting } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class BarsaHorizontalFlexPanelComponent extends LayoutPanelBaseComponent implements OnInit {
|
|
5
5
|
layoutControls: LayoutSetting[];
|
|
6
|
+
parameters: HorizontalFlexPanelSettings;
|
|
6
7
|
ngOnInit(): void;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaHorizontalFlexPanelComponent, never>;
|
|
8
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaHorizontalFlexPanelComponent, "bsu-barsa-horizontal-flex-panel", never, {}, {}, never, never, false>;
|
|
9
10
|
}
|
|
11
|
+
interface HorizontalFlexPanelSettings extends MetaobjectDataModel {
|
|
12
|
+
Gap: string;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -179,40 +179,42 @@ import * as i174 from "./ui-multi-select-smile/ui-multi-select-smile.component";
|
|
|
179
179
|
import * as i175 from "./barsa-report-checkbox-switch-button/barsa-report-checkbox-switch-button.component";
|
|
180
180
|
import * as i176 from "./barsa-column-rownumber/barsa-column-rownumber.component";
|
|
181
181
|
import * as i177 from "./barsa-card-row-payam/barsa-card-row-payam.component";
|
|
182
|
-
import * as i178 from "./
|
|
183
|
-
import * as i179 from "./
|
|
184
|
-
import * as i180 from "./
|
|
185
|
-
import * as i181 from "./
|
|
186
|
-
import * as i182 from "./
|
|
187
|
-
import * as i183 from "./
|
|
188
|
-
import * as i184 from "./
|
|
189
|
-
import * as i185 from "./
|
|
190
|
-
import * as i186 from "./
|
|
191
|
-
import * as i187 from "./
|
|
192
|
-
import * as i188 from "./
|
|
193
|
-
import * as i189 from "./
|
|
194
|
-
import * as i190 from "./
|
|
195
|
-
import * as i191 from "./
|
|
196
|
-
import * as i192 from "./
|
|
197
|
-
import * as i193 from "
|
|
198
|
-
import * as i194 from "
|
|
199
|
-
import * as i195 from "
|
|
200
|
-
import * as i196 from "@angular/
|
|
201
|
-
import * as i197 from "
|
|
202
|
-
import * as i198 from "@
|
|
203
|
-
import * as i199 from "
|
|
204
|
-
import * as i200 from "ngx
|
|
205
|
-
import * as i201 from "
|
|
206
|
-
import * as i202 from "
|
|
207
|
-
import * as i203 from "
|
|
208
|
-
import * as i204 from "
|
|
182
|
+
import * as i178 from "./barsa-custom-inline-edit/barsa-custom-inline-edit.component";
|
|
183
|
+
import * as i179 from "./barsa-custom-inline-edit-row/barsa-custom-inline-edit-row.component";
|
|
184
|
+
import * as i180 from "./upload-file-status.pipe";
|
|
185
|
+
import * as i181 from "./sap-font.pipe";
|
|
186
|
+
import * as i182 from "./sap-font-class.pipe";
|
|
187
|
+
import * as i183 from "./barsa-tree-item/node-has-one-depth-level.pipe";
|
|
188
|
+
import * as i184 from "./column-matrix-renderer/matrix-value.pipe";
|
|
189
|
+
import * as i185 from "./dynamic-page-size.pipe";
|
|
190
|
+
import * as i186 from "./sap-size.pipe";
|
|
191
|
+
import * as i187 from "./wizard-layout.directive";
|
|
192
|
+
import * as i188 from "./col-renderer.directive";
|
|
193
|
+
import * as i189 from "./apply-conditional-formmatings.directive";
|
|
194
|
+
import * as i190 from "./report-view-renderer.directive";
|
|
195
|
+
import * as i191 from "./fullscreen-dialog.directive";
|
|
196
|
+
import * as i192 from "./fullscreen-files.directive";
|
|
197
|
+
import * as i193 from "./download-files.directive";
|
|
198
|
+
import * as i194 from "./dialog-handler.directive";
|
|
199
|
+
import * as i195 from "@angular/common";
|
|
200
|
+
import * as i196 from "@angular/forms";
|
|
201
|
+
import * as i197 from "barsa-novin-ray-core";
|
|
202
|
+
import * as i198 from "@angular/cdk/drag-drop";
|
|
203
|
+
import * as i199 from "@angular/cdk/table";
|
|
204
|
+
import * as i200 from "@fundamental-ngx/core";
|
|
205
|
+
import * as i201 from "ngx-color/swatches";
|
|
206
|
+
import * as i202 from "ngx-color/chrome";
|
|
207
|
+
import * as i203 from "@angular/cdk/clipboard";
|
|
208
|
+
import * as i204 from "barsa-calendar";
|
|
209
|
+
import * as i205 from "./barsa-sap-ui-routing.module";
|
|
210
|
+
import * as i206 from "ng2-pdfjs-viewer";
|
|
209
211
|
export declare class BarsaSapUiModule extends BaseModule {
|
|
210
212
|
protected dcm: DynamicComponentService;
|
|
211
213
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
212
|
-
protected dynamicComponents: (typeof import("barsa-sap-ui").
|
|
214
|
+
protected dynamicComponents: (typeof import("barsa-sap-ui").LayoutControlComponent | typeof import("barsa-sap-ui").UlvColumnSettingsComponent | typeof import("barsa-sap-ui").UiGridSortSettingComponent | typeof import("barsa-sap-ui").UlvSortSettingsComponent | typeof import("barsa-sap-ui").UlvGroupbySettingsComponent | typeof import("barsa-sap-ui").UlvFilterSettingsComponent | typeof import("barsa-sap-ui").UiMoInfoGeneralObjectUiComponent | typeof import("barsa-sap-ui").FileInDialogComponent | typeof import("barsa-sap-ui").BarsaAspViewerComponent | typeof import("barsa-sap-ui").CustomDateTimeComponent | typeof import("barsa-sap-ui").UiExceptionFormComponent | typeof import("barsa-sap-ui").UiGraphComponent | typeof import("barsa-sap-ui").ColumnRendererComponent | typeof import("barsa-sap-ui").UlNotifyPopupComponent | typeof import("barsa-sap-ui").ReportSearchPanelSaveComponent | typeof import("barsa-sap-ui").ReportSearchFieldsHiddenSettingsComponent | typeof import("barsa-sap-ui").ReportSearchFieldsManageComponent | typeof import("barsa-sap-ui").ManageFiltersReportComponent | typeof import("barsa-sap-ui").ReportNavigatorComponent | typeof import("barsa-sap-ui").LyLineComponent | typeof import("barsa-sap-ui").UiUlvMainUiComponent | typeof import("barsa-sap-ui").BarsaTreeItemComponent | typeof import("barsa-sap-ui").BarsaMonacoEditorComponent | typeof import("barsa-sap-ui").BarsaTinyemceComponent | typeof import("barsa-sap-ui").UlvFormMultiSelectComponent | typeof import("barsa-sap-ui").UiUlvFormMultiSelectUiComponent | typeof import("barsa-sap-ui").LayoutActionsComponent | typeof import("barsa-sap-ui").FundamentalDynamicFormComponent | typeof import("barsa-sap-ui").UlToastAdapterComponent | typeof import("barsa-sap-ui").GlobalSearchModuleComponent | typeof import("barsa-sap-ui").GlobalSearchPanelComponent | typeof import("barsa-sap-ui").LySimpleLabelComponent | typeof import("barsa-sap-ui").UlLoadingMaskUiComponent | typeof import("barsa-sap-ui").UlvContextMenuComponent | typeof import("barsa-sap-ui").UlMsgBoxAdapterComponent | typeof import("barsa-sap-ui").LyLabelComponent | typeof import("barsa-sap-ui").LyVerticalLayoutComponent | typeof import("barsa-sap-ui").LyHorizontalLayoutComponent | typeof import("barsa-sap-ui").UiPicturesInfoComponent | typeof import("barsa-sap-ui").FormDialogLessComponent | typeof import("barsa-sap-ui").UiFormPanelComponent | typeof import("barsa-sap-ui").LayoutWizardComponent | typeof import("barsa-sap-ui").ResponsiveToolbarRendererComponent | typeof import("barsa-sap-ui").ResponsiveToolbarComponent | typeof FormDialogComponent | typeof import("barsa-sap-ui").UlvSettingsComponent | typeof import("barsa-sap-ui").UiInfoBarPanelComponent | typeof import("barsa-sap-ui").UlvPagingComponent | typeof import("barsa-sap-ui").UlvToolbarComponent | typeof import("barsa-sap-ui").UlvSelectionComponent | typeof import("barsa-sap-ui").LyLayoutContainerOfRootComponent | typeof import("barsa-sap-ui").CardItemComponent | typeof import("barsa-sap-ui").BarsaUlvMainComponent | typeof import("barsa-sap-ui").ListItemComponent | typeof import("barsa-sap-ui").BarsaTableRowComponent | typeof import("barsa-sap-ui").BarsaTableColumnComponent | typeof import("barsa-sap-ui").BarsaTableHeaderComponent | typeof import("barsa-sap-ui").BreadcrumbComponent | typeof import("barsa-sap-ui").FormToolbarButtonComponent | typeof import("barsa-sap-ui").ReportNewTopFormComponent | typeof import("barsa-sap-ui").BarsaNetworkOfflineComponent | typeof import("barsa-sap-ui").FileViewerContentComponent | typeof import("barsa-sap-ui").FileViewerComponent | typeof import("barsa-sap-ui").BlobViewerComponent | typeof import("barsa-sap-ui").BarsaCartableFormComponent | typeof import("barsa-sap-ui").BarsaCartableGroupComponent | typeof import("barsa-sap-ui").BarsaToolbaritemSearchComponent | typeof import("barsa-sap-ui").BarsaTextEllipsisComponent | typeof import("barsa-sap-ui").BarsaBarPanelComponent | typeof import("barsa-sap-ui").BarsaFormSideContentComponent | typeof import("barsa-sap-ui").BarsaSimpleFormComponent | typeof import("barsa-sap-ui").BarsaCardRowPayamComponent | typeof import("barsa-sap-ui").BarsaCustomInlineEditComponent | typeof import("barsa-sap-ui").BarsaCustomInlineEditRowComponent)[];
|
|
213
215
|
constructor(dcm: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver);
|
|
214
216
|
static forRoot(): ModuleWithProviders<BarsaSapUiModule>;
|
|
215
217
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiModule, never>;
|
|
216
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiModule, [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelComponent, typeof i29.UiSearchCommandInfoUiComponent, typeof i30.UlvSettingsComponent, typeof i31.UiTinymceComponent, typeof i32.UiButtonComponent, typeof i33.UiDateTimeComponent, typeof i34.FormDialogComponent, typeof i35.HeaderFacetKeyValueComponent, typeof i36.HeaderFacetFormComponent, typeof i37.HeaderFacetRateComponent, typeof i38.HeaderFacetProgressComponent, typeof i39.HeaderFacetMicrochartComponent, typeof i40.HeaderFacetPlainTextComponent, typeof i41.UiMoInfoSubFormUiComponent, typeof i42.ResponsiveToolbarComponent, typeof i43.ResponsiveToolbarRendererComponent, typeof i44.UiTextAreaComponent, typeof i45.LayoutControlComponent, typeof i46.LayoutWizardComponent, typeof i47.FormWizardComponent, typeof i48.FormDialogLessComponent, typeof i49.RichTextStaticComponent, typeof i50.UiPicturesInfoComponent, typeof i51.LyHorizontalLayoutComponent, typeof i52.LyVerticalLayoutComponent, typeof i53.LyTabContainerComponent, typeof i54.LyTabPageComponent, typeof i55.LyLabelComponent, typeof i56.UiMoInfoComboViewerComponent, typeof i57.UlMsgBoxAdapterComponent, typeof i58.UiTreeComponent, typeof i59.HeaderAvatarComponent, typeof i60.UiWorkflowPanelUiComponent, typeof i61.UlvContextMenuComponent, typeof i62.UlLoadingMaskUiComponent, typeof i63.UiTextFieldAutoCompleteComponent, typeof i64.CaptchaFieldComponent, typeof i65.LySimpleLabelComponent, typeof i66.GlobalSearchPanelComponent, typeof i67.GlobalSearchModuleComponent, typeof i68.GlobalSearchComponent, typeof i69.HyperlinkComponent, typeof i70.StaticTextComponent, typeof i71.UlToastAdapterComponent, typeof i72.MessageStripComponent, typeof i73.UiLinearListContainerWithButtonComponent, typeof i74.FundamentalDynamicFormComponent, typeof i75.LayoutActionsComponent, typeof i76.LyLayoutContainerComponent, typeof i77.UiUlvFormMultiSelectUiComponent, typeof i78.UlvFormMultiSelectComponent, typeof i79.UlvColumnSettingsComponent, typeof i80.UlvFilterSettingsComponent, typeof i81.UlvSortSettingsComponent, typeof i82.UlvGroupbySettingsComponent, typeof i83.BarsaListFileLinearComponent, typeof i84.UiPdfViewerComponent, typeof i85.BarsaTinyemceComponent, typeof i86.UiMonacoEditorComponent, typeof i87.BarsaMonacoEditorComponent, typeof i88.BarsaDateTimePickerComponent, typeof i89.BarsaTreeItemComponent, typeof i90.UiSwitchButtonComponent, typeof i91.UiColorUiComponent, typeof i92.LyLineComponent, typeof i93.UiUlvMainUiComponent, typeof i94.ReportNavigatorComponent, typeof i95.ManageFiltersReportComponent, typeof i96.ReportSearchFieldsManageComponent, typeof i97.ReportSearchFieldsHiddenSettingsComponent, typeof i98.SearchPanelComponent, typeof i99.ReportSearchPanelSaveComponent, typeof i100.UiGridFilterSettingsComponent, typeof i101.UiGridFilterItemComponent, typeof i102.UiDateRangeExComponent, typeof i103.UlNotifyPopupComponent, typeof i104.UiTableViewComponent, typeof i105.UiListViewComponent, typeof i106.UiCardViewComponent, typeof i107.UiReportContainerComponent, typeof i108.NoDataComponent, typeof i109.ColumnRendererComponent, typeof i110.InlineSaveAndCancelComponent, typeof i111.UiTreeViewComponent, typeof i110.InlineSaveAndCancelComponent, typeof i112.UiCalendarComponent, typeof i113.UiAspReportViewerComponent, typeof i114.UiGraphComponent, typeof i115.UiExceptionFormComponent, typeof i116.UiEditableGridComponent, typeof i117.ColumnMatrixRendererComponent, typeof i118.UiMatrixViewComponent, typeof i119.CustomDateTimeComponent, typeof i120.BarsaAspViewerComponent, typeof i121.FileInDialogComponent, typeof i122.UiMoInfoGeneralObjectUiComponent, typeof i123.UiGanttChartComponent, typeof i124.GanttDhtmlChartViewComponent, typeof i125.ProgressIndicatorComponent, typeof i126.CardViewContentComponent, typeof i127.CardItemComponent, typeof i128.UiCardViewHorizontalGroupComponent, typeof i129.TitleComponent, typeof i130.BarsaUlvMainComponent, typeof i131.ListItemComponent, typeof i132.HtreeCreateNewComponent, typeof i133.BarsaTableHeaderComponent, typeof i134.BarsaTableRowComponent, typeof i135.BarsaTableColumnComponent, typeof i136.BreadcrumbComponent, typeof i137.UiLabelComponent, typeof i138.FormToolbarButtonComponent, typeof i139.BarsaSearchFormComponent, typeof i140.ReportNewTopFormComponent, typeof i141.BarsaNetworkOfflineComponent, typeof i142.FileViewerContentComponent, typeof i143.FileViewerPopoverComponent, typeof i144.FileViewerComponent, typeof i145.BlobViewerComponent, typeof i146.NotificationItemComponent, typeof i147.BarsaCartableTemplateComponent, typeof i148.BarsaCartableGroupComponent, typeof i149.BarsaCartableFormComponent, typeof i150.BarsaColumnIndicatorComponent, typeof i151.BarsaFieldKeyValueComponent, typeof i152.BarsaToolbaritemSearchComponent, typeof i153.UiHtmlViewerComponent, typeof i154.BarsaPishnamayeshPayamComponent, typeof i155.BarsaTextEllipsisComponent, typeof i156.BarsaListFileLinearGmailComponent, typeof i157.BarsaLinkableItemsPanelComponent, typeof i158.BarsaEnumMenuButtonComponent, typeof i159.BarsaCardLayoutPanelComponent, typeof i160.BarsaHorizontalFlexPanelComponent, typeof i161.BarsaBaseLayoutPanelComponent, typeof i162.BarsaBarPanelComponent, typeof i163.BarsaFormSideContentComponent, typeof i164.BarsaSimpleFormComponent, typeof i165.FormToolbarComponent, typeof i166.BarsaListLayoutPanelComponent, typeof i167.BarsaGridLayoutPanelComponent, typeof i168.BarsaDynamicFieldComponent, typeof i169.UiMultiSelectRadioComponent, typeof i170.UiMultiSelectCheckboxComponent, typeof i171.UiNumIntSliderComponent, typeof i172.UiMultiSelectSliderComponent, typeof i173.UiMultiSelectCardComponent, typeof i174.UiMultiSelectSmileComponent, typeof i175.BarsaReportCheckboxSwitchButtonComponent, typeof i176.BarsaColumnRowNumberComponent, typeof i177.BarsaCardRowPayamComponent, typeof i178.UploadFileStatusPipe, typeof i179.SapFontPipe, typeof i180.SapFontClassPipe, typeof i106.StringToArrayPipe, typeof i181.NodeHasOneDepthLevelPipe, typeof i182.MatrixValuePipe, typeof i183.DynamicPageSizePipe, typeof i184.SapSizePipe, typeof i185.WizardLayoutDirective, typeof i186.ColRendererDirective, typeof i187.ApplyConditionalFormatsDirective, typeof i188.ReportViewRendererDirective, typeof i189.FullscreenDialogDirective, typeof i190.FullscreenFilesDirective, typeof i191.DownloadFilesDirective, typeof i192.DialogHandlerDirective], [typeof i193.CommonModule, typeof i194.FormsModule, typeof i194.ReactiveFormsModule, typeof i195.BarsaNovinRayCoreModule, typeof i196.DragDropModule, typeof i197.CdkTableModule, typeof i198.FundamentalNgxCoreModule, typeof i198.FacetModule, typeof i198.WizardModule, typeof i198.PipeModule, typeof i199.ColorSwatchesModule, typeof i200.ColorChromeModule, typeof i201.ClipboardModule, typeof i202.BarsaCalendarModule, typeof i203.BarsaSapUiRoutingModule, typeof i204.PdfJsViewerModule, typeof i195.ResizableModule, typeof i198.ContentDensityModule], [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelComponent, typeof i29.UiSearchCommandInfoUiComponent, typeof i30.UlvSettingsComponent, typeof i31.UiTinymceComponent, typeof i32.UiButtonComponent, typeof i33.UiDateTimeComponent, typeof i34.FormDialogComponent, typeof i35.HeaderFacetKeyValueComponent, typeof i36.HeaderFacetFormComponent, typeof i37.HeaderFacetRateComponent, typeof i38.HeaderFacetProgressComponent, typeof i39.HeaderFacetMicrochartComponent, typeof i40.HeaderFacetPlainTextComponent, typeof i41.UiMoInfoSubFormUiComponent, typeof i42.ResponsiveToolbarComponent, typeof i43.ResponsiveToolbarRendererComponent, typeof i44.UiTextAreaComponent, typeof i45.LayoutControlComponent, typeof i46.LayoutWizardComponent, typeof i47.FormWizardComponent, typeof i48.FormDialogLessComponent, typeof i49.RichTextStaticComponent, typeof i50.UiPicturesInfoComponent, typeof i51.LyHorizontalLayoutComponent, typeof i52.LyVerticalLayoutComponent, typeof i53.LyTabContainerComponent, typeof i54.LyTabPageComponent, typeof i55.LyLabelComponent, typeof i56.UiMoInfoComboViewerComponent, typeof i57.UlMsgBoxAdapterComponent, typeof i58.UiTreeComponent, typeof i59.HeaderAvatarComponent, typeof i60.UiWorkflowPanelUiComponent, typeof i61.UlvContextMenuComponent, typeof i62.UlLoadingMaskUiComponent, typeof i63.UiTextFieldAutoCompleteComponent, typeof i64.CaptchaFieldComponent, typeof i65.LySimpleLabelComponent, typeof i66.GlobalSearchPanelComponent, typeof i67.GlobalSearchModuleComponent, typeof i68.GlobalSearchComponent, typeof i69.HyperlinkComponent, typeof i70.StaticTextComponent, typeof i71.UlToastAdapterComponent, typeof i72.MessageStripComponent, typeof i73.UiLinearListContainerWithButtonComponent, typeof i74.FundamentalDynamicFormComponent, typeof i75.LayoutActionsComponent, typeof i76.LyLayoutContainerComponent, typeof i77.UiUlvFormMultiSelectUiComponent, typeof i78.UlvFormMultiSelectComponent, typeof i79.UlvColumnSettingsComponent, typeof i80.UlvFilterSettingsComponent, typeof i81.UlvSortSettingsComponent, typeof i82.UlvGroupbySettingsComponent, typeof i83.BarsaListFileLinearComponent, typeof i84.UiPdfViewerComponent, typeof i85.BarsaTinyemceComponent, typeof i86.UiMonacoEditorComponent, typeof i87.BarsaMonacoEditorComponent, typeof i88.BarsaDateTimePickerComponent, typeof i89.BarsaTreeItemComponent, typeof i90.UiSwitchButtonComponent, typeof i91.UiColorUiComponent, typeof i92.LyLineComponent, typeof i93.UiUlvMainUiComponent, typeof i94.ReportNavigatorComponent, typeof i95.ManageFiltersReportComponent, typeof i96.ReportSearchFieldsManageComponent, typeof i97.ReportSearchFieldsHiddenSettingsComponent, typeof i98.SearchPanelComponent, typeof i99.ReportSearchPanelSaveComponent, typeof i100.UiGridFilterSettingsComponent, typeof i101.UiGridFilterItemComponent, typeof i102.UiDateRangeExComponent, typeof i103.UlNotifyPopupComponent, typeof i104.UiTableViewComponent, typeof i105.UiListViewComponent, typeof i106.UiCardViewComponent, typeof i107.UiReportContainerComponent, typeof i108.NoDataComponent, typeof i109.ColumnRendererComponent, typeof i110.InlineSaveAndCancelComponent, typeof i111.UiTreeViewComponent, typeof i110.InlineSaveAndCancelComponent, typeof i112.UiCalendarComponent, typeof i113.UiAspReportViewerComponent, typeof i114.UiGraphComponent, typeof i115.UiExceptionFormComponent, typeof i116.UiEditableGridComponent, typeof i117.ColumnMatrixRendererComponent, typeof i118.UiMatrixViewComponent, typeof i119.CustomDateTimeComponent, typeof i120.BarsaAspViewerComponent, typeof i121.FileInDialogComponent, typeof i122.UiMoInfoGeneralObjectUiComponent, typeof i123.UiGanttChartComponent, typeof i124.GanttDhtmlChartViewComponent, typeof i125.ProgressIndicatorComponent, typeof i126.CardViewContentComponent, typeof i127.CardItemComponent, typeof i128.UiCardViewHorizontalGroupComponent, typeof i129.TitleComponent, typeof i130.BarsaUlvMainComponent, typeof i131.ListItemComponent, typeof i132.HtreeCreateNewComponent, typeof i133.BarsaTableHeaderComponent, typeof i134.BarsaTableRowComponent, typeof i135.BarsaTableColumnComponent, typeof i136.BreadcrumbComponent, typeof i137.UiLabelComponent, typeof i138.FormToolbarButtonComponent, typeof i139.BarsaSearchFormComponent, typeof i140.ReportNewTopFormComponent, typeof i141.BarsaNetworkOfflineComponent, typeof i142.FileViewerContentComponent, typeof i143.FileViewerPopoverComponent, typeof i144.FileViewerComponent, typeof i145.BlobViewerComponent, typeof i146.NotificationItemComponent, typeof i147.BarsaCartableTemplateComponent, typeof i148.BarsaCartableGroupComponent, typeof i149.BarsaCartableFormComponent, typeof i150.BarsaColumnIndicatorComponent, typeof i151.BarsaFieldKeyValueComponent, typeof i152.BarsaToolbaritemSearchComponent, typeof i153.UiHtmlViewerComponent, typeof i154.BarsaPishnamayeshPayamComponent, typeof i155.BarsaTextEllipsisComponent, typeof i156.BarsaListFileLinearGmailComponent, typeof i157.BarsaLinkableItemsPanelComponent, typeof i158.BarsaEnumMenuButtonComponent, typeof i159.BarsaCardLayoutPanelComponent, typeof i160.BarsaHorizontalFlexPanelComponent, typeof i161.BarsaBaseLayoutPanelComponent, typeof i162.BarsaBarPanelComponent, typeof i163.BarsaFormSideContentComponent, typeof i164.BarsaSimpleFormComponent, typeof i165.FormToolbarComponent, typeof i166.BarsaListLayoutPanelComponent, typeof i167.BarsaGridLayoutPanelComponent, typeof i168.BarsaDynamicFieldComponent, typeof i169.UiMultiSelectRadioComponent, typeof i170.UiMultiSelectCheckboxComponent, typeof i171.UiNumIntSliderComponent, typeof i172.UiMultiSelectSliderComponent, typeof i173.UiMultiSelectCardComponent, typeof i174.UiMultiSelectSmileComponent, typeof i175.BarsaReportCheckboxSwitchButtonComponent, typeof i176.BarsaColumnRowNumberComponent, typeof i177.BarsaCardRowPayamComponent, typeof i185.WizardLayoutDirective, typeof i186.ColRendererDirective, typeof i187.ApplyConditionalFormatsDirective, typeof i188.ReportViewRendererDirective, typeof i189.FullscreenDialogDirective, typeof i190.FullscreenFilesDirective, typeof i191.DownloadFilesDirective, typeof i192.DialogHandlerDirective, typeof i178.UploadFileStatusPipe, typeof i179.SapFontPipe, typeof i180.SapFontClassPipe, typeof i106.StringToArrayPipe, typeof i181.NodeHasOneDepthLevelPipe, typeof i182.MatrixValuePipe, typeof i183.DynamicPageSizePipe, typeof i184.SapSizePipe]>;
|
|
218
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiModule, [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelComponent, typeof i29.UiSearchCommandInfoUiComponent, typeof i30.UlvSettingsComponent, typeof i31.UiTinymceComponent, typeof i32.UiButtonComponent, typeof i33.UiDateTimeComponent, typeof i34.FormDialogComponent, typeof i35.HeaderFacetKeyValueComponent, typeof i36.HeaderFacetFormComponent, typeof i37.HeaderFacetRateComponent, typeof i38.HeaderFacetProgressComponent, typeof i39.HeaderFacetMicrochartComponent, typeof i40.HeaderFacetPlainTextComponent, typeof i41.UiMoInfoSubFormUiComponent, typeof i42.ResponsiveToolbarComponent, typeof i43.ResponsiveToolbarRendererComponent, typeof i44.UiTextAreaComponent, typeof i45.LayoutControlComponent, typeof i46.LayoutWizardComponent, typeof i47.FormWizardComponent, typeof i48.FormDialogLessComponent, typeof i49.RichTextStaticComponent, typeof i50.UiPicturesInfoComponent, typeof i51.LyHorizontalLayoutComponent, typeof i52.LyVerticalLayoutComponent, typeof i53.LyTabContainerComponent, typeof i54.LyTabPageComponent, typeof i55.LyLabelComponent, typeof i56.UiMoInfoComboViewerComponent, typeof i57.UlMsgBoxAdapterComponent, typeof i58.UiTreeComponent, typeof i59.HeaderAvatarComponent, typeof i60.UiWorkflowPanelUiComponent, typeof i61.UlvContextMenuComponent, typeof i62.UlLoadingMaskUiComponent, typeof i63.UiTextFieldAutoCompleteComponent, typeof i64.CaptchaFieldComponent, typeof i65.LySimpleLabelComponent, typeof i66.GlobalSearchPanelComponent, typeof i67.GlobalSearchModuleComponent, typeof i68.GlobalSearchComponent, typeof i69.HyperlinkComponent, typeof i70.StaticTextComponent, typeof i71.UlToastAdapterComponent, typeof i72.MessageStripComponent, typeof i73.UiLinearListContainerWithButtonComponent, typeof i74.FundamentalDynamicFormComponent, typeof i75.LayoutActionsComponent, typeof i76.LyLayoutContainerComponent, typeof i77.UiUlvFormMultiSelectUiComponent, typeof i78.UlvFormMultiSelectComponent, typeof i79.UlvColumnSettingsComponent, typeof i80.UlvFilterSettingsComponent, typeof i81.UlvSortSettingsComponent, typeof i82.UlvGroupbySettingsComponent, typeof i83.BarsaListFileLinearComponent, typeof i84.UiPdfViewerComponent, typeof i85.BarsaTinyemceComponent, typeof i86.UiMonacoEditorComponent, typeof i87.BarsaMonacoEditorComponent, typeof i88.BarsaDateTimePickerComponent, typeof i89.BarsaTreeItemComponent, typeof i90.UiSwitchButtonComponent, typeof i91.UiColorUiComponent, typeof i92.LyLineComponent, typeof i93.UiUlvMainUiComponent, typeof i94.ReportNavigatorComponent, typeof i95.ManageFiltersReportComponent, typeof i96.ReportSearchFieldsManageComponent, typeof i97.ReportSearchFieldsHiddenSettingsComponent, typeof i98.SearchPanelComponent, typeof i99.ReportSearchPanelSaveComponent, typeof i100.UiGridFilterSettingsComponent, typeof i101.UiGridFilterItemComponent, typeof i102.UiDateRangeExComponent, typeof i103.UlNotifyPopupComponent, typeof i104.UiTableViewComponent, typeof i105.UiListViewComponent, typeof i106.UiCardViewComponent, typeof i107.UiReportContainerComponent, typeof i108.NoDataComponent, typeof i109.ColumnRendererComponent, typeof i110.InlineSaveAndCancelComponent, typeof i111.UiTreeViewComponent, typeof i110.InlineSaveAndCancelComponent, typeof i112.UiCalendarComponent, typeof i113.UiAspReportViewerComponent, typeof i114.UiGraphComponent, typeof i115.UiExceptionFormComponent, typeof i116.UiEditableGridComponent, typeof i117.ColumnMatrixRendererComponent, typeof i118.UiMatrixViewComponent, typeof i119.CustomDateTimeComponent, typeof i120.BarsaAspViewerComponent, typeof i121.FileInDialogComponent, typeof i122.UiMoInfoGeneralObjectUiComponent, typeof i123.UiGanttChartComponent, typeof i124.GanttDhtmlChartViewComponent, typeof i125.ProgressIndicatorComponent, typeof i126.CardViewContentComponent, typeof i127.CardItemComponent, typeof i128.UiCardViewHorizontalGroupComponent, typeof i129.TitleComponent, typeof i130.BarsaUlvMainComponent, typeof i131.ListItemComponent, typeof i132.HtreeCreateNewComponent, typeof i133.BarsaTableHeaderComponent, typeof i134.BarsaTableRowComponent, typeof i135.BarsaTableColumnComponent, typeof i136.BreadcrumbComponent, typeof i137.UiLabelComponent, typeof i138.FormToolbarButtonComponent, typeof i139.BarsaSearchFormComponent, typeof i140.ReportNewTopFormComponent, typeof i141.BarsaNetworkOfflineComponent, typeof i142.FileViewerContentComponent, typeof i143.FileViewerPopoverComponent, typeof i144.FileViewerComponent, typeof i145.BlobViewerComponent, typeof i146.NotificationItemComponent, typeof i147.BarsaCartableTemplateComponent, typeof i148.BarsaCartableGroupComponent, typeof i149.BarsaCartableFormComponent, typeof i150.BarsaColumnIndicatorComponent, typeof i151.BarsaFieldKeyValueComponent, typeof i152.BarsaToolbaritemSearchComponent, typeof i153.UiHtmlViewerComponent, typeof i154.BarsaPishnamayeshPayamComponent, typeof i155.BarsaTextEllipsisComponent, typeof i156.BarsaListFileLinearGmailComponent, typeof i157.BarsaLinkableItemsPanelComponent, typeof i158.BarsaEnumMenuButtonComponent, typeof i159.BarsaCardLayoutPanelComponent, typeof i160.BarsaHorizontalFlexPanelComponent, typeof i161.BarsaBaseLayoutPanelComponent, typeof i162.BarsaBarPanelComponent, typeof i163.BarsaFormSideContentComponent, typeof i164.BarsaSimpleFormComponent, typeof i165.FormToolbarComponent, typeof i166.BarsaListLayoutPanelComponent, typeof i167.BarsaGridLayoutPanelComponent, typeof i168.BarsaDynamicFieldComponent, typeof i169.UiMultiSelectRadioComponent, typeof i170.UiMultiSelectCheckboxComponent, typeof i171.UiNumIntSliderComponent, typeof i172.UiMultiSelectSliderComponent, typeof i173.UiMultiSelectCardComponent, typeof i174.UiMultiSelectSmileComponent, typeof i175.BarsaReportCheckboxSwitchButtonComponent, typeof i176.BarsaColumnRowNumberComponent, typeof i177.BarsaCardRowPayamComponent, typeof i178.BarsaCustomInlineEditComponent, typeof i179.BarsaCustomInlineEditRowComponent, typeof i180.UploadFileStatusPipe, typeof i181.SapFontPipe, typeof i182.SapFontClassPipe, typeof i106.StringToArrayPipe, typeof i183.NodeHasOneDepthLevelPipe, typeof i184.MatrixValuePipe, typeof i185.DynamicPageSizePipe, typeof i186.SapSizePipe, typeof i187.WizardLayoutDirective, typeof i188.ColRendererDirective, typeof i189.ApplyConditionalFormatsDirective, typeof i190.ReportViewRendererDirective, typeof i191.FullscreenDialogDirective, typeof i192.FullscreenFilesDirective, typeof i193.DownloadFilesDirective, typeof i194.DialogHandlerDirective], [typeof i195.CommonModule, typeof i196.FormsModule, typeof i196.ReactiveFormsModule, typeof i197.BarsaNovinRayCoreModule, typeof i198.DragDropModule, typeof i199.CdkTableModule, typeof i200.FundamentalNgxCoreModule, typeof i200.FacetModule, typeof i200.WizardModule, typeof i200.PipeModule, typeof i201.ColorSwatchesModule, typeof i202.ColorChromeModule, typeof i203.ClipboardModule, typeof i204.BarsaCalendarModule, typeof i205.BarsaSapUiRoutingModule, typeof i206.PdfJsViewerModule, typeof i197.ResizableModule, typeof i200.ContentDensityModule], [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelComponent, typeof i29.UiSearchCommandInfoUiComponent, typeof i30.UlvSettingsComponent, typeof i31.UiTinymceComponent, typeof i32.UiButtonComponent, typeof i33.UiDateTimeComponent, typeof i34.FormDialogComponent, typeof i35.HeaderFacetKeyValueComponent, typeof i36.HeaderFacetFormComponent, typeof i37.HeaderFacetRateComponent, typeof i38.HeaderFacetProgressComponent, typeof i39.HeaderFacetMicrochartComponent, typeof i40.HeaderFacetPlainTextComponent, typeof i41.UiMoInfoSubFormUiComponent, typeof i42.ResponsiveToolbarComponent, typeof i43.ResponsiveToolbarRendererComponent, typeof i44.UiTextAreaComponent, typeof i45.LayoutControlComponent, typeof i46.LayoutWizardComponent, typeof i47.FormWizardComponent, typeof i48.FormDialogLessComponent, typeof i49.RichTextStaticComponent, typeof i50.UiPicturesInfoComponent, typeof i51.LyHorizontalLayoutComponent, typeof i52.LyVerticalLayoutComponent, typeof i53.LyTabContainerComponent, typeof i54.LyTabPageComponent, typeof i55.LyLabelComponent, typeof i56.UiMoInfoComboViewerComponent, typeof i57.UlMsgBoxAdapterComponent, typeof i58.UiTreeComponent, typeof i59.HeaderAvatarComponent, typeof i60.UiWorkflowPanelUiComponent, typeof i61.UlvContextMenuComponent, typeof i62.UlLoadingMaskUiComponent, typeof i63.UiTextFieldAutoCompleteComponent, typeof i64.CaptchaFieldComponent, typeof i65.LySimpleLabelComponent, typeof i66.GlobalSearchPanelComponent, typeof i67.GlobalSearchModuleComponent, typeof i68.GlobalSearchComponent, typeof i69.HyperlinkComponent, typeof i70.StaticTextComponent, typeof i71.UlToastAdapterComponent, typeof i72.MessageStripComponent, typeof i73.UiLinearListContainerWithButtonComponent, typeof i74.FundamentalDynamicFormComponent, typeof i75.LayoutActionsComponent, typeof i76.LyLayoutContainerComponent, typeof i77.UiUlvFormMultiSelectUiComponent, typeof i78.UlvFormMultiSelectComponent, typeof i79.UlvColumnSettingsComponent, typeof i80.UlvFilterSettingsComponent, typeof i81.UlvSortSettingsComponent, typeof i82.UlvGroupbySettingsComponent, typeof i83.BarsaListFileLinearComponent, typeof i84.UiPdfViewerComponent, typeof i85.BarsaTinyemceComponent, typeof i86.UiMonacoEditorComponent, typeof i87.BarsaMonacoEditorComponent, typeof i88.BarsaDateTimePickerComponent, typeof i89.BarsaTreeItemComponent, typeof i90.UiSwitchButtonComponent, typeof i91.UiColorUiComponent, typeof i92.LyLineComponent, typeof i93.UiUlvMainUiComponent, typeof i94.ReportNavigatorComponent, typeof i95.ManageFiltersReportComponent, typeof i96.ReportSearchFieldsManageComponent, typeof i97.ReportSearchFieldsHiddenSettingsComponent, typeof i98.SearchPanelComponent, typeof i99.ReportSearchPanelSaveComponent, typeof i100.UiGridFilterSettingsComponent, typeof i101.UiGridFilterItemComponent, typeof i102.UiDateRangeExComponent, typeof i103.UlNotifyPopupComponent, typeof i104.UiTableViewComponent, typeof i105.UiListViewComponent, typeof i106.UiCardViewComponent, typeof i107.UiReportContainerComponent, typeof i108.NoDataComponent, typeof i109.ColumnRendererComponent, typeof i110.InlineSaveAndCancelComponent, typeof i111.UiTreeViewComponent, typeof i110.InlineSaveAndCancelComponent, typeof i112.UiCalendarComponent, typeof i113.UiAspReportViewerComponent, typeof i114.UiGraphComponent, typeof i115.UiExceptionFormComponent, typeof i116.UiEditableGridComponent, typeof i117.ColumnMatrixRendererComponent, typeof i118.UiMatrixViewComponent, typeof i119.CustomDateTimeComponent, typeof i120.BarsaAspViewerComponent, typeof i121.FileInDialogComponent, typeof i122.UiMoInfoGeneralObjectUiComponent, typeof i123.UiGanttChartComponent, typeof i124.GanttDhtmlChartViewComponent, typeof i125.ProgressIndicatorComponent, typeof i126.CardViewContentComponent, typeof i127.CardItemComponent, typeof i128.UiCardViewHorizontalGroupComponent, typeof i129.TitleComponent, typeof i130.BarsaUlvMainComponent, typeof i131.ListItemComponent, typeof i132.HtreeCreateNewComponent, typeof i133.BarsaTableHeaderComponent, typeof i134.BarsaTableRowComponent, typeof i135.BarsaTableColumnComponent, typeof i136.BreadcrumbComponent, typeof i137.UiLabelComponent, typeof i138.FormToolbarButtonComponent, typeof i139.BarsaSearchFormComponent, typeof i140.ReportNewTopFormComponent, typeof i141.BarsaNetworkOfflineComponent, typeof i142.FileViewerContentComponent, typeof i143.FileViewerPopoverComponent, typeof i144.FileViewerComponent, typeof i145.BlobViewerComponent, typeof i146.NotificationItemComponent, typeof i147.BarsaCartableTemplateComponent, typeof i148.BarsaCartableGroupComponent, typeof i149.BarsaCartableFormComponent, typeof i150.BarsaColumnIndicatorComponent, typeof i151.BarsaFieldKeyValueComponent, typeof i152.BarsaToolbaritemSearchComponent, typeof i153.UiHtmlViewerComponent, typeof i154.BarsaPishnamayeshPayamComponent, typeof i155.BarsaTextEllipsisComponent, typeof i156.BarsaListFileLinearGmailComponent, typeof i157.BarsaLinkableItemsPanelComponent, typeof i158.BarsaEnumMenuButtonComponent, typeof i159.BarsaCardLayoutPanelComponent, typeof i160.BarsaHorizontalFlexPanelComponent, typeof i161.BarsaBaseLayoutPanelComponent, typeof i162.BarsaBarPanelComponent, typeof i163.BarsaFormSideContentComponent, typeof i164.BarsaSimpleFormComponent, typeof i165.FormToolbarComponent, typeof i166.BarsaListLayoutPanelComponent, typeof i167.BarsaGridLayoutPanelComponent, typeof i168.BarsaDynamicFieldComponent, typeof i169.UiMultiSelectRadioComponent, typeof i170.UiMultiSelectCheckboxComponent, typeof i171.UiNumIntSliderComponent, typeof i172.UiMultiSelectSliderComponent, typeof i173.UiMultiSelectCardComponent, typeof i174.UiMultiSelectSmileComponent, typeof i175.BarsaReportCheckboxSwitchButtonComponent, typeof i176.BarsaColumnRowNumberComponent, typeof i177.BarsaCardRowPayamComponent, typeof i178.BarsaCustomInlineEditComponent, typeof i179.BarsaCustomInlineEditRowComponent, typeof i187.WizardLayoutDirective, typeof i188.ColRendererDirective, typeof i189.ApplyConditionalFormatsDirective, typeof i190.ReportViewRendererDirective, typeof i191.FullscreenDialogDirective, typeof i192.FullscreenFilesDirective, typeof i193.DownloadFilesDirective, typeof i194.DialogHandlerDirective, typeof i180.UploadFileStatusPipe, typeof i181.SapFontPipe, typeof i182.SapFontClassPipe, typeof i106.StringToArrayPipe, typeof i183.NodeHasOneDepthLevelPipe, typeof i184.MatrixValuePipe, typeof i185.DynamicPageSizePipe, typeof i186.SapSizePipe]>;
|
|
217
219
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiModule>;
|
|
218
220
|
}
|
package/lib/index.d.ts
CHANGED
|
@@ -50,15 +50,11 @@ import { ReportSearchPanelSaveComponent } from './report-search-panel-save/repor
|
|
|
50
50
|
import { SapFontPipe } from './sap-font.pipe';
|
|
51
51
|
import { SapFontClassPipe } from './sap-font-class.pipe';
|
|
52
52
|
import { UlNotifyPopupComponent } from './ul-notify-popup/ul-notify-popup.component';
|
|
53
|
-
import {
|
|
54
|
-
import { UiListViewComponent } from './ui-list-view/ui-list-view.component';
|
|
55
|
-
import { StringToArrayPipe, UiCardViewComponent } from './ui-card-view/ui-card-view.component';
|
|
53
|
+
import { StringToArrayPipe } from './ui-card-view/ui-card-view.component';
|
|
56
54
|
import { ColumnRendererComponent } from './column-renderer/column-renderer.component';
|
|
57
|
-
import { UiTreeViewComponent } from './ui-tree-view/ui-tree-view.component';
|
|
58
55
|
import { NodeHasOneDepthLevelPipe } from './barsa-tree-item/node-has-one-depth-level.pipe';
|
|
59
56
|
import { UiGraphComponent } from './ui-graph/ui-graph.component';
|
|
60
57
|
import { UiExceptionFormComponent } from './ui-exception-form/ui-exception-form.component';
|
|
61
|
-
import { UiMatrixViewComponent } from './ui-matrix-view/ui-matrix-view.component';
|
|
62
58
|
import { CustomDateTimeComponent } from './custom-date-time/custom-date-time.component';
|
|
63
59
|
import { MatrixValuePipe } from './column-matrix-renderer/matrix-value.pipe';
|
|
64
60
|
import { BarsaAspViewerComponent } from './barsa-asp-viewer/barsa-asp-viewer.component';
|
|
@@ -66,7 +62,6 @@ import { FileInDialogComponent } from './file-in-dialog/file-in-dialog.component
|
|
|
66
62
|
import { DynamicPageSizePipe } from './dynamic-page-size.pipe';
|
|
67
63
|
import { ReportViewRendererDirective } from './report-view-renderer.directive';
|
|
68
64
|
import { UiMoInfoGeneralObjectUiComponent } from './ui-mo-info-general-object-ui/ui-mo-info-general-object-ui.component';
|
|
69
|
-
import { GanttDhtmlChartViewComponent } from './gantt-dhtml-chart-view/gantt-dhtml-chart-view.component';
|
|
70
65
|
import { FullscreenDialogDirective } from './fullscreen-dialog.directive';
|
|
71
66
|
import { CardItemComponent } from './card-item/card-item.component';
|
|
72
67
|
import { BarsaUlvMainComponent } from './barsa-ulv-main/barsa-ulv-main.component';
|
|
@@ -87,13 +82,15 @@ import { BarsaCartableGroupComponent } from './barsa-group-cartable/barsa-cartab
|
|
|
87
82
|
import { BarsaCartableFormComponent } from './barsa-cartable-form/barsa-cartable-form.component';
|
|
88
83
|
import { BarsaToolbaritemSearchComponent } from './barsa-toolbaritem-search/barsa-toolbaritem-search.component';
|
|
89
84
|
import { BarsaTextEllipsisComponent } from './barsa-text-ellipsis/barsa-text-ellipsis.component';
|
|
90
|
-
import {
|
|
85
|
+
import { BarsaBarPanelComponent } from './barsa-bar-panel/barsa-bar-panel.component';
|
|
91
86
|
import { BarsaFormSideContentComponent } from './barsa-form-side-content/barsa-form-side-content.component';
|
|
92
87
|
import { DialogHandlerDirective } from './dialog-handler.directive';
|
|
93
88
|
import { BarsaSimpleFormComponent } from './barsa-simple-form/barsa-simple-form.component';
|
|
94
89
|
import { SapSizePipe } from './sap-size.pipe';
|
|
95
90
|
import { BarsaCardRowPayamComponent } from './barsa-card-row-payam/barsa-card-row-payam.component';
|
|
96
|
-
|
|
91
|
+
import { BarsaCustomInlineEditComponent } from './barsa-custom-inline-edit/barsa-custom-inline-edit.component';
|
|
92
|
+
import { BarsaCustomInlineEditRowComponent } from './barsa-custom-inline-edit-row/barsa-custom-inline-edit-row.component';
|
|
93
|
+
export declare const components: (typeof LayoutControlComponent | typeof UlvColumnSettingsComponent | typeof UiGridSortSettingComponent | typeof UlvSortSettingsComponent | typeof UlvGroupbySettingsComponent | typeof UlvFilterSettingsComponent | typeof UiMoInfoGeneralObjectUiComponent | typeof FileInDialogComponent | typeof BarsaAspViewerComponent | typeof CustomDateTimeComponent | typeof UiExceptionFormComponent | typeof UiGraphComponent | typeof ColumnRendererComponent | typeof UlNotifyPopupComponent | typeof ReportSearchPanelSaveComponent | typeof ReportSearchFieldsHiddenSettingsComponent | typeof ReportSearchFieldsManageComponent | typeof ManageFiltersReportComponent | typeof ReportNavigatorComponent | typeof LyLineComponent | typeof UiUlvMainUiComponent | typeof BarsaTreeItemComponent | typeof BarsaMonacoEditorComponent | typeof BarsaTinyemceComponent | typeof UlvFormMultiSelectComponent | typeof UiUlvFormMultiSelectUiComponent | typeof LayoutActionsComponent | typeof FundamentalDynamicFormComponent | typeof UlToastAdapterComponent | typeof GlobalSearchModuleComponent | typeof GlobalSearchPanelComponent | typeof LySimpleLabelComponent | typeof UlLoadingMaskUiComponent | typeof UlvContextMenuComponent | typeof UlMsgBoxAdapterComponent | typeof LyLabelComponent | typeof LyVerticalLayoutComponent | typeof LyHorizontalLayoutComponent | typeof UiPicturesInfoComponent | typeof FormDialogLessComponent | typeof UiFormPanelComponent | typeof LayoutWizardComponent | typeof ResponsiveToolbarRendererComponent | typeof ResponsiveToolbarComponent | typeof FormDialogComponent | typeof UlvSettingsComponent | typeof UiInfoBarPanelComponent | typeof UlvPagingComponent | typeof UlvToolbarComponent | typeof UlvSelectionComponent | typeof LyLayoutContainerOfRootComponent | typeof CardItemComponent | typeof BarsaUlvMainComponent | typeof ListItemComponent | typeof BarsaTableRowComponent | typeof BarsaTableColumnComponent | typeof BarsaTableHeaderComponent | typeof BreadcrumbComponent | typeof FormToolbarButtonComponent | typeof ReportNewTopFormComponent | typeof BarsaNetworkOfflineComponent | typeof FileViewerContentComponent | typeof FileViewerComponent | typeof BlobViewerComponent | typeof BarsaCartableFormComponent | typeof BarsaCartableGroupComponent | typeof BarsaToolbaritemSearchComponent | typeof BarsaTextEllipsisComponent | typeof BarsaBarPanelComponent | typeof BarsaFormSideContentComponent | typeof BarsaSimpleFormComponent | typeof BarsaCardRowPayamComponent | typeof BarsaCustomInlineEditComponent | typeof BarsaCustomInlineEditRowComponent)[];
|
|
97
94
|
export declare const pipes: (typeof MatrixValuePipe | typeof DynamicPageSizePipe | typeof StringToArrayPipe | typeof UploadFileStatusPipe | typeof SapFontPipe | typeof SapFontClassPipe | typeof NodeHasOneDepthLevelPipe | typeof SapSizePipe)[];
|
|
98
95
|
export declare const directives: (typeof WizardLayoutDirective | typeof ColRendererDirective | typeof ApplyConditionalFormatsDirective | typeof ReportViewRendererDirective | typeof FullscreenDialogDirective | typeof FullscreenFilesDirective | typeof DownloadFilesDirective | typeof DialogHandlerDirective)[];
|
|
99
96
|
export declare const INIT_SAPFIORI: (rtlService: RtlService, contentDensityService: GlobalContentDensityService, themeService: ThemesService, portalService: PortalService) => () => void;
|
|
@@ -5,6 +5,8 @@ export declare class UiCheckBoxComponent extends DeviceInfoFieldBaseComponent {
|
|
|
5
5
|
width: number;
|
|
6
6
|
height: number;
|
|
7
7
|
};
|
|
8
|
+
showText: boolean;
|
|
9
|
+
ngOnInit(): void;
|
|
8
10
|
onValueChange(): void;
|
|
9
11
|
protected _valueChanged(val: boolean): void;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiCheckBoxComponent, never>;
|
|
@@ -10,6 +10,7 @@ export declare class UiDateTimeComponent extends FieldBaseComponent implements O
|
|
|
10
10
|
valueCaption: string;
|
|
11
11
|
formatPattern: string;
|
|
12
12
|
parameters: UiDateTimeSetting;
|
|
13
|
+
private _ngZone;
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
ngAfterViewInit(): void;
|
|
15
16
|
onDateTimeChange(): void;
|
|
@@ -20,6 +21,7 @@ export declare class UiDateTimeComponent extends FieldBaseComponent implements O
|
|
|
20
21
|
startDay: Date;
|
|
21
22
|
endDay: Date;
|
|
22
23
|
}): void;
|
|
24
|
+
protected _setTimeFormat(): void;
|
|
23
25
|
protected _configChaned(options: any): void;
|
|
24
26
|
protected _setValue(value: Date): void;
|
|
25
27
|
private _valueDateChange;
|
|
@@ -7,6 +7,8 @@ export declare class UiMoInfoSubFormUiComponent extends DeviceInfoFieldBaseCompo
|
|
|
7
7
|
customFormPanelUi: any;
|
|
8
8
|
ngOnInit(): void;
|
|
9
9
|
ngOnDestroy(): void;
|
|
10
|
+
protected _listenTitleChanged(): void;
|
|
11
|
+
protected _titleChanged(): void;
|
|
10
12
|
protected _addFormControl(formControl: any): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiMoInfoSubFormUiComponent, never>;
|
|
12
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiMoInfoSubFormUiComponent, "bsu-ui-mo-info-sub-form-ui", never, {}, {}, never, never, false>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -198,5 +198,7 @@ export * from './lib/ui-num-int-slider/ui-num-int-slider.component';
|
|
|
198
198
|
export * from './lib/barsa-report-checkbox-switch-button/barsa-report-checkbox-switch-button.component';
|
|
199
199
|
export * from './lib/barsa-column-rownumber/barsa-column-rownumber.component';
|
|
200
200
|
export * from './lib/barsa-card-row-payam/barsa-card-row-payam.component';
|
|
201
|
+
export * from './lib/barsa-custom-inline-edit/barsa-custom-inline-edit.component';
|
|
202
|
+
export * from './lib/barsa-custom-inline-edit-row/barsa-custom-inline-edit-row.component';
|
|
201
203
|
export * from './lib/constants';
|
|
202
204
|
export * from './lib/barsa-sap-ui.module';
|