@haiilo/catalyst 12.3.5 → 12.4.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.
@@ -2122,6 +2122,27 @@ code {
2122
2122
  margin: calc(2rem * var(--cat-article-spacer, 1)) 0;
2123
2123
  }
2124
2124
 
2125
+ /**
2126
+ * Auto-generated file. Do not edit directly.
2127
+ */
2128
+ /* stylelint-disable value-keyword-case */
2129
+ /* stylelint-enable value-keyword-case */
2130
+ .cat-table th {
2131
+ font-weight: 600;
2132
+ border-bottom: 2px solid rgb(var(--cat-border-color, 235, 236, 240));
2133
+ text-align: left;
2134
+ vertical-align: bottom;
2135
+ }
2136
+ .cat-table tr {
2137
+ border-bottom: 1px solid rgb(var(--cat-border-color, 235, 236, 240));
2138
+ }
2139
+ .cat-table tr > * {
2140
+ padding: 1rem 0.25rem;
2141
+ }
2142
+ .cat-table tr td {
2143
+ vertical-align: top;
2144
+ }
2145
+
2125
2146
  /**
2126
2147
  * Auto-generated file. Do not edit directly.
2127
2148
  */
@@ -0,0 +1,22 @@
1
+ @use '../variables';
2
+
3
+ .cat-table {
4
+ th {
5
+ font-weight: 600;
6
+ border-bottom: 2px solid variables.cat-token('color.ui.border.default');
7
+ text-align: left;
8
+ vertical-align: bottom;
9
+ }
10
+
11
+ tr {
12
+ border-bottom: 1px solid variables.cat-token('color.ui.border.default');
13
+
14
+ > * {
15
+ padding: 1rem 0.25rem;
16
+ }
17
+
18
+ td {
19
+ vertical-align: top;
20
+ }
21
+ }
22
+ }
@@ -19,6 +19,7 @@
19
19
  @import 'core/nav';
20
20
  @import 'core/notification';
21
21
  @import 'core/typography';
22
+ @import 'core/table';
22
23
 
23
24
  // -- Utils
24
25
  @import 'utils/border';
@@ -0,0 +1,22 @@
1
+ @use '../variables';
2
+
3
+ .cat-table {
4
+ th {
5
+ font-weight: 600;
6
+ border-bottom: 2px solid variables.cat-token('color.ui.border.default');
7
+ text-align: left;
8
+ vertical-align: bottom;
9
+ }
10
+
11
+ tr {
12
+ border-bottom: 1px solid variables.cat-token('color.ui.border.default');
13
+
14
+ > * {
15
+ padding: 1rem 0.25rem;
16
+ }
17
+
18
+ td {
19
+ vertical-align: top;
20
+ }
21
+ }
22
+ }
@@ -19,6 +19,7 @@
19
19
  @import 'core/nav';
20
20
  @import 'core/notification';
21
21
  @import 'core/typography';
22
+ @import 'core/table';
22
23
 
23
24
  // -- Utils
24
25
  @import 'utils/border';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haiilo/catalyst",
3
- "version": "12.3.5",
3
+ "version": "12.4.0",
4
4
  "description": "Catalyst Design System",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -39,7 +39,7 @@
39
39
  "sanitize.css": "13.0.0",
40
40
  "tabbable": "6.2.0",
41
41
  "toastify-js": "1.12.0",
42
- "@haiilo/catalyst-tokens": "12.3.5"
42
+ "@haiilo/catalyst-tokens": "12.4.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@babel/core": "^7.24.7",