barsa-tiles 1.0.456 → 2.0.2

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.
Files changed (172) hide show
  1. package/{esm2020 → esm2022}/barsa-tiles.mjs +4 -4
  2. package/esm2022/lib/action-item/action-item.component.mjs +17 -0
  3. package/{esm2020 → esm2022}/lib/action-links.pipe.mjs +16 -16
  4. package/esm2022/lib/actions-link/actions-link.component.mjs +41 -0
  5. package/esm2022/lib/app-finder/app-finder.component.mjs +52 -0
  6. package/esm2022/lib/app-finder-app-list/app-finder-app-list.component.mjs +39 -0
  7. package/esm2022/lib/app-finder-group/app-finder-group.component.mjs +41 -0
  8. package/esm2022/lib/app-finder.service.mjs +121 -0
  9. package/esm2022/lib/barsa-shellbar/barsa-shellbar.component.mjs +183 -0
  10. package/esm2022/lib/barsa-tiles.module.mjs +225 -0
  11. package/esm2022/lib/change-app-tile/change-app-tile.component.mjs +46 -0
  12. package/esm2022/lib/create-app-group/create-app-group.component.mjs +43 -0
  13. package/esm2022/lib/directives/emptylist.directive.mjs +36 -0
  14. package/esm2022/lib/feed-tile/feed-tile.component.mjs +31 -0
  15. package/{esm2020 → esm2022}/lib/footer-edit-tile/footer-edit-tile.component.mjs +13 -13
  16. package/esm2022/lib/footer-tile/footer-tile.component.mjs +27 -0
  17. package/esm2022/lib/form-app-finder/form-app-finder.component.mjs +95 -0
  18. package/esm2022/lib/form-tile/form-tile.component.mjs +34 -0
  19. package/esm2022/lib/logo-tile/logo-tile.component.mjs +23 -0
  20. package/{esm2020 → esm2022}/lib/micro-tile-chart-area/micro-tile-chart-area.component.mjs +40 -40
  21. package/{esm2020 → esm2022}/lib/micro-tile-chart-bar/micro-tile-chart-bar.component.mjs +29 -29
  22. package/esm2022/lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component.mjs +26 -0
  23. package/{esm2020 → esm2022}/lib/micro-tile-chart-circular/micro-tile-chart-circular.component.mjs +20 -20
  24. package/{esm2020 → esm2022}/lib/micro-tile-chart-comparison/micro-tile-chart-comparison.component.mjs +31 -31
  25. package/{esm2020 → esm2022}/lib/micro-tile-chart-line/micro-tile-chart-line.component.mjs +32 -32
  26. package/{esm2020 → esm2022}/lib/micro-tile-chart-stackbar/micro-tile-chart-stackbar.component.mjs +27 -27
  27. package/{esm2020 → esm2022}/lib/models/app-tile-footer-section.mjs +1 -1
  28. package/{esm2020 → esm2022}/lib/models/app-tile-footer.mjs +1 -1
  29. package/{esm2020 → esm2022}/lib/models/app-tile-group-pin.mjs +1 -1
  30. package/esm2022/lib/models/base-bt-tile-component.mjs +26 -0
  31. package/{esm2020 → esm2022}/lib/models/base-tile-component.mjs +58 -58
  32. package/{esm2020 → esm2022}/lib/models/base-tile-setting.mjs +1 -1
  33. package/{esm2020 → esm2022}/lib/models/feed-tile-setting.mjs +1 -1
  34. package/{esm2020 → esm2022}/lib/models/index.mjs +13 -13
  35. package/{esm2020 → esm2022}/lib/models/logo-tile-setting.mjs +1 -1
  36. package/{esm2020 → esm2022}/lib/models/micro-tile-chart-bullet-setting.mjs +1 -1
  37. package/{esm2020 → esm2022}/lib/models/news-tile-setting.mjs +1 -1
  38. package/{esm2020 → esm2022}/lib/models/numeric-tile-setting.mjs +1 -1
  39. package/{esm2020 → esm2022}/lib/models/profile-tile-setting.mjs +1 -1
  40. package/esm2022/lib/models/tile-setting.mjs +2 -0
  41. package/{esm2020 → esm2022}/lib/models/user-portal-settings.mjs +1 -1
  42. package/esm2022/lib/news-tile/news-tile.component.mjs +53 -0
  43. package/esm2022/lib/notification-group/notification-group.component.mjs +116 -0
  44. package/esm2022/lib/notification-group-header/notification-group-header.component.mjs +38 -0
  45. package/esm2022/lib/numeric-tile/numeric-tile.component.mjs +64 -0
  46. package/esm2022/lib/pin-tile/pin-tile.component.mjs +110 -0
  47. package/esm2022/lib/pipes/group-tiles.pipe.mjs +31 -0
  48. package/{esm2020 → esm2022}/lib/pipes/home-group.pipe.mjs +17 -17
  49. package/esm2022/lib/pipes/tile-home-filter.pipe.mjs +28 -0
  50. package/esm2022/lib/pipes/tile-prop.pipe.mjs +32 -0
  51. package/esm2022/lib/popover-app-finder/filter-apps-grouped.pipe.mjs +36 -0
  52. package/esm2022/lib/popover-app-finder/popover-app-finder.component.mjs +112 -0
  53. package/esm2022/lib/profile-tile/profile-tile.component.mjs +25 -0
  54. package/esm2022/lib/shellbar/shellbar.component.mjs +201 -0
  55. package/esm2022/lib/simple-tile/simple-tile.component.mjs +22 -0
  56. package/esm2022/lib/tile/tile.component.mjs +70 -0
  57. package/esm2022/lib/tile-renderer.directive.mjs +70 -0
  58. package/esm2022/lib/tile-style.directive.mjs +29 -0
  59. package/esm2022/lib/tiles-viewer/tiles-viewer.component.mjs +167 -0
  60. package/esm2022/lib/tiles-viewer-container/tiles-viewer-container.component.mjs +164 -0
  61. package/esm2022/lib/tiles-viewer-group/tiles-viewer-group.component.mjs +88 -0
  62. package/esm2022/lib/tiles-viewer.service.mjs +130 -0
  63. package/esm2022/lib/tiles.service.mjs +589 -0
  64. package/{esm2020 → esm2022}/public-api.mjs +46 -45
  65. package/fesm2022/barsa-tiles.mjs +3179 -0
  66. package/fesm2022/barsa-tiles.mjs.map +1 -0
  67. package/index.d.ts +5 -5
  68. package/lib/action-item/action-item.component.d.ts +6 -6
  69. package/lib/action-links.pipe.d.ts +7 -7
  70. package/lib/actions-link/actions-link.component.d.ts +17 -17
  71. package/lib/app-finder/app-finder.component.d.ts +24 -24
  72. package/lib/app-finder-app-list/app-finder-app-list.component.d.ts +20 -20
  73. package/lib/app-finder-group/app-finder-group.component.d.ts +14 -14
  74. package/lib/app-finder.service.d.ts +33 -33
  75. package/lib/barsa-shellbar/barsa-shellbar.component.d.ts +104 -97
  76. package/lib/barsa-tiles.module.d.ts +91 -86
  77. package/lib/change-app-tile/change-app-tile.component.d.ts +20 -20
  78. package/lib/create-app-group/create-app-group.component.d.ts +19 -19
  79. package/lib/directives/emptylist.directive.d.ts +14 -14
  80. package/lib/feed-tile/feed-tile.component.d.ts +11 -11
  81. package/lib/footer-edit-tile/footer-edit-tile.component.d.ts +6 -6
  82. package/lib/footer-tile/footer-tile.component.d.ts +11 -11
  83. package/lib/form-app-finder/form-app-finder.component.d.ts +38 -38
  84. package/lib/form-tile/form-tile.component.d.ts +24 -24
  85. package/lib/logo-tile/logo-tile.component.d.ts +7 -7
  86. package/lib/micro-tile-chart-area/micro-tile-chart-area.component.d.ts +8 -8
  87. package/lib/micro-tile-chart-bar/micro-tile-chart-bar.component.d.ts +12 -12
  88. package/lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component.d.ts +16 -16
  89. package/lib/micro-tile-chart-circular/micro-tile-chart-circular.component.d.ts +7 -7
  90. package/lib/micro-tile-chart-comparison/micro-tile-chart-comparison.component.d.ts +8 -8
  91. package/lib/micro-tile-chart-line/micro-tile-chart-line.component.d.ts +8 -8
  92. package/lib/micro-tile-chart-stackbar/micro-tile-chart-stackbar.component.d.ts +8 -8
  93. package/lib/models/app-tile-footer-section.d.ts +6 -6
  94. package/lib/models/app-tile-footer.d.ts +8 -8
  95. package/lib/models/app-tile-group-pin.d.ts +5 -5
  96. package/lib/models/base-bt-tile-component.d.ts +9 -9
  97. package/lib/models/base-tile-component.d.ts +26 -26
  98. package/lib/models/base-tile-setting.d.ts +5 -5
  99. package/lib/models/feed-tile-setting.d.ts +7 -7
  100. package/lib/models/index.d.ts +13 -13
  101. package/lib/models/logo-tile-setting.d.ts +6 -6
  102. package/lib/models/micro-tile-chart-bullet-setting.d.ts +10 -10
  103. package/lib/models/news-tile-setting.d.ts +4 -4
  104. package/lib/models/numeric-tile-setting.d.ts +9 -9
  105. package/lib/models/profile-tile-setting.d.ts +7 -7
  106. package/lib/models/tile-setting.d.ts +10 -10
  107. package/lib/models/user-portal-settings.d.ts +9 -9
  108. package/lib/news-tile/news-tile.component.d.ts +19 -19
  109. package/lib/notification-group/notification-group.component.d.ts +54 -55
  110. package/lib/notification-group-header/notification-group-header.component.d.ts +15 -15
  111. package/lib/numeric-tile/numeric-tile.component.d.ts +16 -12
  112. package/lib/pin-tile/pin-tile.component.d.ts +30 -30
  113. package/lib/pipes/group-tiles.pipe.d.ts +14 -14
  114. package/lib/pipes/home-group.pipe.d.ts +9 -9
  115. package/lib/pipes/tile-home-filter.pipe.d.ts +8 -8
  116. package/lib/pipes/tile-prop.pipe.d.ts +8 -8
  117. package/lib/popover-app-finder/filter-apps-grouped.pipe.d.ts +13 -0
  118. package/lib/popover-app-finder/popover-app-finder.component.d.ts +39 -0
  119. package/lib/profile-tile/profile-tile.component.d.ts +7 -7
  120. package/lib/shellbar/shellbar.component.d.ts +94 -94
  121. package/lib/simple-tile/simple-tile.component.d.ts +10 -10
  122. package/lib/tile/tile.component.d.ts +22 -20
  123. package/lib/tile-renderer.directive.d.ts +28 -28
  124. package/lib/tile-style.directive.d.ts +12 -0
  125. package/lib/tiles-viewer/tiles-viewer.component.d.ts +65 -63
  126. package/lib/tiles-viewer-container/tiles-viewer-container.component.d.ts +59 -57
  127. package/lib/tiles-viewer-group/tiles-viewer-group.component.d.ts +39 -39
  128. package/lib/tiles-viewer.service.d.ts +42 -42
  129. package/lib/tiles.service.d.ts +75 -75
  130. package/package.json +7 -13
  131. package/public-api.d.ts +42 -41
  132. package/esm2020/lib/action-item/action-item.component.mjs +0 -18
  133. package/esm2020/lib/actions-link/actions-link.component.mjs +0 -42
  134. package/esm2020/lib/app-finder/app-finder.component.mjs +0 -53
  135. package/esm2020/lib/app-finder-app-list/app-finder-app-list.component.mjs +0 -40
  136. package/esm2020/lib/app-finder-group/app-finder-group.component.mjs +0 -42
  137. package/esm2020/lib/app-finder.service.mjs +0 -121
  138. package/esm2020/lib/barsa-shellbar/barsa-shellbar.component.mjs +0 -166
  139. package/esm2020/lib/barsa-tiles.module.mjs +0 -206
  140. package/esm2020/lib/change-app-tile/change-app-tile.component.mjs +0 -47
  141. package/esm2020/lib/create-app-group/create-app-group.component.mjs +0 -44
  142. package/esm2020/lib/directives/emptylist.directive.mjs +0 -36
  143. package/esm2020/lib/feed-tile/feed-tile.component.mjs +0 -32
  144. package/esm2020/lib/footer-tile/footer-tile.component.mjs +0 -28
  145. package/esm2020/lib/form-app-finder/form-app-finder.component.mjs +0 -95
  146. package/esm2020/lib/form-tile/form-tile.component.mjs +0 -35
  147. package/esm2020/lib/logo-tile/logo-tile.component.mjs +0 -23
  148. package/esm2020/lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component.mjs +0 -27
  149. package/esm2020/lib/models/base-bt-tile-component.mjs +0 -30
  150. package/esm2020/lib/models/tile-setting.mjs +0 -2
  151. package/esm2020/lib/news-tile/news-tile.component.mjs +0 -54
  152. package/esm2020/lib/notification-group/notification-group.component.mjs +0 -116
  153. package/esm2020/lib/notification-group-header/notification-group-header.component.mjs +0 -39
  154. package/esm2020/lib/numeric-tile/numeric-tile.component.mjs +0 -34
  155. package/esm2020/lib/pin-tile/pin-tile.component.mjs +0 -111
  156. package/esm2020/lib/pipes/group-tiles.pipe.mjs +0 -31
  157. package/esm2020/lib/pipes/tile-home-filter.pipe.mjs +0 -28
  158. package/esm2020/lib/pipes/tile-prop.pipe.mjs +0 -32
  159. package/esm2020/lib/profile-tile/profile-tile.component.mjs +0 -26
  160. package/esm2020/lib/shellbar/shellbar.component.mjs +0 -200
  161. package/esm2020/lib/simple-tile/simple-tile.component.mjs +0 -23
  162. package/esm2020/lib/tile/tile.component.mjs +0 -61
  163. package/esm2020/lib/tile-renderer.directive.mjs +0 -70
  164. package/esm2020/lib/tiles-viewer/tiles-viewer.component.mjs +0 -157
  165. package/esm2020/lib/tiles-viewer-container/tiles-viewer-container.component.mjs +0 -158
  166. package/esm2020/lib/tiles-viewer-group/tiles-viewer-group.component.mjs +0 -88
  167. package/esm2020/lib/tiles-viewer.service.mjs +0 -130
  168. package/esm2020/lib/tiles.service.mjs +0 -589
  169. package/fesm2015/barsa-tiles.mjs +0 -2977
  170. package/fesm2015/barsa-tiles.mjs.map +0 -1
  171. package/fesm2020/barsa-tiles.mjs +0 -2941
  172. package/fesm2020/barsa-tiles.mjs.map +0 -1
