matcha-core 19.24.0 → 19.26.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.
@@ -225,7 +225,6 @@ border-radius-8 | radius-8
225
225
  one-line-text | line-clamp-1
226
226
 
227
227
 
228
-
229
228
  flex-center => flex-justify-center
230
229
  flex-end => flex-justify-end
231
230
  flex-start => flex-justify-start
package/core.scss CHANGED
@@ -582,20 +582,38 @@ $base-font-size: 16px;
582
582
  align-self-initial: (display:flex, align-self: initial),
583
583
 
584
584
  center-center: (display:flex, justify-content: center, align-items: center),
585
+
585
586
  justify-center: (display:flex, justify-content: center),
587
+ center: (display:flex, justify-content: center),
588
+
586
589
  justify-end: (display:flex, justify-content: flex-end),
590
+ end: (display:flex, justify-content: flex-end),
591
+
587
592
  justify-start: (display:flex, justify-content: flex-start),
593
+ start: (display:flex, justify-content: flex-start),
594
+
588
595
  justify-inherit: (display:flex, justify-content: inherit),
596
+ inherit: (display:flex, justify-content: inherit),
597
+
589
598
  justify-initial: (display:flex, justify-content: initial),
590
- justify-left: (display:flex, justify-content: left),
591
- justify-normal: (display:flex, justify-content: normal),
592
- justify-revert: (display:flex, justify-content: revert),
593
- justify-right: (display:flex, justify-content: right),
594
- justify-space-around: (display:flex, justify-content: space-around),
595
- justify-space-between: (display:flex, justify-content: space-between),
596
- justify-space-evenly: (display:flex, justify-content: space-evenly),
597
- justify-stretch: (display:flex, justify-content: stretch),
598
- justify-unset: (display:flex, justify-content: unset)
599
+ initial: (display:flex, justify-content: initial),
600
+
601
+ left: (display:flex, justify-content: left),
602
+ right: (display:flex, justify-content: right),
603
+ normal: (display:flex, justify-content: normal),
604
+ revert: (display:flex, justify-content: revert),
605
+
606
+ space-around: (display:flex, justify-content: space-around),
607
+ around: (display:flex, justify-content: space-around),
608
+
609
+ space-between: (display:flex, justify-content: space-between),
610
+ between: (display:flex, justify-content: space-between),
611
+
612
+ space-evenly: (display:flex, justify-content: space-evenly),
613
+ evenly: (display:flex, justify-content: space-evenly),
614
+
615
+ stretch: (display:flex, justify-content: stretch),
616
+ unset: (display:flex, justify-content: unset)
599
617
 
600
618
  ) {
601
619
  $class-name: ".flex#{$infix}-#{$class-suffix}";