@abgov/design-tokens 1.10.0 → 2.0.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.
Files changed (34) hide show
  1. package/data/component-design-tokens/accordion-design-tokens.json +92 -11
  2. package/data/component-design-tokens/badge-design-tokens.json +115 -26
  3. package/data/component-design-tokens/button-design-tokens.json +151 -66
  4. package/data/component-design-tokens/callout-design-tokens.json +158 -74
  5. package/data/component-design-tokens/checkbox-design-tokens.json +33 -14
  6. package/data/component-design-tokens/container-design-tokens.json +15 -11
  7. package/data/component-design-tokens/date-picker-design-tokens.json +26 -10
  8. package/data/component-design-tokens/details-design-tokens.json +28 -5
  9. package/data/component-design-tokens/drawer-design-tokens.json +42 -35
  10. package/data/component-design-tokens/dropdown-design-tokens.json +81 -17
  11. package/data/component-design-tokens/filter-chip-design-tokens.json +92 -0
  12. package/data/component-design-tokens/footer-design-tokens.json +16 -20
  13. package/data/component-design-tokens/form-item-design-tokens.json +99 -20
  14. package/data/component-design-tokens/header-design-tokens.json +189 -235
  15. package/data/component-design-tokens/icon-button-design-tokens.json +40 -24
  16. package/data/component-design-tokens/input-design-tokens.json +52 -28
  17. package/data/component-design-tokens/link-design-tokens.json +115 -0
  18. package/data/component-design-tokens/modal-design-tokens.json +202 -17
  19. package/data/component-design-tokens/notification-banner-design-tokens.json +152 -0
  20. package/data/component-design-tokens/pagination-design-tokens.json +17 -0
  21. package/data/component-design-tokens/popover-design-tokens.json +23 -9
  22. package/data/component-design-tokens/push-drawer-design-tokens.json +1 -1
  23. package/data/component-design-tokens/radio-design-tokens.json +79 -17
  24. package/data/component-design-tokens/side-menu-design-tokens.json +101 -94
  25. package/data/component-design-tokens/table-design-tokens.json +159 -9
  26. package/data/component-design-tokens/tabs-design-tokens.json +74 -16
  27. package/data/component-design-tokens/temporary-notification-design-tokens.json +112 -0
  28. package/data/component-design-tokens/text-area-design-tokens.json +29 -15
  29. package/data/component-design-tokens/tooltip-design-tokens.json +3 -3
  30. package/data/goa-global-design-tokens.json +571 -145
  31. package/dist/tokens.css +812 -430
  32. package/dist/tokens.scss +958 -576
  33. package/lib/design-tokens.js +43 -9
  34. package/package.json +1 -1
@@ -5,22 +5,36 @@
5
5
  "style": "solid",
6
6
  "color": "{color.interactive.focus}"
7
7
  },
8
- "type": "border"
8
+ "type": "border",
9
+ "description": "Focus outline for popover target button"
9
10
  },
10
11
  "popover-border-radius": {
11
- "value": "{borderRadius.m}",
12
- "type": "borderRadius"
12
+ "value": "{borderRadius.xl}",
13
+ "type": "borderRadius",
14
+ "description": "Container corner radius"
13
15
  },
14
16
  "popover-color-bg": {
15
17
  "value": "{color.greyscale.white}",
16
- "type": "color"
18
+ "type": "color",
19
+ "description": "Background color for popover container"
17
20
  },
18
21
  "popover-padding": {
19
- "value": "{space.s}",
20
- "type": "spacing"
22
+ "value": "{space.xs}",
23
+ "type": "spacing",
24
+ "description": "Content padding inside popover"
21
25
  },
