@dev-tcloud/tcloud-ui 0.1.10 → 0.1.12

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.
@@ -32,9 +32,6 @@ export declare class TCloudUiMultiInputComponent implements OnInit, OnDestroy, V
32
32
  registerOnTouched(fn: any): void;
33
33
  toSetDefault(value: any): void;
34
34
  validate(c: FormControl): any;
35
- item_width(text: any): {
36
- 'max-width': string;
37
- };
38
35
  ngOnDestroy(): void;
39
36
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiInputComponent, never>;
40
37
  static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiInputComponent, "tcloud-ui-multi-input", never, { "tcList": "tcList"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "required": "required"; }, { "tcChange": "tcChange"; "onChange": "onChange"; }, never, never, false>;
@@ -31,9 +31,6 @@ export declare class TCloudUiMultiSelectComponent implements OnInit, OnDestroy,
31
31
  registerOnTouched(fn: any): void;
32
32
  toSetDefault(value: any): void;
33
33
  validate(c: FormControl): any;
34
- item_width(text: any): {
35
- 'max-width': string;
36
- };
37
34
  ngOnDestroy(): void;
38
35
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiSelectComponent, never>;
39
36
  static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiSelectComponent, "tcloud-ui-multi-select", never, { "tcList": "tcList"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "required": "required"; }, { "tcChange": "tcChange"; "onChange": "onChange"; }, never, never, false>;
@@ -15,6 +15,7 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
15
15
  private _listItems;
16
16
  set listItems(v: any | undefined);
17
17
  get listItems(): any | undefined;
18
+ pattern: RegExp | any;
18
19
  delimiter: string;
19
20
  placeholder: string;
20
21
  disabled: boolean;
@@ -30,9 +31,6 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
30
31
  check_is_valid(): boolean;
31
32
  generateID(): string;
32
33
  remove_duplicates(items: string[]): string[];
33
- item_width(text: any): {
34
- 'max-width': string;
35
- };
36
34
  add_items_by_data_list(e: any): void;
37
35
  add_items(): void;
38
36
  set_placeholder_list(): void;
@@ -45,6 +43,7 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
45
43
  resolve_position_dropdown(open: boolean): void;
46
44
  clearTextSearch(): void;
47
45
  toSearch(e: any): void;
46
+ toEnterKey(input_items: string): void;
48
47
  onChangeTouched(): void;
49
48
  toSetDefault(v: any): void;
50
49
  innerValue: any | undefined;
@@ -59,5 +58,5 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
59
58
  validate(c: FormControl): any;
60
59
  ngOnDestroy(): void;
61
60
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiMultiplesValuesComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiplesValuesComponent, "tcloud-ui-multiples-values", never, { "listItems": "listItems"; "delimiter": "delimiter"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "required": "required"; "search": "search"; "uppercase": "uppercase"; "lowercase": "lowercase"; }, {}, never, never, false>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiMultiplesValuesComponent, "tcloud-ui-multiples-values", never, { "listItems": "listItems"; "pattern": "pattern"; "delimiter": "delimiter"; "placeholder": "placeholder"; "disabled": "disabled"; "loading": "loading"; "required": "required"; "search": "search"; "uppercase": "uppercase"; "lowercase": "lowercase"; }, {}, never, never, false>;
63
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.1.0",
6
6
  "@angular/core": "^14.1.0"
@@ -22,7 +22,7 @@
22
22
  }
23
23
 
24
24
  .tc-card-title {
25
- color: var(tc-primary);
25
+ color: var(--tc-primary);
26
26
  font-size: 16px;
27
27
  font-weight: normal;
28
28
  text-transform: uppercase;
@@ -24,12 +24,12 @@
24
24
 
25
25
 
26
26
  &:focus {
27
- border-color: var(tc-primary);
27
+ border-color: var(--tc-primary);
28
28
  box-shadow: none;
29
29
  }
30
30
 
31
31
  &:focus-visible {
32
- outline: 1px solid var(tc-primary);
32
+ outline: 1px solid var(--tc-primary);
33
33
  border-radius: 3px;
34
34
  }
35
35
  }