@eui/styles 18.0.0-rc.17 → 18.0.0-rc.18

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.
@@ -1,4 +1,3 @@
1
- // DEPRECATIONS WILL OCCUR IN NEXT eUI16 RELEASE (TODO)
2
1
  // CONTAINERS
3
2
  .eui-u-flex {
4
3
  align-items: center !important;
@@ -21,12 +20,10 @@
21
20
  }
22
21
 
23
22
  // JUSTIFY content
24
- .eui-u-flex-start, // DEPRECATED
25
23
  .eui-u-flex-justify-content-start {
26
24
  justify-content: flex-start !important;
27
25
  }
28
26
 
29
- .eui-u-flex-end, // DEPRECATED
30
27
  .eui-u-flex-justify-content-end {
31
28
  justify-content: flex-end !important;
32
29
  }
@@ -39,27 +36,22 @@
39
36
  justify-content: space-around !important;
40
37
  }
41
38
 
42
- .eui-u-flex-between, // DEPRECATED
43
39
  .eui-u-flex-justify-content-between {
44
40
  justify-content: space-between !important;
45
41
  }
46
42
 
47
- .eui-u-flex-evenly, // DEPRECATED
48
43
  .eui-u-flex-justify-content-evenly {
49
44
  justify-content: space-evenly !important;
50
45
  }
51
46
 
52
47
  // ITEMS alignements
53
- .eui-u-flex-align-left, // DEPRECATED
54
48
  .eui-u-flex-align-items-start {
55
49
  align-items: flex-start !important;
56
50
  }
57
51
 
58
- .eui-u-flex-align-center, // DEPRECATED
59
52
  .eui-u-flex-align-items-center {
60
53
  align-items: center !important;
61
54
  }
62
- .eui-u-flex-align-right, // DEPRECATED
63
55
  .eui-u-flex-align-items-end {
64
56
  align-items: flex-end !important;
65
57
  }
@@ -119,3 +111,12 @@
119
111
  .eui-u-flex-no-shrink {
120
112
  flex-shrink: 0 !important;
121
113
  }
114
+
115
+ // FLEX GAPS
116
+ .eui-u-flex-gap {
117
+ &-none { gap: 0 !important; }
118
+ &-2xs { gap: var(--eui-s-2xs) !important; }
119
+ &-xs { gap: var(--eui-s-xs) !important; }
120
+ &-s { gap: var(--eui-s-s) !important; }
121
+ &-m { gap: var(--eui-s-m) !important; }
122
+ }