22
- "popover-shadow": {
23
- "value": "drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.25))",
24
- "type": "other"
26
+ "popover-box-shadow": {
27
+ "value": "{shadow.raised-light}",
28
+ "type": "other",
29
+ "description": "Shadow for popover container"
30
+ },
31
+ "popover-border": {
32
+ "value": {
33
+ "width": "{borderWidth.2xs}",
34
+ "style": "solid",
35
+ "color": "{color.greyscale.150}"
36
+ },
37
+ "type": "border",
38
+ "description": "Container border"
25
39
  }
26
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "push-drawer-border-radius": {
3
- "value": "{borderRadius.none}",
3
+ "value": "{borderRadius.3xl}",
4
4
  "type": "borderRadius",
5
5
  "description": "Border radius for drawer corners"
6
6
  },
@@ -3,13 +3,13 @@
3
3
  "value": {
4
4
  "width": "{borderWidth.s}",
5
5
  "style": "solid",
6
- "color": "{color.greyscale.700}"
6
+ "color": "{color.greyscale.500}"
7
7
  },
8
8
  "type": "border"
9
9
  },
10
10
  "radio-border-checked": {
11
11
  "value": {
12
- "width": "7px",
12
+ "width": "{borderWidth.m}",
13
13
  "style": "solid",
14
14
  "color": "{color.interactive.default}"
15
15
  },
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "radio-border-checked-disabled": {
19
19
  "value": {
20
- "width": "7px",
20
+ "width": "{borderWidth.s}",
21
21
  "style": "solid",
22
22
  "color": "{color.interactive.disabled}"
23
23
  },
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "radio-border-checked-error": {
27
27
  "value": {
28
- "width": "7px",
28
+ "width": "{borderWidth.m}",
29
29
  "style": "solid",
30
30
  "color": "{color.interactive.error}"
31
31
  },
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "radio-border-checked-error-disabled": {
35
35
  "value": {
36
- "width": "7px",
36
+ "width": "{borderWidth.s}",
37
37
  "style": "solid",
38
38
  "color": "#f58185"
39
39
  },
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "radio-border-checked-error-hover": {
43
43
  "value": {
44
- "width": "7px",
44
+ "width": "{borderWidth.m}",
45
45
  "style": "solid",
46
46
  "color": "#ba0000"
47
47
  },
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "radio-border-checked-hover": {
51
51
  "value": {
52
- "width": "7px",
52
+ "width": "{borderWidth.m}",
53
53
  "style": "solid",
54
54
  "color": "{color.interactive.hover}"
55
55
  },
@@ -59,7 +59,7 @@
59
59
  "value": {
60
60
  "width": "{borderWidth.s}",
61
61
  "style": "solid",
62
- "color": "{color.greyscale.400}"
62
+ "color": "#b1b1b1"
63
63
  },
64
64
  "type": "border"
65
65
  },
@@ -99,19 +99,43 @@
99
99
  "value": {
100
100
  "width": "{borderWidth.m}",
101
101
  "style": "solid",
102
- "color": "{color.interactive.hover}"
102
+ "color": "{color.greyscale.black}"
103
103
  },
104
104
  "type": "border"
105
105
  },
106
+ "radio-borderRadius": {
107
+ "value": "50%",
108
+ "type": "borderRadius"
109
+ },
106
110
  "radio-color-bg": {
107
111
  "value": "{color.greyscale.white}",
108
112
  "type": "color"
109
113
  },
114
+ "radio-color-bg-disabled": {
115
+ "value": "{color.greyscale.150}",
116
+ "type": "color"
117
+ },
118
+ "radio-color-bg-error": {
119
+ "value": "{color.emergency.light}",
120
+ "type": "color"
121
+ },
122
+ "radio-color-bg-error-hover": {
123
+ "value": "#f4c8c5",
124
+ "type": "color"
125
+ },
110
126
  "radio-description": {
111
127
  "value": "{typography.body.xs}",
112
128
  "type": "other"
113
129
  },
130
+ "radio-gap-label": {
131
+ "value": "{space.s}",
132
+ "type": "spacing"
133
+ },
114
134
  "radio-group-gap-horizontal": {
135
+ "value": "{space.xl}",
136
+ "type": "spacing"
137
+ },
138
+ "radio-group-gap-horizontal-compact": {
115
139
  "value": "{space.l}",
116
140
  "type": "spacing"
117
141
  },
@@ -119,20 +143,58 @@
119
143
  "value": "{space.m}",
120
144
  "type": "spacing"
121
145
  },
146
+ "radio-group-gap-vertical-compact": {
147
+ "value": "{space.s}",
148
+ "type": "spacing"
149
+ },
150
+ "radio-inner-color": {
151
+ "value": "{color.interactive.default}",
152
+ "type": "color"
153
+ },
154
+ "radio-inner-color-disabled": {
155
+ "value": "{color.interactive.disabled}",
156
+ "type": "color"
157
+ },
158
+ "radio-inner-color-error": {
159
+ "value": "{color.interactive.error}",
160
+ "type": "color"
161
+ },
162
+ "radio-inner-color-error-hover": {
163
+ "value": "#ba0000",
164
+ "type": "color"
165
+ },
166
+ "radio-inner-color-hover": {
167
+ "value": "{color.interactive.hover}",
168
+ "type": "color"
169
+ },
170
+ "radio-inner-size": {
171
+ "value": "16px",
172
+ "type": "sizing"
173
+ },
122
174
  "radio-label": {
123
- "value": "{typography.body.m}",
124
- "type": "other"
175
+ "value": {
176
+ "fontFamily": "{fontFamily.sans}",
177
+ "fontWeight": "{fontWeight.medium}",
178
+ "fontSize": "{fontSize.4}",
179
+ "lineHeight": "{lineHeight.3}"
180
+ },
181
+ "type": "typography"
125
182
  },
126
183
  "radio-label-color-disabled": {
127
- "value": "{color.greyscale.500}",
184
+ "value": "#bab7b7",
128
185
  "type": "color"
129
186
  },
187
+ "radio-label-compact": {
188
+ "value": {
189
+ "fontFamily": "{fontFamily.sans}",
190
+ "fontWeight": "{fontWeight.medium}",
191
+ "fontSize": "{fontSize.3}",
192
+ "lineHeight": "{lineHeight.2}"
193
+ },
194
+ "type": "typography"
195
+ },
130
196
  "radio-size": {
131
197
  "value": "{space.l}",
132
198
  "type": "sizing"
133
- },
134
- "radio-border-radius": {
135
- "value": "50%",
136
- "type": "borderRadius"
137
199
  }
138
- }
200
+ }
@@ -3,41 +3,36 @@
3
3
  "value": {
4
4
  "width": "{borderWidth.s}",
5
5
  "style": "solid",
6
- "color": "{color.greyscale.200}"
6
+ "color": "{color.greyscale.150}"
7
7
  },
8
- "type": "border"
8
+ "type": "border",
9
+ "description": "Right border for side menu container"
9
10
  },
