barsa-tiles 2.3.131 → 2.3.133
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/fesm2022/barsa-tiles.mjs +39 -23
- package/fesm2022/barsa-tiles.mjs.map +1 -1
- package/index.d.ts +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -898,6 +898,8 @@ interface ShellbarSetting extends MetaobjectDataModel {
|
|
|
898
898
|
ActionItems: MoForReportModel;
|
|
899
899
|
}
|
|
900
900
|
declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
|
|
901
|
+
searchDialogContent: TemplateRef<any>;
|
|
902
|
+
searchDialogSubHeader: TemplateRef<any>;
|
|
901
903
|
showSidebar: boolean;
|
|
902
904
|
multiLanguages: boolean;
|
|
903
905
|
userLoggedIn: boolean;
|
|
@@ -964,17 +966,19 @@ declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
|
|
|
964
966
|
showSearch: i0.WritableSignal<boolean>;
|
|
965
967
|
inputEnableSearch: i0.WritableSignal<boolean>;
|
|
966
968
|
appVersion: string;
|
|
969
|
+
private _bbbTranslate;
|
|
967
970
|
private _portalService;
|
|
968
971
|
private _dialogService;
|
|
969
972
|
private _document;
|
|
970
973
|
private _cdr;
|
|
971
974
|
private _router;
|
|
975
|
+
private _dialogReference;
|
|
972
976
|
constructor();
|
|
973
977
|
ngOnInit(): void;
|
|
974
978
|
ngOnChanges(changes: SimpleChanges): void;
|
|
975
979
|
onSearchSubmit(e: SearchInput): void;
|
|
976
|
-
onOpenSearchDialog(
|
|
977
|
-
onSearchItemClick(
|
|
980
|
+
onOpenSearchDialog(): void;
|
|
981
|
+
onSearchItemClick(e: SuggestionItem): void;
|
|
978
982
|
onSearchInputChange(e: any): void;
|
|
979
983
|
oFavoriteLink(item: SuggestionItem, e: any): void;
|
|
980
984
|
onSearchOpen(e: boolean): void;
|