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
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="barsa-tiles" />
5
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="barsa-tiles" />
5
+ export * from './public-api';
@@ -1,6 +1,6 @@
1
- import { TileComponent } from '../tile/tile.component';
2
- import * as i0 from "@angular/core";
3
- export declare class ActionItemComponent extends TileComponent {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<ActionItemComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionItemComponent, "bt-action-item", never, {}, {}, never, never, false>;
6
- }
1
+ import { TileComponent } from '../tile/tile.component';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ActionItemComponent extends TileComponent {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionItemComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionItemComponent, "bt-action-item", never, {}, {}, never, never, false, never>;
6
+ }
@@ -1,7 +1,7 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ActionLinksPipe implements PipeTransform {
4
- transform(tiles: any): any;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ActionLinksPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<ActionLinksPipe, "actionLinks", false>;
7
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ActionLinksPipe implements PipeTransform {
4
+ transform(tiles: any): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionLinksPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ActionLinksPipe, "actionLinks", false>;
7
+ }
@@ -1,17 +1,17 @@
1
- import { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
2
- import { BaseComponent } from 'barsa-novin-ray-core';
3
- import * as i0 from "@angular/core";
4
- export declare class ActionsLinkComponent extends BaseComponent implements OnChanges {
5
- protected _cdr: ChangeDetectorRef;
6
- hide: any;
7
- actionsLink: any;
8
- edit: boolean;
9
- /**
10
- *
11
- */
12
- constructor(_cdr: ChangeDetectorRef);
13
- ngOnInit(): void;
14
- ngOnChanges(changes: SimpleChanges): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<ActionsLinkComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionsLinkComponent, "bt-actions-link", never, { "actionsLink": "actionsLink"; "edit": "edit"; }, {}, never, never, false>;
17
- }
1
+ import { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { BaseComponent } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ActionsLinkComponent extends BaseComponent implements OnChanges {
5
+ protected _cdr: ChangeDetectorRef;
6
+ hide: any;
7
+ actionsLink: any;
8
+ edit: boolean;
9
+ /**
10
+ *
11
+ */
12
+ constructor(_cdr: ChangeDetectorRef);
13
+ ngOnInit(): void;
14
+ ngOnChanges(changes: SimpleChanges): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionsLinkComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionsLinkComponent, "bt-actions-link", never, { "actionsLink": { "alias": "actionsLink"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, false, never>;
17
+ }
@@ -1,24 +1,24 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { ContentDensity } from '@fundamental-ngx/core';
3
- import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
4
- import * as i0 from "@angular/core";
5
- export declare class AppFinderComponent extends BaseComponent {
6
- appGroups: MetaobjectDataModel[];
7
- deviceSize: AbbrevationDeviceSize;
8
- sideContentSize: string;
9
- selectedAppGroup: MetaobjectDataModel;
10
- selectedAppGroupId: string;
11
- mobile: boolean;
12
- contentDensity: ContentDensity;
13
- contentHeight: string;
14
- pinnedAppInAppTileGroups: {
15
- [key: string]: string[];
16
- };
17
- pinClick: EventEmitter<MetaobjectDataModel>;
18
- selectedAppGroupIdChange: EventEmitter<string>;
19
- searchTerm: string;
20
- searchTerm2: string;
21
- onSearchSubmit(): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderComponent, "bt-app-finder", never, { "appGroups": "appGroups"; "deviceSize": "deviceSize"; "sideContentSize": "sideContentSize"; "selectedAppGroup": "selectedAppGroup"; "selectedAppGroupId": "selectedAppGroupId"; "mobile": "mobile"; "contentDensity": "contentDensity"; "contentHeight": "contentHeight"; "pinnedAppInAppTileGroups": "pinnedAppInAppTileGroups"; }, { "pinClick": "pinClick"; "selectedAppGroupIdChange": "selectedAppGroupIdChange"; }, never, never, false>;
24
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ContentDensity } from '@fundamental-ngx/core';
3
+ import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AppFinderComponent extends BaseComponent {
6
+ appGroups: MetaobjectDataModel[];
7
+ deviceSize: AbbrevationDeviceSize;
8
+ sideContentSize: string;
9
+ selectedAppGroup: MetaobjectDataModel;
10
+ selectedAppGroupId: string;
11
+ mobile: boolean;
12
+ contentDensity: ContentDensity;
13
+ contentHeight: string;
14
+ pinnedAppInAppTileGroups: {
15
+ [key: string]: string[];
16
+ };
17
+ pinClick: EventEmitter<MetaobjectDataModel>;
18
+ selectedAppGroupIdChange: EventEmitter<string>;
19
+ searchTerm: string;
20
+ searchTerm2: string;
21
+ onSearchSubmit(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderComponent, "bt-app-finder", never, { "appGroups": { "alias": "appGroups"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "sideContentSize": { "alias": "sideContentSize"; "required": false; }; "selectedAppGroup": { "alias": "selectedAppGroup"; "required": false; }; "selectedAppGroupId": { "alias": "selectedAppGroupId"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "contentHeight": { "alias": "contentHeight"; "required": false; }; "pinnedAppInAppTileGroups": { "alias": "pinnedAppInAppTileGroups"; "required": false; }; }, { "pinClick": "pinClick"; "selectedAppGroupIdChange": "selectedAppGroupIdChange"; }, never, never, false, never>;
24
+ }
@@ -1,20 +1,20 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
3
- import { AppTileGroupPin } from '../models';
4
- import * as i0 from "@angular/core";
5
- export declare class AppFinderAppListComponent extends BaseComponent {
6
- appGroup: MetaobjectDataModel;
7
- mobile: boolean;
8
- searchTerm: string;
9
- pinnedAppInAppTileGroups: {
10
- [key: string]: string[];
11
- };
12
- pinClick: EventEmitter<MetaobjectDataModel>;
13
- appTileGroupsPinChange: EventEmitter<{
14
- appTileGroupsPin: AppTileGroupPin[];
15
- app: MetaobjectDataModel;
16
- }>;
17
- onPinTap(app: MetaobjectDataModel): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderAppListComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderAppListComponent, "bt-app-finder-app-list", never, { "appGroup": "appGroup"; "mobile": "mobile"; "searchTerm": "searchTerm"; "pinnedAppInAppTileGroups": "pinnedAppInAppTileGroups"; }, { "pinClick": "pinClick"; "appTileGroupsPinChange": "appTileGroupsPinChange"; }, never, never, false>;
20
- }
1
+ import { EventEmitter } from '@angular/core';
2
+ import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
3
+ import { AppTileGroupPin } from '../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AppFinderAppListComponent extends BaseComponent {
6
+ appGroup: MetaobjectDataModel;
7
+ mobile: boolean;
8
+ searchTerm: string;
9
+ pinnedAppInAppTileGroups: {
10
+ [key: string]: string[];
11
+ };
12
+ pinClick: EventEmitter<MetaobjectDataModel>;
13
+ appTileGroupsPinChange: EventEmitter<{
14
+ appTileGroupsPin: AppTileGroupPin[];
15
+ app: MetaobjectDataModel;
16
+ }>;
17
+ onPinTap(app: MetaobjectDataModel): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderAppListComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderAppListComponent, "bt-app-finder-app-list", never, { "appGroup": { "alias": "appGroup"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "searchTerm": { "alias": "searchTerm"; "required": false; }; "pinnedAppInAppTileGroups": { "alias": "pinnedAppInAppTileGroups"; "required": false; }; }, { "pinClick": "pinClick"; "appTileGroupsPinChange": "appTileGroupsPinChange"; }, never, never, false, never>;
20
+ }
@@ -1,14 +1,14 @@
1
- import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
3
- import * as i0 from "@angular/core";
4
- export declare class AppFinderGroupComponent extends BaseComponent implements OnChanges {
5
- appGroups: MetaobjectDataModel[];
6
- selectedId: string;
7
- listMode: boolean;
8
- selectedIdChange: EventEmitter<string>;
9
- ngOnChanges(changes: SimpleChanges): void;
10
- OnMenuGroupClick(group: MetaobjectDataModel): void;
11
- OnGroupClick(group: MetaobjectDataModel): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderGroupComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderGroupComponent, "bt-app-finder-group", never, { "appGroups": "appGroups"; "selectedId": "selectedId"; "listMode": "listMode"; }, { "selectedIdChange": "selectedIdChange"; }, never, never, false>;
14
- }
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AppFinderGroupComponent extends BaseComponent implements OnChanges {
5
+ appGroups: MetaobjectDataModel[];
6
+ selectedId: string;
7
+ listMode: boolean;
8
+ selectedIdChange: EventEmitter<string>;
9
+ ngOnChanges(changes: SimpleChanges): void;
10
+ OnMenuGroupClick(group: MetaobjectDataModel): void;
11
+ OnGroupClick(group: MetaobjectDataModel): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderGroupComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderGroupComponent, "bt-app-finder-group", never, { "appGroups": { "alias": "appGroups"; "required": false; }; "selectedId": { "alias": "selectedId"; "required": false; }; "listMode": { "alias": "listMode"; "required": false; }; }, { "selectedIdChange": "selectedIdChange"; }, never, never, false, never>;
14
+ }
@@ -1,33 +1,33 @@
1
- import { OnDestroy } from '@angular/core';
2
- import { Observable } from 'rxjs';
3
- import { AbbrevationDeviceSize, MetaobjectDataModel, PortalService } from 'barsa-novin-ray-core';
4
- import { TilesService } from './tiles.service';
5
- import { AppTileGroupPin } from './models';
6
- import * as i0 from "@angular/core";
7
- export declare class AppFinderService implements OnDestroy {
8
- private _portalService;
9
- private _tileService;
10
- pinnedAppInAppTileGroups$: Observable<Record<string, string[]>>;
11
- appGroups$: Observable<MetaobjectDataModel[]>;
12
- selectedAppGroupId$: Observable<string>;
13
- selectedAppGroup$: Observable<MetaobjectDataModel | undefined>;
14
- deviceSize$: Observable<'s' | 'm' | 'l' | 'xl'>;
15
- private _appGroupsSource;
16
- private _OnDestroy$;
17
- private _selectedAppGroupIdSource;
18
- private _pinnedAppInAppTileGroupsSource;
19
- constructor(_portalService: PortalService, _tileService: TilesService);
20
- get deviceSize(): AbbrevationDeviceSize;
21
- get appTileGroups(): MetaobjectDataModel[] | undefined;
22
- ngOnDestroy(): void;
23
- loadAppGroups(): void;
24
- selectAppGroup(appGroupId: string): void;
25
- loadAppsByAppGroup(appGroups: MetaobjectDataModel[], appGroup: MetaobjectDataModel): void;
26
- loadPinnedAppInTileGroups(app: MetaobjectDataModel): {
27
- [key: string]: string[];
28
- };
29
- pinTileChanged(appTileGroups: AppTileGroupPin[], app: MetaobjectDataModel, callback: any): void;
30
- private _nextAllApps;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderService, never>;
32
- static ɵprov: i0.ɵɵInjectableDeclaration<AppFinderService>;
33
- }
1
+ import { OnDestroy } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { AbbrevationDeviceSize, MetaobjectDataModel, PortalService } from 'barsa-novin-ray-core';
4
+ import { TilesService } from './tiles.service';
5
+ import { AppTileGroupPin } from './models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AppFinderService implements OnDestroy {
8
+ private _portalService;
9
+ private _tileService;
10
+ pinnedAppInAppTileGroups$: Observable<Record<string, string[]>>;
11
+ appGroups$: Observable<MetaobjectDataModel[]>;
12
+ selectedAppGroupId$: Observable<string>;
13
+ selectedAppGroup$: Observable<MetaobjectDataModel | undefined>;
14
+ deviceSize$: Observable<'s' | 'm' | 'l' | 'xl'>;
15
+ private _appGroupsSource;
16
+ private _OnDestroy$;
17
+ private _selectedAppGroupIdSource;
18
+ private _pinnedAppInAppTileGroupsSource;
19
+ constructor(_portalService: PortalService, _tileService: TilesService);
20
+ get deviceSize(): AbbrevationDeviceSize;
21
+ get appTileGroups(): MetaobjectDataModel[] | undefined;
22
+ ngOnDestroy(): void;
23
+ loadAppGroups(): void;
24
+ selectAppGroup(appGroupId: string): void;
25
+ loadAppsByAppGroup(appGroups: MetaobjectDataModel[], appGroup: MetaobjectDataModel): void;
26
+ loadPinnedAppInTileGroups(app: MetaobjectDataModel): {
27
+ [key: string]: string[];
28
+ };
29
+ pinTileChanged(appTileGroups: AppTileGroupPin[], app: MetaobjectDataModel, callback: any): void;
30
+ private _nextAllApps;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderService, never>;
32
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppFinderService>;
33
+ }
@@ -1,97 +1,104 @@
1
- import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
- import { Observable, Subject } from 'rxjs';
3
- import { ComboboxComponent, DialogService, PopoverComponent, ProductSwitchItem, ShellbarMenuItem, ShellbarUser } from '@fundamental-ngx/core';
4
- import { BaseComponent, MetaobjectDataModel, FilePictureInfoModel, MoForReportModel, NotificationService, NotificationItem, NotificationAction, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
5
- import * as i0 from "@angular/core";
6
- interface ShellbarSetting extends MetaobjectDataModel {
7
- subtitle: string;
8
- calcSubtitle: string;
9
- logo: FilePictureInfoModel;
10
- ProductSwitchItems: MoForReportModel;
11
- ProductMenuItems: MoForReportModel;
12
- UserMenuItems: MoForReportModel;
13
- ActionItems: MoForReportModel;
14
- }
15
- export declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
16
- private _notificationService;
17
- private _dialogService;
18
- private _document;
19
- appVersion: string;
20
- cssCustomUrl: string;
21
- cssUrl: string;
22
- allowAnonymous: boolean;
23
- multiLanguages: boolean;
24
- userLoggedIn: boolean;
25
- settings: MetaobjectDataModel;
26
- productMenuControl: string;
27
- deviceSize: AbbrevationDeviceSize;
28
- cultures: Record<string, any>;
29
- shellbarData: ShellbarSetting;
30
- notificationCount: {
31
- unread: number;
32
- all: number;
33
- };
34
- notifcationLoaded: boolean;
35
- notificationLoading: boolean;
36
- notifications: NotificationItem[];
37
- productMenuItems1: ShellbarMenuItem[];
38
- bodyClick: string;
39
- logo: {
40
- FileId: string;
41
- };
42
- actions: Array<MetaobjectDataModel>;
43
- userMenu: {
44
- text: string;
45
- callback: () => void;
46
- }[];
47
- productSwitcher: ProductSwitchItem[];
48
- subtitle: string;
49
- openNotificationPanel: EventEmitter<void>;
50
- cultureChanged: EventEmitter<string>;
51
- notificationLoadMore: EventEmitter<void>;
52
- removeNotification: EventEmitter<{
53
- items: MetaobjectDataModel[];
54
- silent: boolean;
55
- }>;
56
- notifiationActionClick: EventEmitter<{
57
- item: NotificationItem;
58
- btn: NotificationAction;
59
- }>;
60
- notificationViewed: EventEmitter<NotificationItem>;
61
- comboboxComponent: ComboboxComponent;
62
- popoverComponent: PopoverComponent;
63
- _notificationsDialog: TemplateRef<any>;
64
- isOpenNotificatoin: boolean;
65
- user: ShellbarUser;
66
- searchTerms: string[];
67
- searchTerm: string;
68
- actions$: Observable<ShellbarMenuItem[]>;
69
- showVersion: boolean;
70
- _viewedNotifications$: Subject<NotificationItem>;
71
- onBellNotification: () => void;
72
- _viewedNotifications: NotificationItem[];
73
- constructor(_notificationService: NotificationService, _dialogService: DialogService, _document: Document, appVersion: string);
74
- ngOnInit(): void;
75
- onCultureChange(culture: any): void;
76
- onShowNotification(e: {
77
- tag: string;
78
- mo: MetaobjectDataModel;
79
- nama: string;
80
- }): void;
81
- onNotificationItemViewed(viewedMo: NotificationItem): void;
82
- onRemoveNotifications(e: {
83
- items: MetaobjectDataModel[];
84
- silent: boolean;
85
- }): void;
86
- onOpenNotification: () => void;
87
- onNotificationAction(e: {
88
- item: NotificationItem;
89
- btn: NotificationAction;
90
- }): void;
91
- onLanguage: (e: any) => void;
92
- onNotificationLoadMore(): void;
93
- private _changeCulture;
94
- static ɵfac: i0.ɵɵFactoryDeclaration<BarsaShellbarComponent, never>;
95
- static ɵcmp: i0.ɵɵComponentDeclaration<BarsaShellbarComponent, "bt-barsa-shellbar", never, { "cssCustomUrl": "cssCustomUrl"; "cssUrl": "cssUrl"; "allowAnonymous": "allowAnonymous"; "multiLanguages": "multiLanguages"; "userLoggedIn": "userLoggedIn"; "settings": "settings"; "productMenuControl": "productMenuControl"; "deviceSize": "deviceSize"; "cultures": "cultures"; "shellbarData": "shellbarData"; "notificationCount": "notificationCount"; "notifcationLoaded": "notifcationLoaded"; "notificationLoading": "notificationLoading"; "notifications": "notifications"; "productMenuItems1": "productMenuItems1"; "bodyClick": "bodyClick"; "logo": "logo"; "actions": "actions"; "userMenu": "userMenu"; "productSwitcher": "productSwitcher"; "subtitle": "subtitle"; }, { "openNotificationPanel": "openNotificationPanel"; "cultureChanged": "cultureChanged"; "notificationLoadMore": "notificationLoadMore"; "removeNotification": "removeNotification"; "notifiationActionClick": "notifiationActionClick"; "notificationViewed": "notificationViewed"; }, never, never, false>;
96
- }
97
- export {};
1
+ import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
+ import { Observable, Subject } from 'rxjs';
3
+ import { ComboboxComponent, DialogService, PopoverComponent, ProductSwitchItem, ShellbarMenuItem, ShellbarUser } from '@fundamental-ngx/core';
4
+ import { BaseComponent, MetaobjectDataModel, FilePictureInfoModel, MoForReportModel, NotificationService, NotificationItem, NotificationAction, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
5
+ import { SafeResourceUrl } from '@angular/platform-browser';
6
+ import * as i0 from "@angular/core";
7
+ interface ShellbarSetting extends MetaobjectDataModel {
8
+ subtitle: string;
9
+ calcSubtitle: string;
10
+ logo: FilePictureInfoModel;
11
+ ProductSwitchItems: MoForReportModel;
12
+ ProductMenuItems: MoForReportModel;
13
+ UserMenuItems: MoForReportModel;
14
+ ActionItems: MoForReportModel;
15
+ }
16
+ export declare class BarsaShellbarComponent extends BaseComponent implements OnInit {
17
+ private _notificationService;
18
+ private _dialogService;
19
+ private _document;
20
+ appVersion: string;
21
+ cssCustomUrl: SafeResourceUrl | null;
22
+ cssUrl: SafeResourceUrl | null;
23
+ allowAnonymous: boolean;
24
+ multiLanguages: boolean;
25
+ userLoggedIn: boolean;
26
+ settings: MetaobjectDataModel;
27
+ productMenuControl: string;
28
+ deviceSize: AbbrevationDeviceSize;
29
+ cultures: Record<string, any>;
30
+ shellbarData: ShellbarSetting;
31
+ notificationCount: {
32
+ unread: number;
33
+ all: number;
34
+ };
35
+ notifcationLoaded: boolean;
36
+ notificationLoading: boolean;
37
+ notifications: NotificationItem[];
38
+ productMenuItems1: ShellbarMenuItem[];
39
+ bodyClick: string;
40
+ logo: {
41
+ FileId: string;
42
+ };
43
+ actions: Array<MetaobjectDataModel>;
44
+ userMenu: {
45
+ text: string;
46
+ callback: () => void;
47
+ }[];
48
+ productSwitcher: ProductSwitchItem[];
49
+ subtitle: string;
50
+ isMobile: boolean;
51
+ openNotificationPanel: EventEmitter<void>;
52
+ openQuickAccessPanel: EventEmitter<void>;
53
+ cultureChanged: EventEmitter<string>;
54
+ notificationLoadMore: EventEmitter<void>;
55
+ removeNotification: EventEmitter<{
56
+ items: MetaobjectDataModel[];
57
+ silent: boolean;
58
+ }>;
59
+ notifiationActionClick: EventEmitter<{
60
+ item: NotificationItem;
61
+ btn: NotificationAction;
62
+ }>;
63
+ notificationViewed: EventEmitter<NotificationItem>;
64
+ comboboxComponent: ComboboxComponent;
65
+ popoverComponent: PopoverComponent;
66
+ _notificationsDialog: TemplateRef<any>;
67
+ private _cdr;
68
+ Array: ArrayConstructor;
69
+ isOpenNotificatoin: boolean;
70
+ isOpenQuickAccess: boolean;
71
+ user: ShellbarUser;
72
+ searchTerms: string[];
73
+ searchTerm: string;
74
+ actions$: Observable<ShellbarMenuItem[]>;
75
+ showVersion: boolean;
76
+ _viewedNotifications$: Subject<NotificationItem>;
77
+ onBellNotification: () => void;
78
+ _viewedNotifications: NotificationItem[];
79
+ constructor(_notificationService: NotificationService, _dialogService: DialogService, _document: Document, appVersion: string);
80
+ ngOnInit(): void;
81
+ onCultureChange(culture: any): void;
82
+ onShowNotification(e: {
83
+ tag: string;
84
+ mo: MetaobjectDataModel;
85
+ nama: string;
86
+ }): void;
87
+ onNotificationItemViewed(viewedMo: NotificationItem): void;
88
+ onRemoveNotifications(e: {
89
+ items: MetaobjectDataModel[];
90
+ silent: boolean;
91
+ }): void;
92
+ onOpenQuickAccess: () => void;
93
+ onOpenNotification: () => void;
94
+ onNotificationAction(e: {
95
+ item: NotificationItem;
96
+ btn: NotificationAction;
97
+ }): void;
98
+ onLanguage: (e: any) => void;
99
+ onNotificationLoadMore(): void;
100
+ private _changeCulture;
101
+ static ɵfac: i0.ɵɵFactoryDeclaration<BarsaShellbarComponent, never>;
102
+ static ɵcmp: i0.ɵɵComponentDeclaration<BarsaShellbarComponent, "bt-barsa-shellbar", never, { "cssCustomUrl": { "alias": "cssCustomUrl"; "required": false; }; "cssUrl": { "alias": "cssUrl"; "required": false; }; "allowAnonymous": { "alias": "allowAnonymous"; "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; }; "notificationCount": { "alias": "notificationCount"; "required": false; }; "notifcationLoaded": { "alias": "notifcationLoaded"; "required": false; }; "notificationLoading": { "alias": "notificationLoading"; "required": false; }; "notifications": { "alias": "notifications"; "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; }; "productSwitcher": { "alias": "productSwitcher"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; }, { "openNotificationPanel": "openNotificationPanel"; "openQuickAccessPanel": "openQuickAccessPanel"; "cultureChanged": "cultureChanged"; "notificationLoadMore": "notificationLoadMore"; "removeNotification": "removeNotification"; "notifiationActionClick": "notifiationActionClick"; "notificationViewed": "notificationViewed"; }, never, never, false, never>;
103
+ }
104
+ export {};