10
11
  "side-menu-color-bg": {
11
12
  "value": "{color.greyscale.white}",
12
13
  "type": "color"
13
14
  },
14
- "side-menu-color-bg-menu-item-current": {
15
- "value": "#cedfee",
16
- "type": "color"
17
- },
18
15
  "side-menu-color-bg-menu-item-hover": {
19
- "value": "#cedfee",
20
- "type": "color"
21
- },
22
- "side-menu-color-menu-item": {
23
- "value": "{color.text.default}",
16
+ "value": "{color.greyscale.100}",
24
17
  "type": "color"
25
18
  },
26
19
  "side-menu-heading-border": {
27
20
  "value": {
28
- "width": "{borderWidth.m}",
21
+ "width": "{borderWidth.s}",
29
22
  "style": "solid",
30
- "color": "{color.greyscale.200}"
23
+ "color": "{color.greyscale.100}"
31
24
  },
32
- "type": "border"
25
+ "type": "border",
26
+ "description": "1px bottom border for side menu headings - greyscale.100"
33
27
  },
34
28
  "side-menu-heading-color": {
35
- "value": "{color.text.secondary}",
29
+ "value": "{color.greyscale.600}",
36
30
  "type": "color"
37
31
  },
38
32
  "side-menu-heading-color-bg": {
39
- "value": "{color.greyscale.100}",
40
- "type": "color"
33
+ "value": "{color.greyscale.white}",
34
+ "type": "color",
35
+ "description": "White background for side menu headings"
41
36
  },
