@dev-tcloud/tcloud-ui 6.0.1 → 6.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.
@@ -1,3 +1,5 @@
1
+ import { Observable } from "rxjs";
1
2
  export interface LayoutServiceInterface {
2
- getLayout(): any;
3
+ getLayout(): Observable<string | null>;
4
+ getCurrentLayout(): string;
3
5
  }
@@ -61,7 +61,7 @@ export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
61
61
  toAction: EventEmitter<"close" | "cancel" | "confirmed">;
62
62
  private layoutService;
63
63
  constructor(_LayoutService: any, tcloudModalService: TcloudModalService);
64
- get getLayout(): any;
64
+ get layout(): string;
65
65
  ngOnInit(): void;
66
66
  toClose(action?: any | undefined): void;
67
67
  checkIsOpen(): void;
@@ -5,7 +5,7 @@ export declare class TCloudUiLayoutService {
5
5
  private _layout;
6
6
  readonly signal_layout: any;
7
7
  constructor(_LayoutService: any);
8
- getLayout(): string;
8
+ get layout(): string;
9
9
  set_signal_layout(v: string): void;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiLayoutService, [{ optional: true; }]>;
11
11
  static ɵprov: i0.ɵɵInjectableDeclaration<TCloudUiLayoutService>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"