@dev-tcloud/tcloud-ui 2.1.6 → 2.1.7
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/esm2022/lib/_directives/currency/currency.directive.mjs +1 -5
- package/esm2022/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list-option/tcloud-ui-data-list-option.component.mjs +10 -4
- package/esm2022/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.component.mjs +3 -3
- package/esm2022/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.mjs +1 -1
- package/esm2022/lib/_modules/tcloud-ui-filters/components/range-date/range-date.component.mjs +2 -2
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +12 -10
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-accordion/tcloud-ui-accordion.component.d.ts +1 -1
- package/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list-option/tcloud-ui-data-list-option.component.d.ts +2 -1
- package/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.d.ts +1 -0
- package/lib/_modules/tcloud-ui-filters/components/range-date/range-date.component.d.ts +1 -1
- package/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.d.ts +1 -1
- package/package.json +1 -1
- package/scss/tcloud/custom/forms.scss +1 -1
|
@@ -12,7 +12,7 @@ export declare class TCloudUiAccordionComponent implements OnInit, OnDestroy {
|
|
|
12
12
|
private _show;
|
|
13
13
|
set show(v: boolean);
|
|
14
14
|
get show(): boolean;
|
|
15
|
-
onAction: EventEmitter<"
|
|
15
|
+
onAction: EventEmitter<"close" | "open">;
|
|
16
16
|
private _loading;
|
|
17
17
|
/**
|
|
18
18
|
* loading - boolean - Coloca o modal em modo de carregamento - default false
|
|
@@ -9,6 +9,7 @@ export declare class TCloudUiDataListOptionComponent implements OnInit, OnDestro
|
|
|
9
9
|
actived_value: any;
|
|
10
10
|
select_options: ISelectOptions;
|
|
11
11
|
private subscription_active;
|
|
12
|
+
disabled: boolean | undefined;
|
|
12
13
|
value: any | undefined;
|
|
13
14
|
selected: EventEmitter<any>;
|
|
14
15
|
constructor(dataListService: DataListService);
|
|
@@ -18,5 +19,5 @@ export declare class TCloudUiDataListOptionComponent implements OnInit, OnDestro
|
|
|
18
19
|
setSelectOptions(): void;
|
|
19
20
|
ngOnDestroy(): void;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiDataListOptionComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiDataListOptionComponent, "tcloud-ui-data-list-option", never, { "value": { "alias": "value"; "required": false; }; }, { "selected": "selected"; }, never, ["*"], false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiDataListOptionComponent, "tcloud-ui-data-list-option", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selected": "selected"; }, never, ["*"], false, never>;
|
|
22
23
|
}
|
|
@@ -19,7 +19,7 @@ export declare class TCloudUiRangeDateComponent implements OnInit {
|
|
|
19
19
|
constructor();
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
setOptionsDateTime(): void;
|
|
22
|
-
onChangeOptionsDateTime(event
|
|
22
|
+
onChangeOptionsDateTime(event?: any): void;
|
|
23
23
|
getTransformDate(dt: any): any;
|
|
24
24
|
onChangeStartDateTime(event: any): void;
|
|
25
25
|
onChangeStopDateTime(event: any): void;
|
|
@@ -57,7 +57,7 @@ export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
|
|
|
57
57
|
openChange: EventEmitter<boolean>;
|
|
58
58
|
toConfirm: EventEmitter<boolean>;
|
|
59
59
|
toCancel: EventEmitter<boolean>;
|
|
60
|
-
toAction: EventEmitter<"
|
|
60
|
+
toAction: EventEmitter<"cancel" | "close" | "confirmed">;
|
|
61
61
|
constructor(tcloudModalService: TcloudModalService);
|
|
62
62
|
ngOnInit(): void;
|
|
63
63
|
toClose(action?: any | undefined): void;
|
package/package.json
CHANGED