barsa-tiles 2.3.104 → 2.3.108
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 +122 -37
- package/fesm2022/barsa-tiles.mjs.map +1 -1
- package/index.d.ts +37 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4,25 +4,25 @@ import * as barsa_novin_ray_core from 'barsa-novin-ray-core';
|
|
|
4
4
|
import { MetaobjectDataModel, AppTileGroup, MoForReportModelBase, MoForReportModel, TilePropsComponent, FilePictureInfoModel, BaseComponent, AbbrevationDeviceSize, PortalService, ContainerReportSetting, SaveScrollPositionService, ShellbarSetting as ShellbarSetting$1, ApplicationCtrlrService, NotificationItem, NotificationAction, SearchInput, BreadCrumbInfo, SortDirection, LogService, LocalStorageService, BreadcrumbService, EmptyPageComponent, RoutingService, CardMediaSize, BaseDirective, DynamicRootVariableDirective, WorkflowExecuteChoiceStatus, BaseModule, DynamicComponentService } from 'barsa-novin-ray-core';
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
6
|
import { Observable, Subject } from 'rxjs';
|
|
7
|
-
import * as
|
|
7
|
+
import * as i59 from '@angular/cdk/drag-drop';
|
|
8
8
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
9
|
-
import * as
|
|
9
|
+
import * as i61 from '@fundamental-ngx/core';
|
|
10
10
|
import { ContentDensity, CarouselComponent, CarouselItemComponent, DialogRef, NumericContentState, Nullable, ComboboxComponent, PopoverComponent, ShellbarUser, ShellbarMenuItem, ProductSwitchItem, ObjectStatus, ShellbarComponent as ShellbarComponent$1 } from '@fundamental-ngx/core';
|
|
11
11
|
import * as i1 from '@angular/router';
|
|
12
12
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
13
|
-
import * as
|
|
14
|
-
import { IconTabBarTabComponent, IconTabBarComponent, TabType, SemanticColor, IconTabBarItem } from '@fundamental-ngx/platform';
|
|
15
|
-
import * as
|
|
13
|
+
import * as i62 from '@fundamental-ngx/platform';
|
|
14
|
+
import { IconTabBarTabComponent, IconTabBarComponent, TabType, SemanticColor, IconTabBarItem, SuggestionItem } from '@fundamental-ngx/platform';
|
|
15
|
+
import * as i69 from 'barsa-echarts';
|
|
16
16
|
import { ComparisonItem, StackbarItem, LineItem, AreaChart } from 'barsa-echarts';
|
|
17
|
-
import * as
|
|
17
|
+
import * as i57 from '@angular/forms';
|
|
18
18
|
import { UntypedFormGroup } from '@angular/forms';
|
|
19
19
|
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
20
|
-
import * as
|
|
20
|
+
import * as i67 from 'barsa-sap-ui';
|
|
21
21
|
import { BarsaTreeItemComponent, MegaMenuGroup } from 'barsa-sap-ui';
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
22
|
+
import * as i56 from '@angular/common';
|
|
23
|
+
import * as i60 from '@angular/cdk/table';
|
|
24
|
+
import * as i64 from '@fundamental-ngx/btp/splitter';
|
|
25
|
+
import * as i65 from '@fundamental-ngx/core/user-menu';
|
|
26
26
|
|
|
27
27
|
interface AppTileFooterSection extends MetaobjectDataModel {
|
|
28
28
|
Icon: string;
|
|
@@ -792,6 +792,7 @@ declare class ShellbarComponent extends BaseComponent implements OnInit {
|
|
|
792
792
|
deviceSize$: Observable<AbbrevationDeviceSize>;
|
|
793
793
|
productMenuControl: string;
|
|
794
794
|
user: ShellbarUser;
|
|
795
|
+
suggestions: never[];
|
|
795
796
|
productMenuItems1: ShellbarMenuItem[];
|
|
796
797
|
userLoggedIn$: Observable<boolean>;
|
|
797
798
|
cssUrl$: Observable<SafeResourceUrl | null>;
|
|
@@ -934,7 +935,11 @@ declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
|
|
|
934
935
|
profileDynamicCommandIcon: string;
|
|
935
936
|
displayName: string;
|
|
936
937
|
hideBranding: boolean;
|
|
938
|
+
showSearchInSystem: boolean;
|
|
937
939
|
rtl: boolean;
|
|
940
|
+
suggestions: SuggestionItem[];
|
|
941
|
+
searchItemClick: EventEmitter<SuggestionItem>;
|
|
942
|
+
searchInput: EventEmitter<SearchInput>;
|
|
938
943
|
isOpenQuickAccessChanged: EventEmitter<boolean>;
|
|
939
944
|
openNotificationPanel: EventEmitter<void>;
|
|
940
945
|
openQuickAccessPanel: EventEmitter<void>;
|
|
@@ -947,6 +952,7 @@ declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
|
|
|
947
952
|
comboboxComponent: ComboboxComponent;
|
|
948
953
|
popoverComponent: PopoverComponent;
|
|
949
954
|
_notificationsDialog: TemplateRef<any>;
|
|
955
|
+
selectedSuggestionFiltertype: 'subsystem' | 'navgroup' | 'report' | 'command' | 'all';
|
|
950
956
|
isOpenNotificatoin: boolean;
|
|
951
957
|
expanded: boolean;
|
|
952
958
|
searchTerms: string[];
|
|
@@ -965,6 +971,9 @@ declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
|
|
|
965
971
|
ngOnInit(): void;
|
|
966
972
|
ngOnChanges(changes: SimpleChanges): void;
|
|
967
973
|
onSearchSubmit(e: SearchInput): void;
|
|
974
|
+
onOpenSearchDialog(template: TemplateRef<any>): void;
|
|
975
|
+
onSearchItemClick(e: SuggestionItem): void;
|
|
976
|
+
onSearchInputChange(e: any): void;
|
|
968
977
|
onSearchOpen(e: boolean): void;
|
|
969
978
|
onBellNotification: () => void;
|
|
970
979
|
onRouteFormStateChange(): void;
|
|
@@ -979,7 +988,7 @@ declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
|
|
|
979
988
|
private _closeSideMenu;
|
|
980
989
|
private _changeCulture;
|
|
981
990
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaShellbarComponent, never>;
|
|
982
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaShellbarComponent, "bt-barsa-shellbar", never, { "showSidebar": { "alias": "showSidebar"; "required": false; }; "multiLanguages": { "alias": "multiLanguages"; "required": false; }; "userLoggedIn": { "alias": "userLoggedIn"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; "productMenuControl": { "alias": "productMenuControl"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "cultures": { "alias": "cultures"; "required": false; }; "shellbarData": { "alias": "shellbarData"; "required": false; }; "notificationsUnreadCount": { "alias": "notificationsUnreadCount"; "required": false; }; "productMenuItems1": { "alias": "productMenuItems1"; "required": false; }; "bodyClick": { "alias": "bodyClick"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "userMenu": { "alias": "userMenu"; "required": false; }; "footerButtons": { "alias": "footerButtons"; "required": false; }; "productSwitcher": { "alias": "productSwitcher"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "hideShellbarActions": { "alias": "hideShellbarActions"; "required": false; }; "flatButtons": { "alias": "flatButtons"; "required": false; }; "isTablet": { "alias": "isTablet"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "isDesktop": { "alias": "isDesktop"; "required": false; }; "informativeText": { "alias": "informativeText"; "required": false; }; "informativeStatus": { "alias": "informativeStatus"; "required": false; }; "hideProductMenu": { "alias": "hideProductMenu"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideNotifications": { "alias": "hideNotifications"; "required": false; }; "isServiceDesk": { "alias": "isServiceDesk"; "required": false; }; "isOpenQuickAccess": { "alias": "isOpenQuickAccess"; "required": false; }; "sideMenuTemplate": { "alias": "sideMenuTemplate"; "required": false; }; "notificationReport": { "alias": "notificationReport"; "required": false; }; "profileDynamicCommand": { "alias": "profileDynamicCommand"; "required": false; }; "profileDynamicCommandText": { "alias": "profileDynamicCommandText"; "required": false; }; "profileDynamicCommandIcon": { "alias": "profileDynamicCommandIcon"; "required": false; }; "displayName": { "alias": "displayName"; "required": false; }; "hideBranding": { "alias": "hideBranding"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; }, { "isOpenQuickAccessChanged": "isOpenQuickAccessChanged"; "openNotificationPanel": "openNotificationPanel"; "openQuickAccessPanel": "openQuickAccessPanel"; "cultureChanged": "cultureChanged"; "notifiationActionClick": "notifiationActionClick"; }, never, never, false, never>;
|
|
991
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaShellbarComponent, "bt-barsa-shellbar", never, { "showSidebar": { "alias": "showSidebar"; "required": false; }; "multiLanguages": { "alias": "multiLanguages"; "required": false; }; "userLoggedIn": { "alias": "userLoggedIn"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; "productMenuControl": { "alias": "productMenuControl"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "cultures": { "alias": "cultures"; "required": false; }; "shellbarData": { "alias": "shellbarData"; "required": false; }; "notificationsUnreadCount": { "alias": "notificationsUnreadCount"; "required": false; }; "productMenuItems1": { "alias": "productMenuItems1"; "required": false; }; "bodyClick": { "alias": "bodyClick"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "userMenu": { "alias": "userMenu"; "required": false; }; "footerButtons": { "alias": "footerButtons"; "required": false; }; "productSwitcher": { "alias": "productSwitcher"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; "hideShellbarActions": { "alias": "hideShellbarActions"; "required": false; }; "flatButtons": { "alias": "flatButtons"; "required": false; }; "isTablet": { "alias": "isTablet"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "isDesktop": { "alias": "isDesktop"; "required": false; }; "informativeText": { "alias": "informativeText"; "required": false; }; "informativeStatus": { "alias": "informativeStatus"; "required": false; }; "hideProductMenu": { "alias": "hideProductMenu"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideNotifications": { "alias": "hideNotifications"; "required": false; }; "isServiceDesk": { "alias": "isServiceDesk"; "required": false; }; "isOpenQuickAccess": { "alias": "isOpenQuickAccess"; "required": false; }; "sideMenuTemplate": { "alias": "sideMenuTemplate"; "required": false; }; "notificationReport": { "alias": "notificationReport"; "required": false; }; "profileDynamicCommand": { "alias": "profileDynamicCommand"; "required": false; }; "profileDynamicCommandText": { "alias": "profileDynamicCommandText"; "required": false; }; "profileDynamicCommandIcon": { "alias": "profileDynamicCommandIcon"; "required": false; }; "displayName": { "alias": "displayName"; "required": false; }; "hideBranding": { "alias": "hideBranding"; "required": false; }; "showSearchInSystem": { "alias": "showSearchInSystem"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "suggestions": { "alias": "suggestions"; "required": false; }; }, { "searchItemClick": "searchItemClick"; "searchInput": "searchInput"; "isOpenQuickAccessChanged": "isOpenQuickAccessChanged"; "openNotificationPanel": "openNotificationPanel"; "openQuickAccessPanel": "openQuickAccessPanel"; "cultureChanged": "cultureChanged"; "notifiationActionClick": "notifiationActionClick"; }, never, never, false, never>;
|
|
983
992
|
}
|
|
984
993
|
|
|
985
994
|
declare class PopoverAppFinderComponent extends BaseComponent implements OnInit {
|
|
@@ -1124,6 +1133,20 @@ declare class MegamenuPipe implements PipeTransform {
|
|
|
1124
1133
|
static ɵpipe: i0.ɵɵPipeDeclaration<MegamenuPipe, "megamenu", false>;
|
|
1125
1134
|
}
|
|
1126
1135
|
|
|
1136
|
+
declare class SuggestionsFilterPipe implements PipeTransform {
|
|
1137
|
+
constructor();
|
|
1138
|
+
transform(suggestions: SuggestionItem[], filterType: 'subsystem' | 'navgroup' | 'report' | 'command' | 'all'): SuggestionItem[];
|
|
1139
|
+
static filterSuggestion(suggestions: SuggestionItem[], filterType: 'subsystem' | 'navgroup' | 'report' | 'command' | 'all'): SuggestionItem[];
|
|
1140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuggestionsFilterPipe, never>;
|
|
1141
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SuggestionsFilterPipe, "suggestionsFilter", false>;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
declare class SuggestionsCountFilterPipe implements PipeTransform {
|
|
1145
|
+
transform(suggestions: SuggestionItem[], filterType: 'subsystem' | 'navgroup' | 'report' | 'command' | 'all'): string;
|
|
1146
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuggestionsCountFilterPipe, never>;
|
|
1147
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SuggestionsCountFilterPipe, "suggestionsCountFilter", false>;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1127
1150
|
declare class TilesViewerMegamenuComponent extends BaseComponent implements OnInit {
|
|
1128
1151
|
_cssRootVariable: DynamicRootVariableDirective;
|
|
1129
1152
|
_cls: boolean;
|
|
@@ -1329,8 +1352,8 @@ declare class BarsaTilesModule extends BaseModule {
|
|
|
1329
1352
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
1330
1353
|
constructor();
|
|
1331
1354
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTilesModule, never>;
|
|
1332
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaTilesModule, [typeof ShellbarComponent, typeof SimpleTileComponent, typeof TilesViewerComponent, typeof ProfileTileComponent, typeof FeedTileComponent, typeof FooterTileComponent, typeof TileComponent, typeof LogoTileComponent, typeof NumericTileComponent, typeof FooterEditTileComponent, typeof FormAppFinderComponent, typeof PinTileComponent, typeof ChangeAppTileComponent, typeof CreateAppGroupComponent, typeof MicroTileChartAreaComponent, typeof MicroTileChartCircularComponent, typeof MicroTileChartLineComponent, typeof MicroTileChartStackbarComponent, typeof MicroTileChartComparisonComponent, typeof MicroTileChartBarComponent, typeof MicroTileChartBulletComponent, typeof TilesViewerContainerComponent, typeof NewsTileComponent, typeof ActionsLinkComponent, typeof ActionItemComponent, typeof AppFinderComponent, typeof AppFinderGroupComponent, typeof AppFinderAppListComponent, typeof TilesViewerGroupComponent, typeof FormTileComponent, typeof BarsaShellbarComponent, typeof PopoverAppFinderComponent, typeof BarsaPinAppComponent, typeof BarsaTileGroupPageComponent, typeof BarsaTileSidebarPageComponent, typeof ReportTileComponent, typeof CardTileComponent, typeof TilesViewerMegamenuComponent, typeof GroupTilesPipe, typeof TileHomeFilterPipe, typeof HomeGroupPipe, typeof ActionLinksPipe, typeof TilePropPipe, typeof SemantiToButtonColorPipe, typeof MegamenuPipe, typeof EmptyListDirective, typeof TileRendererDirective, typeof TileStyleDirective, typeof TileSizeDirective, typeof TileDynamicCommandDirective, typeof TileClassDirective, typeof NotificationGroupComponent, typeof NotificationGroupHeaderComponent], [typeof
|
|
1355
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaTilesModule, [typeof ShellbarComponent, typeof SimpleTileComponent, typeof TilesViewerComponent, typeof ProfileTileComponent, typeof FeedTileComponent, typeof FooterTileComponent, typeof TileComponent, typeof LogoTileComponent, typeof NumericTileComponent, typeof FooterEditTileComponent, typeof FormAppFinderComponent, typeof PinTileComponent, typeof ChangeAppTileComponent, typeof CreateAppGroupComponent, typeof MicroTileChartAreaComponent, typeof MicroTileChartCircularComponent, typeof MicroTileChartLineComponent, typeof MicroTileChartStackbarComponent, typeof MicroTileChartComparisonComponent, typeof MicroTileChartBarComponent, typeof MicroTileChartBulletComponent, typeof TilesViewerContainerComponent, typeof NewsTileComponent, typeof ActionsLinkComponent, typeof ActionItemComponent, typeof AppFinderComponent, typeof AppFinderGroupComponent, typeof AppFinderAppListComponent, typeof TilesViewerGroupComponent, typeof FormTileComponent, typeof BarsaShellbarComponent, typeof PopoverAppFinderComponent, typeof BarsaPinAppComponent, typeof BarsaTileGroupPageComponent, typeof BarsaTileSidebarPageComponent, typeof ReportTileComponent, typeof CardTileComponent, typeof TilesViewerMegamenuComponent, typeof GroupTilesPipe, typeof TileHomeFilterPipe, typeof HomeGroupPipe, typeof ActionLinksPipe, typeof TilePropPipe, typeof SemantiToButtonColorPipe, typeof MegamenuPipe, typeof SuggestionsFilterPipe, typeof SuggestionsCountFilterPipe, typeof EmptyListDirective, typeof TileRendererDirective, typeof TileStyleDirective, typeof TileSizeDirective, typeof TileDynamicCommandDirective, typeof TileClassDirective, typeof NotificationGroupComponent, typeof NotificationGroupHeaderComponent], [typeof i56.CommonModule, typeof i57.FormsModule, typeof i1.RouterModule, typeof i57.ReactiveFormsModule, typeof i59.DragDropModule, typeof i60.CdkTableModule, typeof i61.FundamentalNgxCoreModule, typeof i61.GridListModule, typeof i62.IconTabBarComponent, typeof i62.IconTabBarTabComponent, typeof i62.IconTabBarTabContentDirective, typeof FilterAppsGroupedPipe, typeof FilterAppsPipe, typeof i64.SplitterModule, typeof i62.SearchFieldComponent, typeof i61.ShellbarUserMenuComponent, typeof i65.UserMenuComponent, typeof i65.UserMenuControlComponent, typeof i65.UserMenuBodyComponent, typeof i65.UserMenuListComponent, typeof i65.UserMenuFooterComponent, typeof i65.UserMenuHeaderDirective, typeof i65.UserMenuSublineDirective, typeof i65.UserMenuUserNameDirective, typeof i65.UserMenuSublineDirective, typeof i65.UserMenuHeaderContainerDirective, typeof i65.UserMenuListItemComponent, typeof i65.UserMenuListComponent, typeof barsa_novin_ray_core.BarsaNovinRayCoreModule, typeof i67.BarsaSapUiModule, typeof BarsaTilesRoutingModule, typeof i69.BarsaEchartsModule], [typeof ShellbarComponent, typeof SimpleTileComponent, typeof TilesViewerComponent, typeof ProfileTileComponent, typeof FeedTileComponent, typeof FooterTileComponent, typeof TileComponent, typeof LogoTileComponent, typeof NumericTileComponent, typeof FooterEditTileComponent, typeof FormAppFinderComponent, typeof PinTileComponent, typeof ChangeAppTileComponent, typeof CreateAppGroupComponent, typeof MicroTileChartAreaComponent, typeof MicroTileChartCircularComponent, typeof MicroTileChartLineComponent, typeof MicroTileChartStackbarComponent, typeof MicroTileChartComparisonComponent, typeof MicroTileChartBarComponent, typeof MicroTileChartBulletComponent, typeof TilesViewerContainerComponent, typeof NewsTileComponent, typeof ActionsLinkComponent, typeof ActionItemComponent, typeof AppFinderComponent, typeof AppFinderGroupComponent, typeof AppFinderAppListComponent, typeof TilesViewerGroupComponent, typeof FormTileComponent, typeof BarsaShellbarComponent, typeof PopoverAppFinderComponent, typeof BarsaPinAppComponent, typeof BarsaTileGroupPageComponent, typeof BarsaTileSidebarPageComponent, typeof ReportTileComponent, typeof CardTileComponent, typeof TilesViewerMegamenuComponent]>;
|
|
1333
1356
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaTilesModule>;
|
|
1334
1357
|
}
|
|
1335
1358
|
|
|
1336
|
-
export { ActionItemComponent, ActionsLinkComponent, AppFinderAppListComponent, AppFinderComponent, AppFinderGroupComponent, BarsaPinAppComponent, BarsaShellbarComponent, BarsaTileGroupPageComponent, BarsaTileSidebarPageComponent, BarsaTilesModule, CardTileComponent, ChangeAppTileComponent, CreateAppGroupComponent, FeedTileComponent, FooterEditTileComponent, FooterTileComponent, FormAppFinderComponent, FormTileComponent, GroupTilesPipe, LogoTileComponent, MegamenuPipe, MicroTileChartAreaComponent, MicroTileChartBarComponent, MicroTileChartBulletComponent, MicroTileChartCircularComponent, MicroTileChartComparisonComponent, MicroTileChartLineComponent, MicroTileChartStackbarComponent, NewsTileComponent, NumericTileComponent, PinTileComponent, PopoverAppFinderComponent, ProfileTileComponent, ReportTileComponent, SemantiToButtonColorPipe, ShellbarComponent, SimpleTileComponent, TileClassDirective, TileComponent, TileHomeFilterPipe, TilePropPipe, TilesService, TilesViewerComponent, TilesViewerContainerComponent, TilesViewerGroupComponent, TilesViewerMegamenuComponent, TilesViewerService, addTilesPageSidebar };
|
|
1359
|
+
export { ActionItemComponent, ActionsLinkComponent, AppFinderAppListComponent, AppFinderComponent, AppFinderGroupComponent, BarsaPinAppComponent, BarsaShellbarComponent, BarsaTileGroupPageComponent, BarsaTileSidebarPageComponent, BarsaTilesModule, CardTileComponent, ChangeAppTileComponent, CreateAppGroupComponent, FeedTileComponent, FooterEditTileComponent, FooterTileComponent, FormAppFinderComponent, FormTileComponent, GroupTilesPipe, LogoTileComponent, MegamenuPipe, MicroTileChartAreaComponent, MicroTileChartBarComponent, MicroTileChartBulletComponent, MicroTileChartCircularComponent, MicroTileChartComparisonComponent, MicroTileChartLineComponent, MicroTileChartStackbarComponent, NewsTileComponent, NumericTileComponent, PinTileComponent, PopoverAppFinderComponent, ProfileTileComponent, ReportTileComponent, SemantiToButtonColorPipe, ShellbarComponent, SimpleTileComponent, SuggestionsCountFilterPipe, SuggestionsFilterPipe, TileClassDirective, TileComponent, TileHomeFilterPipe, TilePropPipe, TilesService, TilesViewerComponent, TilesViewerContainerComponent, TilesViewerGroupComponent, TilesViewerMegamenuComponent, TilesViewerService, addTilesPageSidebar };
|