@dev-tcloud/tcloud-ui 6.27.2 → 6.28.0

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.
@@ -8,7 +8,7 @@ export declare class TCloudUiTabHeadComponent implements OnInit {
8
8
  get scroll(): boolean;
9
9
  ID: string;
10
10
  background: boolean;
11
- backgroundColor: '#FFFFFF' | '#F1F1F1' | 'white' | 'transparent';
11
+ backgroundColor: string;
12
12
  private _bottom_line;
13
13
  set bottom_line(bottom_line: boolean);
14
14
  get bottom_line(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "6.27.2",
3
+ "version": "6.28.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.20",
6
6
  "@angular/core": "^19.2.20",
@@ -7,7 +7,7 @@
7
7
  {
8
8
  padding: 1rem;
9
9
  box-sizing: border-box;
10
- background-color: #F2F6F9;
10
+ background-color: var(--c-neutral-100);
11
11
  border-bottom: 1px solid var(--c-neutral-400);
12
12
 
13
13
  &.center
@@ -77,12 +77,12 @@
77
77
  text-align: left !important;
78
78
  }
79
79
  table.tc-table-responsive tr {
80
- border-bottom: 3px solid #ddd;
80
+ border-bottom: 3px solid var(--c-neutral-300);
81
81
  display: block;
82
82
  margin-bottom: .625em;
83
83
  }
84
84
  table.tc-table-responsive td {
85
- border-bottom: 1px solid #ddd;
85
+ border-bottom: 1px solid var(--c-neutral-300);
86
86
  display: block;
87
87
  font-size: .8em;
88
88
  text-align: right !important;
@@ -105,6 +105,6 @@
105
105
 
106
106
  .tc-table-striped{
107
107
  tr:nth-child(odd) {
108
- background-color: #EAEAEA;
108
+ background-color: var(--c-neutral-200);
109
109
  }
110
110
  }