@dev-tcloud/tcloud-ui 7.0.4 → 7.0.6
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/docs/tcloud-ui-multi-input.md +18 -0
- package/docs/tcloud-ui-multiples-values.md +66 -2
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +46 -21
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/js/tcloud-ui-app.js +49 -49
- package/package.json +12 -3
- package/types/dev-tcloud-tcloud-ui.d.ts +10 -2
package/package.json
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-tcloud/tcloud-ui",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/
|
|
6
|
-
"@angular/
|
|
5
|
+
"@angular/animations": "^21.0.0",
|
|
6
|
+
"@angular/common": "^21.0.0",
|
|
7
|
+
"@angular/core": "^21.0.0",
|
|
8
|
+
"@angular/elements": "^21.0.0",
|
|
9
|
+
"@angular/forms": "^21.0.0",
|
|
10
|
+
"@angular/router": "^21.0.0",
|
|
7
11
|
"monaco-editor": "^0.55.1"
|
|
8
12
|
},
|
|
13
|
+
"peerDependenciesMeta": {
|
|
14
|
+
"monaco-editor": {
|
|
15
|
+
"optional": true
|
|
16
|
+
}
|
|
17
|
+
},
|
|
9
18
|
"dependencies": {
|
|
10
19
|
"highlight.js": "^11.9.0",
|
|
11
20
|
"ngx-markdown": "^21.3.0",
|
|
@@ -918,6 +918,7 @@ declare class TCloudUiPopoverComponent {
|
|
|
918
918
|
|
|
919
919
|
declare class TCloudUiMultiInputComponent implements OnInit, OnDestroy, Validator {
|
|
920
920
|
input_value: any;
|
|
921
|
+
id: string;
|
|
921
922
|
tcList: any[] | undefined;
|
|
922
923
|
placeholder: string;
|
|
923
924
|
disabled: boolean;
|
|
@@ -925,6 +926,7 @@ declare class TCloudUiMultiInputComponent implements OnInit, OnDestroy, Validato
|
|
|
925
926
|
required: string | undefined;
|
|
926
927
|
maxWidthLabel: string | undefined;
|
|
927
928
|
showInput: boolean;
|
|
929
|
+
autocompleteitems: string[];
|
|
928
930
|
values: any[] | undefined;
|
|
929
931
|
count_actives: number;
|
|
930
932
|
use_validation_required: boolean;
|
|
@@ -932,6 +934,7 @@ declare class TCloudUiMultiInputComponent implements OnInit, OnDestroy, Validato
|
|
|
932
934
|
tcChange: EventEmitter<any[]>;
|
|
933
935
|
constructor();
|
|
934
936
|
ngOnInit(): void;
|
|
937
|
+
generateID(): string;
|
|
935
938
|
addItem(item: any): void;
|
|
936
939
|
removeItem(item: any, index: number): void;
|
|
937
940
|
private toChange;
|
|
@@ -951,7 +954,7 @@ declare class TCloudUiMultiInputComponent implements OnInit, OnDestroy, Validato
|
|
|
951
954
|
validate(c: FormControl): any;
|
|
952
955
|
ngOnDestroy(): void;
|
|
953
956
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiInputComponent, never>;
|
|
954
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiInputComponent, "tcloud-ui-multi-input", never, { "tcList": { "alias": "tcList"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "required": { "alias": "required"; "required": false; }; "maxWidthLabel": { "alias": "maxWidthLabel"; "required": false; }; "showInput": { "alias": "showInput"; "required": false; }; }, { "tcChange": "tcChange"; "onChange": "onChange"; }, never, never, true, never>;
|
|
957
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiInputComponent, "tcloud-ui-multi-input", never, { "tcList": { "alias": "tcList"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "required": { "alias": "required"; "required": false; }; "maxWidthLabel": { "alias": "maxWidthLabel"; "required": false; }; "showInput": { "alias": "showInput"; "required": false; }; "autocompleteitems": { "alias": "autocompleteitems"; "required": false; }; }, { "tcChange": "tcChange"; "onChange": "onChange"; }, never, never, true, never>;
|
|
955
958
|
}
|
|
956
959
|
|
|
957
960
|
declare class TCloudUiMultiSelectComponent implements OnInit, OnDestroy, Validator {
|
|
@@ -1281,6 +1284,7 @@ declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestroy, Val
|
|
|
1281
1284
|
openValuesInChange: boolean;
|
|
1282
1285
|
useBtnAdd: boolean;
|
|
1283
1286
|
pattern: RegExp | any;
|
|
1287
|
+
type: string;
|
|
1284
1288
|
delimiter: string;
|
|
1285
1289
|
placeholder: string;
|
|
1286
1290
|
disabled: boolean;
|
|
@@ -1289,15 +1293,18 @@ declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestroy, Val
|
|
|
1289
1293
|
search: boolean;
|
|
1290
1294
|
uppercase: boolean;
|
|
1291
1295
|
lowercase: boolean;
|
|
1296
|
+
autocompleteitems: string[];
|
|
1292
1297
|
maxWidthLabel: string | undefined;
|
|
1293
1298
|
tcChange: EventEmitter<any>;
|
|
1294
1299
|
use_validation_required: boolean;
|
|
1300
|
+
pattern_error: boolean;
|
|
1295
1301
|
placeholder_list: string;
|
|
1296
1302
|
constructor();
|
|
1297
1303
|
ngOnInit(): void;
|
|
1298
1304
|
check_is_valid(): boolean;
|
|
1299
1305
|
generateID(): string;
|
|
1300
1306
|
remove_duplicates(items: string[]): string[];
|
|
1307
|
+
get_effective_pattern(): RegExp | any;
|
|
1301
1308
|
add_items_by_data_list(e: any): void;
|
|
1302
1309
|
add_items(): void;
|
|
1303
1310
|
set_placeholder_list(): void;
|
|
@@ -1311,6 +1318,7 @@ declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestroy, Val
|
|
|
1311
1318
|
clearTextSearch(): void;
|
|
1312
1319
|
toSearch(e: any): void;
|
|
1313
1320
|
toEnterKey(input_items: string | string[]): void;
|
|
1321
|
+
onInputChange(): void;
|
|
1314
1322
|
checkIsDisabled(item: any): boolean;
|
|
1315
1323
|
onChange(): void;
|
|
1316
1324
|
onChangeTouched(): void;
|
|
@@ -1327,7 +1335,7 @@ declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestroy, Val
|
|
|
1327
1335
|
validate(c: FormControl): any;
|
|
1328
1336
|
ngOnDestroy(): void;
|
|
1329
1337
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiplesValuesComponent, never>;
|
|
1330
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiplesValuesComponent, "tcloud-ui-multiples-values", never, { "listItems": { "alias": "listItems"; "required": false; }; "openValuesInChange": { "alias": "openValuesInChange"; "required": false; }; "useBtnAdd": { "alias": "useBtnAdd"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "delimiter": { "alias": "delimiter"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "required": { "alias": "required"; "required": false; }; "search": { "alias": "search"; "required": false; }; "uppercase": { "alias": "uppercase"; "required": false; }; "lowercase": { "alias": "lowercase"; "required": false; }; "maxWidthLabel": { "alias": "maxWidthLabel"; "required": false; }; }, { "tcChange": "tcChange"; }, never, never, true, never>;
|
|
1338
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiplesValuesComponent, "tcloud-ui-multiples-values", never, { "listItems": { "alias": "listItems"; "required": false; }; "openValuesInChange": { "alias": "openValuesInChange"; "required": false; }; "useBtnAdd": { "alias": "useBtnAdd"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "type": { "alias": "type"; "required": false; }; "delimiter": { "alias": "delimiter"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "required": { "alias": "required"; "required": false; }; "search": { "alias": "search"; "required": false; }; "uppercase": { "alias": "uppercase"; "required": false; }; "lowercase": { "alias": "lowercase"; "required": false; }; "autocompleteitems": { "alias": "autocompleteitems"; "required": false; }; "maxWidthLabel": { "alias": "maxWidthLabel"; "required": false; }; }, { "tcChange": "tcChange"; }, never, never, true, never>;
|
|
1331
1339
|
}
|
|
1332
1340
|
|
|
1333
1341
|
declare class TCloudUiProgressBarComponent implements OnInit {
|