42
37
  "side-menu-heading-icon-gap": {
43
38
  "value": "{space.xs}",
@@ -52,24 +47,22 @@
52
47
  "type": "spacing"
53
48
  },
54
49
  "side-menu-heading-padding": {
55
- "value": "{space.s} {space.s} {space.xs} {space.l}",
50
+ "value": "{space.2xs} {space.xs}",
56
51
  "type": "spacing"
57
52
  },
58
53
  "side-menu-heading-typography": {
59
- "value": "{typography.heading.s}",
60
- "type": "other"
54
+ "value": "{typography.body.xs}",
55
+ "type": "other",
56
+ "description": "Typography for side menu section headings - body.xs (14px)"
61
57
  },
62
58
  "side-menu-icon-color": {
63
59
  "value": "{color.text.secondary}",
64
60
  "type": "color"
65
61
  },
66
- "side-menu-icon-size": {
67
- "value": "{iconSize.l}",
68
- "type": "sizing"
69
- },
70
62
  "side-menu-items-gap": {
71
- "value": "{space.none}",
72
- "type": "spacing"
63
+ "value": "{space.2xs}",
64
+ "type": "spacing",
65
+ "description": "Vertical gap between menu items"
73
66
  },
74
67
  "side-menu-heading-gap": {
75
68
  "value": "{space.xs}",
@@ -84,75 +77,28 @@
84
77
  "type": "border"
85
78
  },
86
79
  "side-menu-padding": {
87
- "value": "{space.m} {space.none} {space.l} {space.none}",
88
- "type": "spacing"
80
+ "value": "{space.m} {space.xs} {space.m} {space.m}",
81
+ "type": "spacing",
82
+ "description": "Padding for side menu container - 16px 8px 16px 16px"
89
83
  },
90
84
  "side-menu-padding-item": {
91
- "value": "{space.xs} {space.s} 10px {space.xl}",
85
+ "value": "{space.xs} {space.s}",
92
86
  "type": "spacing"
93
87
  },
94
88
  "side-menu-padding-child": {
95
- "value": "{space.xs} {space.s} 10px {space.m}",
89
+ "value": "{space.2xs} {space.xs}",
96
90
  "type": "spacing"
97
91
  },
98
- "side-menu-parent-color-bg-hover": {
99
- "value": "#cedfee",
100
- "type": "color"
101
- },
102
92
  "side-menu-parent-color-bg-selected": {
103
- "value": "#cedfee",
93
+ "value": "{color.greyscale.100}",
104
94
  "type": "color"
105
95
  },
106
96
  "side-menu-parent-padding": {
107
- "value": "{space.xs} {space.s} 10px {space.xl}",
97
+ "value": "{space.xs} {space.s}",
108
98
  "type": "spacing"
109
99
  },