@@ -1,14 +1,14 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { Observable } from 'rxjs';
3
- import { MetaobjectDataModel } from 'barsa-novin-ray-core';
4
- import * as i0 from "@angular/core";
5
- interface AppTileModel extends MetaobjectDataModel {
6
- Component: MetaobjectDataModel;
7
- Selector: string;
8
- }
9
- export declare class GroupTilesPipe implements PipeTransform {
10
- transform(appGroup: MetaobjectDataModel): Observable<AppTileModel[]>;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<GroupTilesPipe, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<GroupTilesPipe, "groupTiles", false>;
13
- }
14
- export {};
1
+ import { PipeTransform } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { MetaobjectDataModel } from 'barsa-novin-ray-core';
4
+ import * as i0 from "@angular/core";
5
+ interface AppTileModel extends MetaobjectDataModel {
6
+ Component: MetaobjectDataModel;
7
+ Selector: string;
8
+ }
9
+ export declare class GroupTilesPipe implements PipeTransform {
10
+ transform(appGroup: MetaobjectDataModel): Observable<AppTileModel[]>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupTilesPipe, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<GroupTilesPipe, "groupTiles", false>;
13
+ }
14
+ export {};
@@ -1,9 +1,9 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { MetaobjectDataModel } from 'barsa-novin-ray-core';
3
- import * as i0 from "@angular/core";
4
- export declare class HomeGroupPipe implements PipeTransform {
5
- constructor();
6
- transform(appGroups: MetaobjectDataModel[]): MetaobjectDataModel[];
7
- static ɵfac: i0.ɵɵFactoryDeclaration<HomeGroupPipe, never>;
8
- static ɵpipe: i0.ɵɵPipeDeclaration<HomeGroupPipe, "homeGroup", false>;
9
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import { MetaobjectDataModel } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class HomeGroupPipe implements PipeTransform {
5
+ constructor();
6
+ transform(appGroups: MetaobjectDataModel[]): MetaobjectDataModel[];
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<HomeGroupPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<HomeGroupPipe, "homeGroup", false>;
9
+ }
@@ -1,8 +1,8 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TileHomeFilterPipe implements PipeTransform {
4
- transform(collection: any[]): any[];
5
- matchFilter(value: any): boolean;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<TileHomeFilterPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<TileHomeFilterPipe, "tileHomeFilter", false>;
8
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TileHomeFilterPipe implements PipeTransform {
4
+ transform(collection: any[]): any[];
5
+ matchFilter(value: any): boolean;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TileHomeFilterPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<TileHomeFilterPipe, "tileHomeFilter", false>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { MetaobjectDataModel } from 'barsa-novin-ray-core';
3
- import * as i0 from "@angular/core";
4
- export declare class TilePropPipe implements PipeTransform {
5
- transform(data: any, prop: string, parameters?: MetaobjectDataModel): string | any;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<TilePropPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<TilePropPipe, "tileProp", false>;
8
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import { MetaobjectDataModel } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TilePropPipe implements PipeTransform {
5
+ transform(data: any, prop: string, parameters?: MetaobjectDataModel): string | any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TilePropPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<TilePropPipe, "tileProp", false>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { MetaobjectDataModel } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FilterAppsGroupedPipe implements PipeTransform {
5
+ transform(value: MetaobjectDataModel[] | undefined | null, term: string): MetaobjectDataModel[] | undefined | null;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterAppsGroupedPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterAppsGroupedPipe, "filterAppsGrouped", true>;
8
+ }
9
+ export declare class FilterAppsPipe implements PipeTransform {
10
+ transform(value: MetaobjectDataModel[] | undefined | null, term: string): MetaobjectDataModel[] | undefined | null;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterAppsPipe, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<FilterAppsPipe, "filterApps", true>;
13
+ }
@@ -0,0 +1,39 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { ContentDensity, ContentDensityService, DialogService } from '@fundamental-ngx/core';
4
+ import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
5
+ import { AppFinderService } from '../app-finder.service';
6
+ import { AppTileGroupPin } from '../models';
7
+ import * as i0 from "@angular/core";
8
+ export declare class PopoverAppFinderComponent extends BaseComponent implements OnInit {
9
+ private _cdr;
10
+ private _dialogService;
11
+ private _appFinderService;
12
+ private _el;
13
+ closeMenu: EventEmitter<void>;
14
+ selectedGroups: MetaobjectDataModel[];
15
+ isAllSelected: boolean;
16
+ appGroups$: Observable<MetaobjectDataModel[] | undefined>;
17
+ appTileGroups$: Observable<MetaobjectDataModel[]>;
18
+ searchTerm: string;
19
+ deviceSize$: Observable<AbbrevationDeviceSize>;
20
+ sideContentSize$: Observable<string>;
21
+ contentDensity$: Observable<ContentDensity>;
22
+ selectedAppGroup$: Observable<MetaobjectDataModel | undefined>;
23
+ selectedAppGroupId$: Observable<string>;
24
+ mobile$: Observable<boolean>;
25
+ contentHeight: string;
26
+ pinnedAppInAppTileGroups$: Observable<Record<string, string[]>>;
27
+ constructor(_cdr: ChangeDetectorRef, _dialogService: DialogService, _appFinderService: AppFinderService, _el: ElementRef, _contentDensityService: ContentDensityService);
28
+ ngOnInit(): void;
29
+ onSelectedAppGroupChange(appGroupId: string): void;
30
+ onPinClick(app: MetaobjectDataModel): void;
31
+ onRefresh(): void;
32
+ _appTileGroupsPinChange(result: {
33
+ appTileGroupsPin: AppTileGroupPin[];
34
+ app: MetaobjectDataModel;
35
+ }): Promise<void>;
36
+ private _changeGroup;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<PopoverAppFinderComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<PopoverAppFinderComponent, "bt-popover-app-finder", never, {}, { "closeMenu": "closeMenu"; }, never, never, false, never>;
39
+ }
@@ -1,7 +1,7 @@
1
- import { BaseBtTileComponent, ProfileTileSetting } from '../models';
2
- import * as i0 from "@angular/core";
3
- export declare class ProfileTileComponent extends BaseBtTileComponent<ProfileTileSetting> {
4
- get fileId(): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileTileComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ProfileTileComponent, "bt-profile-tile", never, {}, {}, never, never, false>;
7
- }
1
+ import { BaseBtTileComponent, ProfileTileSetting } from '../models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ProfileTileComponent extends BaseBtTileComponent<ProfileTileSetting> {
4
+ get fileId(): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileTileComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProfileTileComponent, "bt-profile-tile", never, {}, {}, never, never, false, never>;
7
+ }
@@ -1,94 +1,94 @@
1
- import { ChangeDetectorRef, OnInit, TemplateRef } from '@angular/core';
2
- import { Observable, Subject } from 'rxjs';
3
- import { ComboboxComponent, PopoverComponent, ProductSwitchItem, ShellbarMenuItem, ShellbarUser } from '@fundamental-ngx/core';
4
- import { DomSanitizer } from '@angular/platform-browser';
5
- import { BaseComponent, MetaobjectDataModel, FilePictureInfoModel, MoForReportModel, PortalService, BreadcrumbService, NotificationService, NotificationItem, NotificationAction, BbbTranslatePipe } from 'barsa-novin-ray-core';
6
- import { TilesService } from '../tiles.service';
7
- import { AbbrevationDeviceSize } from 'barsa-novin-ray-core';
8
- import * as i0 from "@angular/core";
9
- interface ShellbarSetting extends MetaobjectDataModel {
10
- subtitle: string;
11
- calcSubtitle: string;
12
- logo: FilePictureInfoModel;
13
- ProductSwitchItems: MoForReportModel;
14
- ProductMenuItems: MoForReportModel;
15
- UserMenuItems: MoForReportModel;
16
- ActionItems: MoForReportModel;
17
- }
18
- export declare class ShellbarComponent extends BaseComponent implements OnInit {
19
- private _bbbTranslatePipe;
20
- private _portalService;
21
- private _breadCrumbService;
22
- private _tilesService;
23
- private _cdr;
24
- private _domSanitizer;
25
- private _notificationService;
26
- appVersion: string;
27
- comboboxComponent: ComboboxComponent;
28
- popoverComponent: PopoverComponent;
29
- _notificationsDialog: TemplateRef<any>;
30
- shellbarData: ShellbarSetting;
31
- settings: MetaobjectDataModel;
32
- isOpenNotificatoin: boolean;
33
- deviceSize$: Observable<AbbrevationDeviceSize>;
34
- productMenuControl: string;
35
- user: ShellbarUser;
36
- productMenuItems1: ShellbarMenuItem[];
37
- userLoggedIn$: Observable<boolean>;
38
- cssUrl$: any;
39
- cssCustomUrl$: any;
40
- allowAnonymous: boolean;
41
- cultures: Record<string, any>;
42
- notificationsCount$: Observable<{
43
- unread: number;
44
- all: number;
45
- }>;
46
- notifications$: Observable<NotificationItem[]>;
47
- notificationLoading$: Observable<boolean>;
48
- notifcationLoaded: boolean;
49
- notifiationCountLoaded$: Observable<boolean>;
50
- _viewedNotifications$: Subject<NotificationItem>;
51
- _viewedNotifications: NotificationItem[];
52
- bodyClick: string;
53
- get subtitle(): string;
54
- get logo(): {
55
- FileId: string;
56
- };
57
- get actions(): Array<MetaobjectDataModel>;
58
- get userMenu(): {
59
- text: string;
60
- callback: () => void;
61
- }[];
62
- get productSwitcher(): ProductSwitchItem[];
63
- get multiLanguages(): boolean;
64
- get productMenuItems(): ShellbarMenuItem[];
65
- constructor(_bbbTranslatePipe: BbbTranslatePipe, _portalService: PortalService, _breadCrumbService: BreadcrumbService, _tilesService: TilesService, _cdr: ChangeDetectorRef, _domSanitizer: DomSanitizer, _notificationService: NotificationService, appVersion: string);
66
- ngOnInit(): void;
67
- onCultureChange(culture: any): void;
68
- onShowNotification(e: {
69
- tag: string;
70
- mo: MetaobjectDataModel;
71
- nama: string;
72
- }): void;
73
- onNotificationItemViewed(viewedMo: NotificationItem): void;
74
- onRemoveNotifications(e: {
75
- items: MetaobjectDataModel[];
76
- silent: boolean;
77
- }): void;
78
- onOpenNotification: () => void;
79
- onNotificationAction(e: {
80
- item: NotificationItem;
81
- btn: NotificationAction;
82
- }): void;
83
- onCultureChanged: (culture: string) => void;
84
- onNotificationLoadMore(): void;
85
- onNotificationWorkflowChoiceSuccess(result: any): void;
86
- onNotificationWorkflowChoiceFailed(err: any): void;
87
- onHandleOpenNotificationPanel(): void;
88
- private _handleOpenNotificationPanel;
89
- private _mapNotifications;
90
- private _changeCulture;
91
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellbarComponent, never>;
92
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarComponent, "bt-shellbar", never, {}, {}, never, never, false>;
93
- }
94
- export {};
1
+ import { ChangeDetectorRef, OnInit, TemplateRef } from '@angular/core';
2
+ import { Observable, Subject } from 'rxjs';
3
+ import { ComboboxComponent, PopoverComponent, ProductSwitchItem, ShellbarMenuItem, ShellbarUser } from '@fundamental-ngx/core';
4
+ import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
5
+ import { BaseComponent, MetaobjectDataModel, FilePictureInfoModel, MoForReportModel, PortalService, BreadcrumbService, NotificationService, NotificationItem, NotificationAction, BbbTranslatePipe, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
6
+ import { TilesService } from '../tiles.service';
7
+ import * as i0 from "@angular/core";
8
+ interface ShellbarSetting extends MetaobjectDataModel {
9
+ subtitle: string;
10
+ calcSubtitle: string;
11
+ logo: FilePictureInfoModel;
12
+ ProductSwitchItems: MoForReportModel;
13
+ ProductMenuItems: MoForReportModel;
14
+ UserMenuItems: MoForReportModel;
15
+ ActionItems: MoForReportModel;
16
+ }
17
+ export declare class ShellbarComponent extends BaseComponent implements OnInit {
18
+ private _bbbTranslatePipe;
19
+ private _portalService;
20
+ private _breadCrumbService;
21
+ private _tilesService;
22
+ private _cdr;
23
+ private _domSanitizer;
24
+ private _notificationService;
25
+ appVersion: string;
26
+ comboboxComponent: ComboboxComponent;
27
+ popoverComponent: PopoverComponent;
28
+ _notificationsDialog: TemplateRef<any>;
29
+ shellbarData: ShellbarSetting;
30
+ settings: MetaobjectDataModel;
31
+ isOpenNotificatoin: boolean;
32
+ deviceSize$: Observable<AbbrevationDeviceSize>;
33
+ productMenuControl: string;
34
+ user: ShellbarUser;
35
+ productMenuItems1: ShellbarMenuItem[];
36
+ userLoggedIn$: Observable<boolean>;
37
+ cssUrl$: Observable<SafeResourceUrl | null>;
38
+ cssCustomUrl$: Observable<SafeResourceUrl | null>;
39
+ allowAnonymous: boolean;
40
+ cultures: Record<string, any>;
41
+ notificationsCount$: Observable<{
42
+ unread: number;
43
+ all: number;
44
+ }>;
45
+ notifications$: Observable<NotificationItem[]>;
46
+ notificationLoading$: Observable<boolean>;
47
+ notifcationLoaded: boolean;
48
+ notifiationCountLoaded$: Observable<boolean>;
49
+ _viewedNotifications$: Subject<NotificationItem>;
50
+ _viewedNotifications: NotificationItem[];
51
+ bodyClick: string;
52
+ isMobile: boolean;
53
+ get subtitle(): string;
54
+ get logo(): {
55
+ FileId: string;
56
+ };
57
+ get actions(): Array<MetaobjectDataModel>;
58
+ get userMenu(): {
59
+ text: string;
60
+ callback: () => void;
61
+ }[];
62
+ get productSwitcher(): ProductSwitchItem[];
63
+ get multiLanguages(): boolean;
64
+ get productMenuItems(): ShellbarMenuItem[];
65
+ constructor(_bbbTranslatePipe: BbbTranslatePipe, _portalService: PortalService, _breadCrumbService: BreadcrumbService, _tilesService: TilesService, _cdr: ChangeDetectorRef, _domSanitizer: DomSanitizer, _notificationService: NotificationService, appVersion: string);
66
+ ngOnInit(): void;
67
+ onCultureChange(culture: any): void;
68
+ onShowNotification(e: {
69
+ tag: string;
70
+ mo: MetaobjectDataModel;
71
+ nama: string;
72
+ }): void;
73
+ onNotificationItemViewed(viewedMo: NotificationItem): void;
74
+ onRemoveNotifications(e: {
75
+ items: MetaobjectDataModel[];
76
+ silent: boolean;
77
+ }): void;
78
+ onOpenNotification: () => void;
79
+ onNotificationAction(e: {
80
+ item: NotificationItem;
81
+ btn: NotificationAction;
82
+ }): void;
83
+ onCultureChanged: (culture: string) => void;
84
+ onNotificationLoadMore(): void;
85
+ onNotificationWorkflowChoiceSuccess(result: any): void;
86
+ onNotificationWorkflowChoiceFailed(err: any): void;
87
+ onHandleOpenNotificationPanel(): void;
88
+ private _handleOpenNotificationPanel;
89
+ private _mapNotifications;
90
+ private _changeCulture;
91
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellbarComponent, never>;
92
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarComponent, "bt-shellbar", never, {}, {}, never, never, false, never>;
93
+ }
94
+ export {};
@@ -1,10 +1,10 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseBtTileComponent, BaseTileSetting } from '../models';
3
- import * as i0 from "@angular/core";
4
- export declare class SimpleTileComponent extends BaseBtTileComponent<BaseTileSetting> implements OnInit {
5
- icon: string;
6
- iconColor: string;
7
- ngOnInit(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<SimpleTileComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<SimpleTileComponent, "bt-simple-tile", never, {}, {}, never, never, false>;
10
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseBtTileComponent, BaseTileSetting } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SimpleTileComponent extends BaseBtTileComponent<BaseTileSetting> implements OnInit {
5
+ icon: string;
6
+ iconColor: string;
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SimpleTileComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SimpleTileComponent, "bt-simple-tile", never, {}, {}, never, never, false, never>;
10
+ }
@@ -1,20 +1,22 @@
1
- import { TemplateRef } from '@angular/core';
2
- import { TilePropsComponent } from 'barsa-novin-ray-core';
3
- import { AppTileFooter } from '../models';
4
- import * as i0 from "@angular/core";
5
- export declare class TileComponent extends TilePropsComponent {
6
- type: 'feed' | 'launch' | 'kpi';
7
- footerTemplate: TemplateRef<any>;
8
- footer: AppTileFooter;
9
- disableClick: boolean;
10
- title: string;
11
- icon: string;
12
- subtitle: string;
13
- isDouble: boolean;
14
- edit: boolean;
15
- dynamicCommand: any;
16
- runningCommand: boolean;
17
- onClick(ev: any): boolean;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "bt-tile", never, { "type": "type"; "footerTemplate": "footerTemplate"; "footer": "footer"; "disableClick": "disableClick"; "title": "title"; "icon": "icon"; "subtitle": "subtitle"; "isDouble": "isDouble"; "edit": "edit"; "dynamicCommand": "dynamicCommand"; }, {}, never, ["*"], false>;
20
- }
1
+ import { TemplateRef } from '@angular/core';
2
+ import { TilePropsComponent } from 'barsa-novin-ray-core';
3
+ import { AppTileFooter } from '../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TileComponent extends TilePropsComponent {
6
+ type: 'feed' | 'launch' | 'kpi';
7
+ footerTemplate: TemplateRef<any>;
8
+ footer: AppTileFooter;
9
+ disableClick: boolean;
10
+ title: string;
11
+ icon: string;
12
+ subtitle: string;
13
+ isDouble: boolean;
14
+ edit: boolean;
15
+ backColor: string;
16
+ dynamicCommand: any;
17
+ runningCommand: boolean;
18
+ onClick(ev: any): boolean;
19
+ ngOnInit(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "bt-tile", never, { "type": { "alias": "type"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "footer": { "alias": "footer"; "required": false; }; "disableClick": { "alias": "disableClick"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "isDouble": { "alias": "isDouble"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "backColor": { "alias": "backColor"; "required": false; }; "dynamicCommand": { "alias": "dynamicCommand"; "required": false; }; }, {}, never, ["*"], false, never>;
22
+ }
@@ -1,28 +1,28 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
2
- import { BaseDirective, PortalService } from 'barsa-novin-ray-core';
3
- import { BaseTileSetting } from './models';
4
- import * as i0 from "@angular/core";
5
- export declare class TileRendererDirective extends BaseDirective implements OnInit, OnChanges, OnDestroy {
6
- private _cdr;
7
- private _portalService;
8
- private _vcr;
9
- private _injector;
10
- protected _el: ElementRef;
11
- component: {
12
- Module: string;
13
- ModuleFileName: string;
14
- Name: string;
15
- Selector: string;
16
- };
17
- data: BaseTileSetting;
18
- edit: boolean;
19
- hideClick: EventEmitter<any>;
20
- renameClick: EventEmitter<any>;
21
- private _tileRef;
22
- constructor(_cdr: ChangeDetectorRef, _portalService: PortalService, _vcr: ViewContainerRef, _injector: Injector, _el: ElementRef);
23
- ngOnInit(): void;
24
- ngOnChanges(changes: SimpleChanges): void;
25
- ngOnDestroy(): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<TileRendererDirective, never>;
27
- static ɵdir: i0.ɵɵDirectiveDeclaration<TileRendererDirective, "[tileRenderer]", never, { "component": "component"; "data": "data"; "edit": "edit"; }, { "hideClick": "hideClick"; "renameClick": "renameClick"; }, never, never, false>;
28
- }
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
2
+ import { BaseDirective, PortalService } from 'barsa-novin-ray-core';
3
+ import { BaseTileSetting } from './models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TileRendererDirective extends BaseDirective implements OnInit, OnChanges, OnDestroy {
6
+ private _cdr;
7
+ private _portalService;
8
+ private _vcr;
9
+ private _injector;
10
+ protected _el: ElementRef;
11
+ component: {
12
+ Module: string;
13
+ ModuleFileName: string;
14
+ Name: string;
15
+ Selector: string;
16
+ };
17
+ data: BaseTileSetting;
18
+ edit: boolean;
19
+ hideClick: EventEmitter<any>;
20
+ renameClick: EventEmitter<any>;
21
+ private _tileRef;
22
+ constructor(_cdr: ChangeDetectorRef, _portalService: PortalService, _vcr: ViewContainerRef, _injector: Injector, _el: ElementRef);
23
+ ngOnInit(): void;
24
+ ngOnChanges(changes: SimpleChanges): void;
25
+ ngOnDestroy(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<TileRendererDirective, never>;
27
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TileRendererDirective, "[tileRenderer]", never, { "component": { "alias": "component"; "required": false; }; "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, { "hideClick": "hideClick"; "renameClick": "renameClick"; }, never, never, false, never>;
28
+ }
@@ -0,0 +1,12 @@
1
+ import { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
+ import { BaseDirective } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TileStyleDirective extends BaseDirective implements OnInit, OnChanges, OnDestroy {
5
+ private _renderer2;
6
+ protected _el: ElementRef;
7
+ backColor: string;
8
+ constructor(_renderer2: Renderer2, _el: ElementRef);
9
+ ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TileStyleDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TileStyleDirective, "[tileStyle]", never, { "backColor": { "alias": "backColor"; "required": false; }; }, {}, never, never, false, never>;
12
+ }
@@ -1,63 +1,65 @@
1
- import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
- import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
3
- import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize, SaveScrollPositionService, IntersectionStatus } from 'barsa-novin-ray-core';
4
- import { Nullable, TabListComponent, TabPanelComponent } from '@fundamental-ngx/core';
5
- import * as i0 from "@angular/core";
6
- export declare class TilesViewerComponent extends BaseComponent implements OnInit {
7
- protected _cdr: ChangeDetectorRef;
8
- protected _saveScrollPosition: SaveScrollPositionService;
9
- tabListComponent: TabListComponent;
10
- contentPageRef: ElementRef<any>;
11
- pageContentClass: boolean;
12
- appTileGroups: Array<MetaobjectDataModel>;
13
- loading: boolean;
14
- edit: boolean;
15
- rtl: boolean;
16
- stackContent: boolean;
17
- deviceSize: AbbrevationDeviceSize;
18
- selectedAppGroupId: string;
19
- DynamicComponents: any;
20
- stackContentChange: EventEmitter<boolean>;
21
- closeEditHome: EventEmitter<any>;
22
- save: EventEmitter<any>;
23
- listDropped: EventEmitter<{
24
- appTileGroups: MetaobjectDataModel[];
25
- event: CdkDragDrop<MetaobjectDataModel[]>;
26
- }>;
27
- tabChanged: EventEmitter<{
28
- firstSelected: boolean;
29
- selectedTabTitle: string;
30
- tabPanels: TabPanelComponent[];
31
- appTileGroups: MetaobjectDataModel[];
32
- }>;
33
- toggleGroup: EventEmitter<MetaobjectDataModel>;
34
- resetGroup: EventEmitter<MetaobjectDataModel>;
35
- deleteGroup: EventEmitter<MetaobjectDataModel>;
36
- hideAppTileClick: EventEmitter<MetaobjectDataModel>;
37
- renameAppTileClick: EventEmitter<MetaobjectDataModel>;
38
- tilesDropped: EventEmitter<{
39
- appTileGroup: MetaobjectDataModel;
40
- event: CdkDragDrop<{
41
- isTile: boolean;
42
- items: MetaobjectDataModel[];
43
- }>;
44
- }>;
45
- _rtl: any;
46
- selectedTabTitle: Nullable<string>;
47
- selectedTabId: string;
48
- _tilesIntersection: any;
49
- formVisibilityStatus: IntersectionStatus;
50
- constructor(_cdr: ChangeDetectorRef, _saveScrollPosition: SaveScrollPositionService);
51
- id: string;
52
- ngOnInit(): void;
53
- onSelectedTabChange(selectedTab: TabPanelComponent, appTileGroups: MetaobjectDataModel[]): void;
54
- onDropGroup(appTileGroups: MetaobjectDataModel[], event: CdkDragDrop<MetaobjectDataModel[]>): void;
55
- onDrop($event: any): void;
56
- onStackContentChanged(checked: any): void;
57
- onExitEditHome(appGroups: MetaobjectDataModel[]): void;
58
- onCloseEditHome(): void;
59
- _trackById(item: any, index: any): string | number;
60
- protected _onInView(e: any): void;
61
- static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerComponent, "bt-tiles-viewer", never, { "appTileGroups": "appTileGroups"; "loading": "loading"; "edit": "edit"; "rtl": "rtl"; "stackContent": "stackContent"; "deviceSize": "deviceSize"; "selectedAppGroupId": "selectedAppGroupId"; "DynamicComponents": "DynamicComponents"; }, { "stackContentChange": "stackContentChange"; "closeEditHome": "closeEditHome"; "save": "save"; "listDropped": "listDropped"; "tabChanged": "tabChanged"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "tilesDropped": "tilesDropped"; }, never, never, false>;
63
- }
1
+ import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
3
+ import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize, SaveScrollPositionService, IntersectionStatus } from 'barsa-novin-ray-core';
4
+ import { Nullable, TabListComponent, TabPanelComponent } from '@fundamental-ngx/core';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TilesViewerComponent extends BaseComponent implements OnInit {
7
+ protected _cdr: ChangeDetectorRef;
8
+ protected _saveScrollPosition: SaveScrollPositionService;
9
+ tabListComponent: TabListComponent;
10
+ contentPageRef: ElementRef<any>;
11
+ pageContentClass: boolean;
12
+ appTileGroups: Array<MetaobjectDataModel>;
13
+ loading: boolean;
14
+ edit: boolean;
15
+ rtl: boolean;
16
+ defaultTab: string;
17
+ stackContent: boolean;
18
+ deviceSize: AbbrevationDeviceSize;
19
+ selectedAppGroupId: string;
20
+ DynamicComponents: any;
21
+ stackContentChange: EventEmitter<boolean>;
22
+ closeEditHome: EventEmitter<any>;
23
+ save: EventEmitter<any>;
24
+ listDropped: EventEmitter<{
25
+ appTileGroups: MetaobjectDataModel[];
26
+ event: CdkDragDrop<MetaobjectDataModel[]>;
27
+ }>;
28
+ tabChanged: EventEmitter<{
29
+ firstSelected: boolean;
30
+ selectedTabTitle: string;
31
+ tabPanels: TabPanelComponent[];
32
+ appTileGroups: MetaobjectDataModel[];
33
+ }>;
34
+ toggleGroup: EventEmitter<MetaobjectDataModel>;
35
+ resetGroup: EventEmitter<MetaobjectDataModel>;
36
+ deleteGroup: EventEmitter<MetaobjectDataModel>;
37
+ hideAppTileClick: EventEmitter<MetaobjectDataModel>;
38
+ renameAppTileClick: EventEmitter<MetaobjectDataModel>;
39
+ tilesDropped: EventEmitter<{
40
+ appTileGroup: MetaobjectDataModel;
41
+ event: CdkDragDrop<{
42
+ isTile: boolean;
43
+ items: MetaobjectDataModel[];
44
+ }>;
45
+ }>;
46
+ _rtl: any;
47
+ selectedTabTitle: Nullable<string>;
48
+ selectedTabId: string;
49
+ _tilesIntersection: any;
50
+ formVisibilityStatus: IntersectionStatus;
51
+ constructor(_cdr: ChangeDetectorRef, _saveScrollPosition: SaveScrollPositionService);
52
+ id: string;
53
+ ngOnInit(): void;
54
+ ngAfterViewInit(): void;
55
+ onSelectedTabChange(selectedTab: TabPanelComponent, appTileGroups: MetaobjectDataModel[]): void;
56
+ onDropGroup(appTileGroups: MetaobjectDataModel[], event: CdkDragDrop<MetaobjectDataModel[]>): void;
57
+ onDrop($event: any): void;
58
+ onStackContentChanged(checked: any): void;
59
+ onExitEditHome(appGroups: MetaobjectDataModel[]): void;
60
+ onCloseEditHome(): void;
61
+ _trackById(index: any, item: any): string | number;
62
+ protected _onInView(e: any): void;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerComponent, "bt-tiles-viewer", never, { "appTileGroups": { "alias": "appTileGroups"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "defaultTab": { "alias": "defaultTab"; "required": false; }; "stackContent": { "alias": "stackContent"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "selectedAppGroupId": { "alias": "selectedAppGroupId"; "required": false; }; "DynamicComponents": { "alias": "DynamicComponents"; "required": false; }; }, { "stackContentChange": "stackContentChange"; "closeEditHome": "closeEditHome"; "save": "save"; "listDropped": "listDropped"; "tabChanged": "tabChanged"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "tilesDropped": "tilesDropped"; }, never, never, false, never>;
65
+ }