barsa-tiles 2.3.164 → 2.3.167

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "barsa-tiles",
3
- "version": "2.3.164",
3
+ "version": "2.3.167",
4
4
  "peerDependencies": {
5
- "@angular/core": "^21.2.0",
6
- "@angular/common": "^21.2.0",
5
+ "@angular/core": "^22.0.8",
6
+ "@angular/common": "^22.0.8",
7
7
  "barsa-novin-ray-core": "*",
8
8
  "barsa-sap-ui": "*",
9
9
  "barsa-echarts": "*"
@@ -131,10 +131,10 @@ declare class TilesService {
131
131
  readonly userInfo$: Observable<UserInfo | null>;
132
132
  readonly componentSettings$: Observable<MetaobjectDataModel>;
133
133
  readonly homeAppTileGroupsSig: i0.WritableSignal<AppTileGroup[]>;
134
- readonly userInfoSig: i0.WritableSignal<UserInfo>;
134
+ readonly userInfoSig: i0.WritableSignal<UserInfo | null>;
135
135
  readonly editHomeSig: i0.WritableSignal<boolean>;
136
- readonly shellbarSig: i0.WritableSignal<MetaobjectDataModel>;
137
- readonly componentSettingsSig: i0.WritableSignal<MetaobjectDataModel>;
136
+ readonly shellbarSig: i0.WritableSignal<MetaobjectDataModel | null>;
137
+ readonly componentSettingsSig: i0.WritableSignal<MetaobjectDataModel | null>;
138
138
  private readonly _destroyRef;
139
139
  private readonly _pinTilesSource;
140
140
  private readonly _store;
@@ -231,7 +231,7 @@ declare abstract class BaseTileComponent<T extends BaseTileSetting> extends Tile
231
231
  }
232
232
 
233
233
  declare abstract class BaseBtTileComponent<T extends BaseTileSetting> extends BaseTileComponent<T> implements OnInit {
234
- isDark$: rxjs.Observable<boolean>;
234
+ isDark$: rxjs.Observable<boolean | null>;
235
235
  _btTitleElementRef: ElementRef;
236
236
  ngOnInit(): void;
237
237
  ngOnChanges(changes: SimpleChanges): void;
@@ -965,7 +965,7 @@ declare class ShellbarComponent extends BaseComponent implements OnInit {
965
965
  settings: MetaobjectDataModel;
966
966
  deviceSize$: Observable<AbbrevationDeviceSize>;
967
967
  user: ShellbarUser;
968
- suggestions: any[];
968
+ suggestions: never[];
969
969
  productMenuItems1: ShellbarMenuItem[];
970
970
  userLoggedIn$: Observable<boolean>;
971
971
  cssUrl$: Observable<SafeResourceUrl | null>;
@@ -996,6 +996,7 @@ declare class ShellbarComponent extends BaseComponent implements OnInit {
996
996
  compact: string;
997
997
  } | null>;
998
998
  protected _applicationCtrlrService: ApplicationCtrlrService;
999
+ protected _document: Document;
999
1000
  private _router;
1000
1001
  private _renderer2;
1001
1002
  private _bbbTranslatePipe;