@dev-tcloud/tcloud-ui 0.0.71 → 0.0.73
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/esm2020/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.component.mjs +16 -4
- package/esm2020/lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-footer/tcloud-ui-modal-footer.component.mjs +2 -1
- package/esm2020/lib/_modules/tcloud-ui-modal/services/tcloud-modal.service.mjs +15 -1
- package/esm2020/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.mjs +5 -16
- package/esm2020/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.component.mjs +16 -4
- package/esm2020/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.module.mjs +8 -4
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +113 -84
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +111 -82
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.component.d.ts +3 -1
- package/lib/_modules/tcloud-ui-modal/services/tcloud-modal.service.d.ts +1 -0
- package/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.d.ts +0 -1
- package/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.component.d.ts +3 -1
- package/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.module.d.ts +2 -1
- package/package.json +1 -1
|
@@ -20,6 +20,8 @@ export declare class TCloudUiDataListComponent implements OnInit, OnDestroy, Aft
|
|
|
20
20
|
set loading(v: boolean);
|
|
21
21
|
get loading(): boolean;
|
|
22
22
|
search: boolean;
|
|
23
|
+
listItens: any | undefined;
|
|
24
|
+
border: boolean;
|
|
23
25
|
onInputChange: EventEmitter<ISelectOptions>;
|
|
24
26
|
onChange: EventEmitter<ISelectOptions>;
|
|
25
27
|
private _ngModel;
|
|
@@ -61,5 +63,5 @@ export declare class TCloudUiDataListComponent implements OnInit, OnDestroy, Aft
|
|
|
61
63
|
registerOnChange(fn: any): void;
|
|
62
64
|
registerOnTouched(fn: any): void;
|
|
63
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiDataListComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiDataListComponent, "tcloud-ui-data-list", never, { "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "search": "search"; "ngModel": "ngModel"; }, { "onInputChange": "onInputChange"; "onChange": "onChange"; "ngModelChange": "ngModelChange"; }, never, ["*"], false>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiDataListComponent, "tcloud-ui-data-list", never, { "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "search": "search"; "listItens": "listItens"; "border": "border"; "ngModel": "ngModel"; }, { "onInputChange": "onInputChange"; "onChange": "onChange"; "ngModelChange": "ngModelChange"; }, never, ["*"], false>;
|
|
65
67
|
}
|
|
@@ -18,6 +18,7 @@ export declare class TcloudModalService {
|
|
|
18
18
|
toConfirm(confirm: IConfirm): void;
|
|
19
19
|
getLoading(): boolean | undefined;
|
|
20
20
|
setLoading(loading: boolean): void;
|
|
21
|
+
fixed_body(fixed: 'on' | 'off'): void;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TcloudModalService, never>;
|
|
22
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<TcloudModalService>;
|
|
23
24
|
}
|
|
@@ -62,7 +62,6 @@ export declare class TCloudUiModalComponent implements OnInit, OnDestroy {
|
|
|
62
62
|
ngOnInit(): void;
|
|
63
63
|
toClose(action?: any | undefined): void;
|
|
64
64
|
checkIsOpen(): void;
|
|
65
|
-
fixed_body(fixed: 'on' | 'off'): void;
|
|
66
65
|
ngOnDestroy(): void;
|
|
67
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModalComponent, never>;
|
|
68
67
|
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiModalComponent, "tcloud-ui-modal", never, { "confirm": "confirm"; "confirmText": "confirmText"; "autoClose": "autoClose"; "title": "title"; "maxWidth": "maxWidth"; "window": "window"; "open": "open"; "loading": "loading"; }, { "openChange": "openChange"; "toConfirm": "toConfirm"; "toCancel": "toCancel"; "toAction": "toAction"; }, never, ["*"], false>;
|
|
@@ -12,6 +12,7 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
|
|
|
12
12
|
show_itens: boolean;
|
|
13
13
|
input_items: string;
|
|
14
14
|
items: string[];
|
|
15
|
+
listItens: any | undefined;
|
|
15
16
|
delimiter: string;
|
|
16
17
|
placeholder: string;
|
|
17
18
|
disabled: boolean;
|
|
@@ -30,6 +31,7 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
|
|
|
30
31
|
item_width(text: any): {
|
|
31
32
|
'max-width': string;
|
|
32
33
|
};
|
|
34
|
+
add_items_by_data_list(e: any): void;
|
|
33
35
|
add_items(): void;
|
|
34
36
|
set_placeholder_list(): void;
|
|
35
37
|
removeItem(item: any, index: number): void;
|
|
@@ -55,5 +57,5 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
|
|
|
55
57
|
validate(c: FormControl): any;
|
|
56
58
|
ngOnDestroy(): void;
|
|
57
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiplesValuesComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiplesValuesComponent, "tcloud-ui-multiples-values", never, { "delimiter": "delimiter"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "required": "required"; "search": "search"; "uppercase": "uppercase"; "lowercase": "lowercase"; }, {}, never, never, false>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiplesValuesComponent, "tcloud-ui-multiples-values", never, { "listItens": "listItens"; "delimiter": "delimiter"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "required": "required"; "search": "search"; "uppercase": "uppercase"; "lowercase": "lowercase"; }, {}, never, never, false>;
|
|
59
61
|
}
|
|
@@ -2,8 +2,9 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./tcloud-ui-multiples-values.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../tcloud-ui-data-list/tcloud-ui-data-list.module";
|
|
5
6
|
export declare class TCloudUiMultiplesValuesModule {
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiplesValuesModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiMultiplesValuesModule, [typeof i1.TCloudUiMultiplesValuesComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule], [typeof i1.TCloudUiMultiplesValuesComponent]>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiMultiplesValuesModule, [typeof i1.TCloudUiMultiplesValuesComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.TCloudUiDataListModule], [typeof i1.TCloudUiMultiplesValuesComponent]>;
|
|
8
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiMultiplesValuesModule>;
|
|
9
10
|
}
|