110
- "side-menu-sub-group-padding": {
111
- "value": "{space.none} {space.none} {space.none} {space.none}",
112
- "type": "spacing"
113
- },
114
- "side-menu-sub-item-border-left": {
115
- "value": {
116
- "width": "{borderWidth.xl}",
117
- "style": "solid",
118
- "color": "{color.greyscale.100}"
119
- },
120
- "type": "border"
121
- },
122
- "side-menu-sub-item-border-left-hover": {
123
- "value": {
124
- "width": "{borderWidth.xl}",
125
- "style": "solid",
126
- "color": "{color.greyscale.200}"
127
- },
128
- "type": "border"
129
- },
130
- "side-menu-sub-item-border-left-current": {
131
- "value": {
132
- "width": "{borderWidth.xl}",
133
- "style": "solid",
134
- "color": "{color.interactive.disabled}"
135
- },
136
- "type": "border"
137
- },
138
- "side-menu-sub-item-color-bg": {
139
- "value": "none",
140
- "type": "color"
141
- },
142
- "side-menu-sub-item-color-bg-current": {
143
- "value": "{color.info.background}",
144
- "type": "color"
145
- },
146
- "side-menu-sub-item-color-bg-hover": {
147
- "value": "{color.info.background}",
148
- "type": "color"
149
- },
150
- "side-menu-width": {
151
- "value": "256px",
152
- "type": "sizing"
153
- },
154
100
  "side-menu-group-border-radius": {
155
- "value": "{borderRadius.none}",
101
+ "value": "{borderRadius.xl}",
156
102
  "type": "borderRadius"
157
103
  },
158
104
  "side-menu-group-color-bg": {
@@ -187,10 +133,6 @@
187
133
  },
188
134
  "type": "border"
189
135
  },
190
- "side-menu-child-color-bg": {
191
- "value": "none",
192
- "type": "color"
193
- },
194
136
  "side-menu-child-color-bg-hover": {
195
137
  "value": "{color.info.background}",
196
138
  "type": "color"
@@ -199,21 +141,86 @@
199
141
  "value": "{color.info.background}",
200
142
  "type": "color"
201
143
  },
202
- "side-menu-child-color-text-selected": {
203
- "value": "{color.text.default}",
204
- "type": "color"
205
- },
206
144
  "side-menu-typography-item": {
207
- "value": "{typography.body.m}",
208
- "type": "other"
145
+ "value": {
146
+ "fontFamily": "{fontFamily.sans}",
147
+ "fontWeight": "{fontWeight.regular}",
148
+ "fontSize": "16px",
149
+ "lineHeight": "22px",
150
+ "letterSpacing": "0"
151
+ },
152
+ "type": "typography",
153
+ "description": "Typography for side menu items and group headings - 16px/22px regular"
209
154
  },
210
155
  "side-menu-typography-item-current": {
211
- "value": "{typography.heading.s}",
212
- "type": "other"
156
+ "value": {
157
+ "fontFamily": "{fontFamily.sans}",
158
+ "fontWeight": "{fontWeight.semiBold}",
159
+ "fontSize": "16px",
160
+ "lineHeight": "22px",
161
+ "letterSpacing": "0"
162
+ },
163
+ "type": "typography",
164
+ "description": "Typography for current/active side menu items - 16px/22px semibold"
165
+ },
166
+ "side-menu-color-item": {
167
+ "value": "{color.text.default}",
168
+ "type": "color",
169
+ "description": "Text color for side menu items (not current)"
170
+ },
171
+ "side-menu-color-item-current": {
172
+ "value": "{color.text.default}",
173
+ "type": "color",
174
+ "description": "Text color for current side menu item"
213
175
  },
214
176
  "side-menu-child-border-width": {
215
177
  "value": "{borderWidth.xl}",
216
178
  "type": "borderWidth",
217
179
  "description": "4px"
180
+ },
181
+ "side-menu-item-focus-outline-offset": {
182
+ "value": "-3px",
183
+ "type": "other",
184
+ "description": "Focus outline offset for menu items and groups"
185
+ },
186
+ "side-menu-group-item-typography": {
187
+ "value": "{typography.body.xs}",
188
+ "type": "other",
189
+ "description": "Typography for nested group items - references body.xs (14px regular)"
190
+ },
191
+ "side-menu-group-item-typography-current": {
192
+ "value": {
193
+ "fontFamily": "{fontFamily.sans}",
194
+ "fontWeight": "{fontWeight.bold}",
195
+ "fontSize": "{fontSize.2}",
196
+ "lineHeight": "{lineHeight.1}"
197
+ },
198
+ "type": "typography",
199
+ "description": "Typography for current/active nested group items - 14px bold"
200
+ },
201
+ "side-menu-item-border-radius": {
202
+ "value": "{borderRadius.l}",
203
+ "type": "borderRadius",
204
+ "description": "Border radius for menu items (6px)"
205
+ },
206
+ "side-menu-group-border-radius-open": {
207
+ "value": "{borderRadius.xl}",
208
+ "type": "borderRadius",
209
+ "description": "Border radius for open groups (8px)"
210
+ },
211
+ "side-menu-group-container-margin-left": {
212
+ "value": "20px",
213
+ "type": "spacing",
214
+ "description": "Left margin for nested group container"
215
+ },
216
+ "side-menu-group-container-margin-bottom": {
217
+ "value": "6px",
218
+ "type": "spacing",
219
+ "description": "Bottom margin for nested group container"
220
+ },
221
+ "side-menu-heading-padding-top": {
222
+ "value": "14px",
223
+ "type": "spacing",
224
+ "description": "Top padding for section headings"
218
225
  }
