@mond-design-system/react 4.4.0 → 4.6.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.
package/dist/index.css CHANGED
@@ -1005,6 +1005,11 @@ button.mds-Link__link {
1005
1005
  animation: mds-Skeleton__pulse var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
1006
1006
  width: var(--skeleton-w, 100%);
1007
1007
  }
1008
+ .mds-Skeleton__lines {
1009
+ display: flex;
1010
+ flex-direction: column;
1011
+ gap: var(--mds-gap-tight);
1012
+ }
1008
1013
  .mds-Skeleton__variant-text {
1009
1014
  height: var(--skeleton-h, 1em);
1010
1015
  border-radius: var(--mds-radius-skeleton);
@@ -1609,6 +1614,20 @@ button.mds-Link__link {
1609
1614
  .mds-List__interactive:hover {
1610
1615
  background: var(--mds-surface-sunken);
1611
1616
  }
1617
+ .mds-List__withActions {
1618
+ display: flex;
1619
+ align-items: center;
1620
+ }
1621
+ .mds-List__withActions > .mds-List__row {
1622
+ min-width: 0;
1623
+ }
1624
+ .mds-List__actions {
1625
+ display: inline-flex;
1626
+ flex: none;
1627
+ align-items: center;
1628
+ gap: var(--mds-gap-tight);
1629
+ padding-inline-end: var(--mds-pad-card);
1630
+ }
1612
1631
  .mds-List__leading,
1613
1632
  .mds-List__trailing {
1614
1633
  display: inline-flex;
@@ -1785,6 +1804,9 @@ button.mds-Link__link {
1785
1804
  .mds-Stack__gap-loose {
1786
1805
  gap: var(--mds-gap-loose);
1787
1806
  }
1807
+ .mds-Stack__gap-group {
1808
+ gap: var(--mds-stack-group);
1809
+ }
1788
1810
  .mds-Stack__gap-section {
1789
1811
  gap: var(--mds-stack-section);
1790
1812
  }