@planningcenter/tapestry 3.8.1-rc.0 → 3.8.1-rc.2

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/dist/unstable.css CHANGED
@@ -4257,9 +4257,13 @@ tds-sidenav-section:not(.hydrated) > [slot="ssr"]{
4257
4257
  }
4258
4258
  .tds-dropdown-item{
4259
4259
  --tds-dropdown-item-color:var(--t-text-color);
4260
+ --tds-dropdown-item-row-gap:0;
4261
+ --tds-dropdown-item-column-gap:var(--t-spacing-1);
4260
4262
 
4261
4263
  display:flex;
4262
- gap:var(--t-spacing-1);
4264
+ row-gap:var(--tds-dropdown-item-row-gap);
4265
+ -moz-column-gap:var(--tds-dropdown-item-column-gap);
4266
+ column-gap:var(--tds-dropdown-item-column-gap);
4263
4267
  align-items:center;
4264
4268
  padding-block:var(--t-spacing-1);
4265
4269
  padding-inline:var(--t-spacing-2);
@@ -4306,12 +4310,16 @@ a.tds-dropdown-item:is(:hover, :active){
4306
4310
  color:var(--t-text-color-secondary);
4307
4311
  }
4308
4312
  .tds-dropdown-item:has([slot="description"]){
4313
+ --tds-dropdown-item-row-gap:var(--t-spacing-half);
4314
+ --tds-dropdown-item-column-gap:0;
4315
+
4309
4316
  display:grid;
4310
- grid-template-areas:"prefix label suffix" "prefix description suffix";
4317
+ grid-template-areas:"prefix label suffix" ". description .";
4311
4318
  grid-template-columns:auto 1fr auto;
4312
4319
  }
4313
4320
  .tds-dropdown-item:has([slot="description"]) [slot="prefix"]{
4314
4321
  grid-area:prefix;
4322
+ margin-inline-end:var(--t-spacing-1);
4315
4323
  }
4316
4324
  .tds-dropdown-item:has([slot="description"]) [slot="label"]{
4317
4325
  grid-area:label;
@@ -4321,6 +4329,7 @@ a.tds-dropdown-item:is(:hover, :active){
4321
4329
  }
4322
4330
  .tds-dropdown-item:has([slot="description"]) [slot="suffix"]{
4323
4331
  grid-area:suffix;
4332
+ margin-inline-start:var(--t-spacing-1);
4324
4333
  }
4325
4334
  .tds-dropdown-section:not(:first-child){
4326
4335
  margin-block-start:var(--t-spacing-half);