@central-design-system/components 3.0.0-beta.6 → 3.0.0-beta.8

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,6 +1,6 @@
1
1
  /**
2
2
  * Automatically generated by CDS CLI
3
- * Generated on 11/7/2023, 11:30:49 AM
3
+ * Generated on 12/5/2023, 4:19:31 PM
4
4
  **/
5
5
 
6
6
  /**
@@ -4,7 +4,6 @@ $displays: (
4
4
  inline: inline,
5
5
  flex: flex,
6
6
  inline-flex: inline-flex,
7
- table: table,
8
7
  table-row: table-row,
9
8
  table-cell: table-cell,
10
9
  none: none
@@ -85,6 +85,44 @@ $order: (
85
85
  'last': 999
86
86
  );
87
87
 
88
+ $gap-sizes: (
89
+ '0': 0,
90
+ 'px': 1px,
91
+ '0\\.5': 0.125rem, // 2px
92
+ '1': 0.25rem, // 4px
93
+ '1\\.5': 0.375rem, // 6px
94
+ '2': 0.5rem, // 8px
95
+ '2\\.5': 0.625rem, // 10px
96
+ '3': 0.75rem, // 12px
97
+ '3\\.5': 0.875rem, // 14px
98
+ '4': 1rem, // 16px
99
+ '5': 1.25rem, // 20px
100
+ '6': 1.5rem, // 24px
101
+ '7': 1.75rem, // 28px
102
+ '8': 2rem, // 32px
103
+ '9': 2.25rem, // 36px
104
+ '10': 2.5rem, // 40px
105
+ '11': 2.75rem, // 44px
106
+ '12': 3rem, // 48px
107
+ '14': 3.5rem, // 56px
108
+ '16': 4rem, // 64px
109
+ '20': 5rem, // 80px
110
+ '24': 6rem, // 96px
111
+ '28': 7rem, // 112px
112
+ '32': 8rem, // 128px
113
+ '36': 9rem, // 144px
114
+ '40': 10rem, // 160px
115
+ '44': 11rem, // 176px
116
+ '48': 12rem, // 192px
117
+ '52': 13rem, // 208px
118
+ '56': 14rem, // 224px
119
+ '60': 15rem, // 240px
120
+ '64': 16rem, // 256px
121
+ '72': 18rem, // 288px
122
+ '80': 20rem, // 320px
123
+ '96': 24rem // 384px
124
+ );
125
+
88
126
  $flex-properties: (
89
127
  'direction': ('name': '', 'map': $flex-direction, 'property': 'flex-direction'),
90
128
  'justify': ('name': 'justify-', 'map': $justify-content, 'property': 'justify-content'),
@@ -95,5 +133,8 @@ $flex-properties: (
95
133
  'grow': ('name': 'grow-', 'map': $flex-grow, 'property': 'flex-grow'),
96
134
  'shrink': ('name': 'shrink-', 'map': $flex-shrink, 'property': 'flex-shrink'),
97
135
  'basis': ('name': 'basis-', 'map': $flex-basis, 'property': 'flex-basis'),
98
- 'order': ('name': 'order-', 'map': $order, 'property': 'order')
136
+ 'order': ('name': 'order-', 'map': $order, 'property': 'order'),
137
+ 'gap': ('name': 'gap-', 'map': $gap-sizes, 'property': 'gap'),
138
+ 'gap-y': ('name': 'gap-y-', 'map': $gap-sizes, 'property': 'row-gap'),
139
+ 'gap-x': ('name': 'gap-x-', 'map': $gap-sizes, 'property': 'column-gap'),
99
140
  );