@dev-tcloud/tcloud-ui 2.4.10 → 2.4.11

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.
@@ -48,7 +48,8 @@ export declare class TCloudUiMultiplesValuesComponent implements OnInit, OnDestr
48
48
  resolve_position_dropdown(open: boolean): void;
49
49
  clearTextSearch(): void;
50
50
  toSearch(e: any): void;
51
- toEnterKey(input_items: string): void;
51
+ toEnterKey(input_items: string | string[]): void;
52
+ checkIsDisabled(item: any): boolean;
52
53
  onChange(): void;
53
54
  onChangeTouched(): void;
54
55
  toSetDefault(v: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "2.4.10",
3
+ "version": "2.4.11",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0"
@@ -1,3 +1,10 @@
1
+ // ---------------------------------
2
+ // Forms
3
+ // ---------------------------------
4
+ // ---------------------------------
5
+ // Forms
6
+ // ---------------------------------
7
+
1
8
  .tc-form-control{
2
9
  display: block;
3
10
  width: 100%;
@@ -15,6 +22,7 @@
15
22
  border-radius: .25rem;
16
23
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
17
24
  height: 40px;
25
+ cursor: pointer;
18
26
 
19
27
  &:focus {
20
28
  border-color: var(--tc-primary);
@@ -43,13 +51,12 @@ select.tc-form-control{
43
51
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
44
52
  background-repeat: no-repeat;
45
53
  background-position: right .75rem center;
46
- background-size: 16px 12px;
54
+ background-size: 16px 12px;
47
55
 
48
- border: 1px solid #A2A2A2;
56
+ border: 1px solid var(--tc-gray-300);
49
57
  border-radius: 3px;
50
58
  color: var(--cinza);
51
59
  font-family: "Open Sans";
52
- font-size: 16px;
53
60
  height: 40px !important;
54
61
  padding: 0 10px;
55
62
 
@@ -67,8 +74,8 @@ select.tc-form-control{
67
74
  button{
68
75
  align-self: end;
69
76
  }
70
- }
77
+ }
71
78
 
72
79
  .tc-group-input-table td:last-child button {
73
80
  color: var(--cinza);
74
- }
81
+ }