@fkui/design 5.37.0 → 5.37.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fkui/design",
3
- "version": "5.37.0",
3
+ "version": "5.37.3",
4
4
  "description": "fkui design",
5
5
  "keywords": [
6
6
  "fkui",
@@ -35,7 +35,7 @@
35
35
  "runner": "jest-light-runner"
36
36
  },
37
37
  "devDependencies": {
38
- "@fkui/css-variables": "5.37.0",
38
+ "@fkui/css-variables": "5.37.2",
39
39
  "@fkui/icon-lib-default": "5.37.0",
40
40
  "autoprefixer": "10.4.20",
41
41
  "cssnano": "7.0.6",
@@ -50,7 +50,7 @@
50
50
  "svgo": "3.3.2"
51
51
  },
52
52
  "peerDependencies": {
53
- "@fkui/css-variables": "^5.37.0",
53
+ "@fkui/css-variables": "^5.36.0",
54
54
  "sass": "^1.40",
55
55
  "stylelint": ">= 14"
56
56
  },
@@ -66,5 +66,5 @@
66
66
  "node": ">= 20",
67
67
  "npm": ">= 7"
68
68
  },
69
- "gitHead": "8ba82e02a3d8d293ce0e8601424dbd039df44306"
69
+ "gitHead": "4854b4508f6e20b96392a7fcda6c76e5d6217fc2"
70
70
  }
@@ -240,7 +240,7 @@ $table-input-offset-horizontal: 0.25rem;
240
240
  th {
241
241
  padding: densify(var(--f-table-body-row-padding)) var(--f-table-body-row-padding);
242
242
  border-bottom: $table-row-separator;
243
- white-space: nowrap;
243
+ vertical-align: top;
244
244
  }
245
245
 
246
246
  td {
@@ -280,10 +280,19 @@ $table-input-offset-horizontal: 0.25rem;
280
280
  padding-left: var(--f-button-discrete-table-column-action-padding-left);
281
281
  /* stylelint-enable declaration-block-no-redundant-longhand-properties */
282
282
  min-width: 24px;
283
+ width: max-content;
284
+ }
285
+
286
+ &--action .button--tertiary {
287
+ margin: var(--f-button-tertiary-table-column-action-margin);
288
+ min-width: 24px;
289
+ width: max-content;
283
290
  }
284
291
 
285
- &--action .button__icon {
292
+ &--action .button--discrete .button__icon,
293
+ &--action .button--tertiary .button__icon {
286
294
  margin: var(--f-button-discrete-table-column-action-icon-margin);
295
+ transform: translate(0, 10%);
287
296
  }
288
297
  }
289
298
  }
@@ -367,6 +376,13 @@ $table-input-offset-horizontal: 0.25rem;
367
376
  // move margin from <table> to the wrapper div
368
377
  margin: $table-margin;
369
378
 
379
+ thead th,
380
+ thead td,
381
+ tbody th,
382
+ tbody td {
383
+ white-space: nowrap;
384
+ }
385
+
370
386
  #{$TABLE_SELECTOR} {
371
387
  margin: 0;
372
388
  }