@dev-tcloud/tcloud-ui 6.0.0 → 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.
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +21 -10
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_interfaces/layout.service.interface.d.ts +5 -0
- package/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.d.ts +5 -2
- package/lib/_services/tcloud-ui-layout.services.d.ts +12 -0
- package/lib/tcloud-ui.config.d.ts +1 -1
- package/package.json +1 -1
- package/lib/_interfaces/theme.service.interface.d.ts +0 -3
- package/lib/_services/tcloud-ui-theme.services.d.ts +0 -12
|
@@ -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
|
-
|
|
62
|
+
private layoutService;
|
|
63
|
+
constructor(_LayoutService: any, tcloudModalService: TcloudModalService);
|
|
64
|
+
get layout(): string;
|
|
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,
|
|
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
|
+
get layout(): string;
|
|
9
|
+
set_signal_layout(v: string): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiLayoutService, [{ optional: true; }]>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TCloudUiLayoutService>;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -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
|
-
}
|