@dev-tcloud/tcloud-ui 6.0.0 → 6.0.1

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.
@@ -0,0 +1,3 @@
1
+ export interface LayoutServiceInterface {
2
+ getLayout(): any;
3
+ }
@@ -4,6 +4,7 @@ import { TcloudModalService } from './services/tcloud-modal.service';
4
4
  import { IConfirm } from './tcloud-ui-modal';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
7
+ private _LayoutService;
7
8
  private tcloudModalService;
8
9
  /**
9
10
  * tcloud-ui-modal - Cria e exibe um modal
@@ -58,11 +59,13 @@ export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
58
59
  toConfirm: EventEmitter<boolean>;
59
60
  toCancel: EventEmitter<boolean>;
60
61
  toAction: EventEmitter<"close" | "cancel" | "confirmed">;
61
- constructor(tcloudModalService: TcloudModalService);
62
+ private layoutService;
63
+ constructor(_LayoutService: any, tcloudModalService: TcloudModalService);
64
+ get getLayout(): any;
62
65
  ngOnInit(): void;
63
66
  toClose(action?: any | undefined): void;
64
67
  checkIsOpen(): void;
65
68
  ngOnDestroy(): void;
66
- static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModalComponent, never>;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModalComponent, [{ optional: true; }, null]>;
67
70
  static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiModalComponent, "tcloud-ui-modal", never, { "confirm": { "alias": "confirm"; "required": false; }; "confirmText": { "alias": "confirmText"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "title": { "alias": "title"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "window": { "alias": "window"; "required": false; }; "open": { "alias": "open"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "openChange": "openChange"; "toConfirm": "toConfirm"; "toCancel": "toCancel"; "toAction": "toAction"; }, never, ["*"], true, never>;
68
71
  }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TCloudUiLayoutService {
3
+ private _LayoutService;
4
+ private layoutService;
5
+ private _layout;
6
+ readonly signal_layout: any;
7
+ constructor(_LayoutService: any);
8
+ getLayout(): string;
9
+ set_signal_layout(v: string): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiLayoutService, [{ optional: true; }]>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<TCloudUiLayoutService>;
12
+ }
@@ -4,6 +4,6 @@ export interface TCloudUiConfig {
4
4
  }
5
5
  export interface TCloudUiCustomServices {
6
6
  userService?: any;
7
- themeService?: any;
7
+ layoutService?: any;
8
8
  viewportService?: any;
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"
@@ -1,3 +0,0 @@
1
- export interface ThemeServiceInterface {
2
- getName(): any;
3
- }
@@ -1,12 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TCloudUiThemeService {
3
- private _ThemeService;
4
- private themeService;
5
- private _theme;
6
- readonly signal_theme: any;
7
- constructor(_ThemeService: any);
8
- getName(): string;
9
- set_signal_theme(v: string): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiThemeService, [{ optional: true; }]>;
11
- static ɵprov: i0.ɵɵInjectableDeclaration<TCloudUiThemeService>;
12
- }