219
- }
226
+ }
@@ -1,14 +1,164 @@
1
1
  {
2
2
  "table-color-heading": {
3
- "value": "{color.text.secondary}",
4
- "type": "color"
5
- },
6
- "table-color-border-heading": {
7
3
  "value": "{color.greyscale.600}",
8
- "type": "color"
4
+ "type": "color",
5
+ "description": "Header text color"
6
+ },
7
+ "table-color-heading-hover": {
8
+ "value": "{color.interactive.hover}",
9
+ "type": "color",
10
+ "description": "Header text color on hover"
11
+ },
12
+ "table-color-bg-heading-hover": {
13
+ "value": "{color.greyscale.100}",
14
+ "type": "color",
15
+ "description": "Header background color on hover"
16
+ },
17
+ "table-typography-heading": {
18
+ "value": "{typography.body.xs}",
19
+ "type": "other",
20
+ "description": "Header text typography"
21
+ },
22
+ "table-color-bg-heading": {
23
+ "value": "{color.greyscale.50}",
24
+ "type": "color",
25
+ "description": "Header cell background color"
26
+ },
27
+ "table-color-bg-data": {
28
+ "value": "{color.greyscale.white}",
29
+ "type": "color",
30
+ "description": "Data cell background color"
31
+ },
32
+ "table-heading-border": {
33
+ "value": {
34
+ "width": "{borderWidth.m}",
35
+ "style": "solid",
36
+ "color": "{color.greyscale.150}"
37
+ },
38
+ "type": "border",
39
+ "description": "Header cell bottom border"
40
+ },
41
+ "table-data-border": {
42
+ "value": {
43
+ "width": "{borderWidth.s}",
44
+ "style": "solid",
45
+ "color": "{color.greyscale.150}"
46
+ },
47
+ "type": "border",
48
+ "description": "Data cell bottom border"
49
+ },
50
+ "table-container-border": {
51
+ "value": {
52
+ "width": "{borderWidth.s}",
53
+ "style": "solid",
54
+ "color": "{color.greyscale.150}"
55
+ },
56
+ "type": "border",
57
+ "description": "Table container border"
58
+ },
59
+ "table-border-radius-container": {
60
+ "value": "{borderRadius.2xl}",
61
+ "type": "other",
62
+ "description": "Table container border radius"
63
+ },
64
+ "table-padding-heading": {
65
+ "value": "18px {space.m} {space.m} {space.m}",
66
+ "type": "spacing",
67
+ "description": "Header cell padding (normal variant, top right bottom left)"
68
+ },
69
+ "table-padding-heading-relaxed": {
70
+ "value": "18px {space.m} {space.m} {space.m}",
71
+ "type": "spacing",
72
+ "description": "Header cell padding (relaxed variant, top right bottom left)"
73
+ },
74
+ "table-padding-data": {
75
+ "value": "{space.s} {space.m} {space.s} {space.m}",
76
+ "type": "spacing",
77
+ "description": "Data cell base padding (normal variant, 12px vertical for 48px height)"
78
+ },
79
+ "table-padding-data-relaxed": {
80
+ "value": "18px {space.m} 18px {space.m}",
81
+ "type": "spacing",
82
+ "description": "Data cell base padding (relaxed variant, top right bottom left)"
83
+ },
84
+ "table-height-heading": {
85
+ "value": "56px",
86
+ "type": "sizing",
87
+ "description": "Header cell minimum height (normal variant)"
88
+ },
89
+ "table-height-heading-relaxed": {
90
+ "value": "56px",
91
+ "type": "sizing",
92
+ "description": "Header cell minimum height (relaxed variant)"
93
+ },
94
+ "table-height-data": {
95
+ "value": "48px",
96
+ "type": "sizing",
97
+ "description": "Data cell minimum height (normal variant)"
98
+ },
99
+ "table-height-data-relaxed": {
100
+ "value": "64px",
101
+ "type": "sizing",
102
+ "description": "Data cell minimum height (relaxed variant)"
103
+ },
104
+ "table-padding-cell-text": {
105
+ "value": "{space.s}",
106
+ "type": "spacing",
107
+ "description": "Vertical padding for text-only cells in normal variant (12px for 48px height)"
108
+ },
109
+ "table-padding-cell-text-relaxed": {
110
+ "value": "20px",
111
+ "type": "spacing",
112
+ "description": "Vertical padding for text-only cells in relaxed variant (20px for 64px height)"
113
+ },
114
+ "table-padding-cell-checkbox": {
115
+ "value": "{space.3xs}",
116
+ "type": "spacing",
117
+ "description": "Vertical padding for checkbox cells in normal variant (2px for 48px height)"
118
+ },
119
+ "table-padding-cell-checkbox-relaxed": {
120
+ "value": "10px",
121
+ "type": "spacing",
122
+ "description": "Vertical padding for checkbox cells in relaxed variant (10px for 64px height)"
123
+ },
124
+ "table-padding-cell-form-field": {
125
+ "value": "3px",
126
+ "type": "spacing",
127
+ "description": "Vertical padding for form field cells (input, dropdown, etc.) in normal variant (3px for 48px height)"
128
+ },
129
+ "table-padding-cell-form-field-relaxed": {
130
+ "value": "11px",
131
+ "type": "spacing",
132
+ "description": "Vertical padding for form field cells (input, dropdown, etc.) in relaxed variant (11px for 64px height)"
133
+ },
134
+ "table-padding-cell-badge": {
135
+ "value": "{space.s}",
136
+ "type": "spacing",
137
+ "description": "Vertical padding for badge cells in normal variant (12px for 48px height)"
138
+ },
139
+ "table-padding-cell-badge-relaxed": {
140
+ "value": "20px",
141
+ "type": "spacing",
142
+ "description": "Vertical padding for badge cells in relaxed variant (20px for 64px height)"
143
+ },
144
+ "table-padding-cell-actions": {
145
+ "value": "7px",
146
+ "type": "spacing",
147
+ "description": "Vertical padding for action cells (buttons, icon buttons, links) in normal variant (7px for 48px height)"
148
+ },
149
+ "table-padding-cell-actions-relaxed": {
150
+ "value": "14px",
151
+ "type": "spacing",
152
+ "description": "Vertical padding for action cells (buttons, icon buttons, links) in relaxed variant (14px for 64px height)"
153
+ },
154
+ "table-padding-cell-text-supporting-relaxed": {
155
+ "value": "{space.xs}",
156
+ "type": "spacing",
157
+ "description": "Vertical padding for text-supporting cells in relaxed variant (8px for 64px height)"
9
158
  },
10
- "table-header-padding": {
11
- "value": "{space.m}",
12
- "type": "sizing"
159
+ "table-sort-header-gap": {
160
+ "value": "{space.xs}",
161
+ "type": "spacing",
162
+ "description": "Gap between sort header text and icon"
13
163
  }
14
- }
164
+ }