@1024pix/pix-ui 54.14.0 → 54.14.1

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.
@@ -13,7 +13,13 @@
13
13
  </div>
14
14
  </th>
15
15
  {{else}}
16
- <td ...attributes class={{this.typeClass}}>
17
- {{yield to="cell"}}
18
- </td>
16
+ {{#if @isMainRow}}
17
+ <th scope="row" class={{this.typeClass}} ...attributes>
18
+ {{yield to="cell"}}
19
+ </th>
20
+ {{else}}
21
+ <td class={{this.typeClass}} ...attributes>
22
+ {{yield to="cell"}}
23
+ </td>
24
+ {{/if}}
19
25
  {{/if}}
@@ -1,5 +1,5 @@
1
1
  .pix-table-column {
2
2
  &--number{
3
- text-align: right;
3
+ text-align: left;
4
4
  }
5
5
  }
@@ -59,11 +59,17 @@
59
59
  align-items: center;
60
60
  }
61
61
 
62
- th {
62
+ th[scope='col'] {
63
+ font-weight: var(--pix-font-bold);
63
64
  text-align: start;
64
65
  vertical-align: middle;
65
66
  }
66
67
 
68
+ th[scope='row'] {
69
+ font-weight: var(--pix-font-normal);
70
+ }
71
+
72
+
67
73
  td, th {
68
74
  padding: var(--pix-spacing-6x) var(--pix-spacing-4x);
69
75
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/pix-ui",
3
- "version": "54.14.0",
3
+ "version": "54.14.1",
4
4
  "description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
5
5
  "keywords": [
6
6
  "ember-addon"