@dev-tcloud/tcloud-ui 6.3.0 → 6.4.0
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 +40 -9
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-body/tcloud-ui-modal-body.component.d.ts +5 -1
- package/lib/_modules/tcloud-ui-modal/services/tcloud-modal.service.d.ts +8 -0
- package/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TcloudModalService } from '../../services/tcloud-modal.service';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TCloudUiModalBodyComponent implements OnInit {
|
|
4
|
-
|
|
5
|
+
private tcloudModalService;
|
|
6
|
+
sticky: boolean;
|
|
7
|
+
constructor(tcloudModalService: TcloudModalService);
|
|
8
|
+
get isFooter(): any;
|
|
5
9
|
ngOnInit(): void;
|
|
6
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModalBodyComponent, never>;
|
|
7
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiModalBodyComponent, "tcloud-ui-modal-body", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -5,6 +5,7 @@ export declare class TcloudModalService {
|
|
|
5
5
|
private loading;
|
|
6
6
|
private param_mode;
|
|
7
7
|
private param_confirm;
|
|
8
|
+
private sticky;
|
|
8
9
|
private _stateClose;
|
|
9
10
|
stateClose$: Observable<boolean>;
|
|
10
11
|
private _stateConfirm;
|
|
@@ -15,13 +16,20 @@ export declare class TcloudModalService {
|
|
|
15
16
|
stateLoading$: Observable<boolean>;
|
|
16
17
|
private _stateMode;
|
|
17
18
|
stateMode$: Observable<string>;
|
|
19
|
+
private _stateSticky;
|
|
20
|
+
stateSticky$: Observable<boolean>;
|
|
18
21
|
toModal(action: 'open' | 'close'): void;
|
|
19
22
|
toRespConfirm(resp: boolean): void;
|
|
20
23
|
getParamConfirm(): IConfirm;
|
|
21
24
|
toConfirm(confirm: IConfirm): void;
|
|
22
25
|
toMode(mode: string): void;
|
|
26
|
+
setSticky(sticky: boolean): void;
|
|
27
|
+
getSticky(): boolean;
|
|
23
28
|
getLoading(): boolean;
|
|
24
29
|
setLoading(loading: boolean): void;
|
|
30
|
+
private _is_footer_signal;
|
|
31
|
+
readonly is_footer_signal: any;
|
|
32
|
+
set_is_footer_signal(v: boolean): void;
|
|
25
33
|
fixed_body(fixed: 'on' | 'off'): void;
|
|
26
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TcloudModalService, never>;
|
|
27
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<TcloudModalService>;
|
|
@@ -64,7 +64,9 @@ export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
|
|
|
64
64
|
leaveTransform: string;
|
|
65
65
|
};
|
|
66
66
|
};
|
|
67
|
-
|
|
67
|
+
private _sticky;
|
|
68
|
+
set sticky(v: boolean);
|
|
69
|
+
get sticky(): boolean;
|
|
68
70
|
/**
|
|
69
71
|
* window - string - nome referente ao tamanho do modal - não utilizar maxWidth se for utilizar window - default 500 (medium)
|
|
70
72
|
*/
|