@swiftwc/ui 0.0.0-dev.55 → 0.0.0-dev.56

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.
@@ -4513,6 +4513,22 @@
4513
4513
  place-self: end;
4514
4514
  grid-column: 1/-1;
4515
4515
  }
4516
+ :where(table-view[preferred-compact-template="title:trailing"] > [is=table-row]) {
4517
+ grid-template-columns: 1fr 1fr;
4518
+ grid-template-rows: repeat(2, auto);
4519
+ grid-template-areas: "title trailing" "subtitle _";
4520
+ }
4521
+ :where(table-view[preferred-compact-template="title:trailing"] > [is=table-row] > :nth-child(-n+2)) {
4522
+ display: grid;
4523
+ }
4524
+ :where(table-view[preferred-compact-template="title:trailing"] > [is=table-row] > :nth-child(1)) {
4525
+ grid-area: title;
4526
+ }
4527
+ :where(table-view[preferred-compact-template="title:trailing"] > [is=table-row] > :nth-child(2)) {
4528
+ grid-area: trailing;
4529
+ place-self: end;
4530
+ grid-column: 1/-1;
4531
+ }
4516
4532
  :where(table-view[preferred-compact-template="*"] > [is=table-row] > :nth-child(n+2)) {
4517
4533
  display: grid;
4518
4534
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swiftwc/ui",
3
- "version": "0.0.0-dev.55",
3
+ "version": "0.0.0-dev.56",
4
4
  "description": "Elegant SwiftUI-inspired web components for standalone web apps and web extensions.",
5
5
  "publishConfig": {
6
6
  "access": "public"