@autoguru/overdrive 4.61.0 → 4.62.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/components/Alert/Alert.js +1 -1
- package/dist/components/Box/useBox/useBox.d.ts +1 -1
- package/dist/components/DateInput/DateInput.js +1 -1
- package/dist/components/EditableText/EditableText.css.js +1 -1
- package/dist/components/StandardModal/StandardModal.js +1 -1
- package/dist/components/private/InputBase/InputState.css.js +1 -1
- package/dist/components/private/InputBase/NotchedBase.css.js +1 -1
- package/dist/components/private/InputBase/withEnhancedInput.css.js +1 -1
- package/dist/styles/sprinkles.css.d.ts +12 -12
- package/dist/styles/sprinkles.css.d.ts.map +1 -1
- package/dist/styles/sprinkles.css.js +10 -8
- package/dist/themes/base/index.d.ts +118 -18
- package/dist/themes/base/index.d.ts.map +1 -1
- package/dist/themes/base/space.spec.js +3 -3
- package/dist/themes/base/tokens.d.ts +59 -9
- package/dist/themes/base/tokens.d.ts.map +1 -1
- package/dist/themes/base/tokens.js +96 -13
- package/dist/themes/flat_red/index.d.ts +118 -18
- package/dist/themes/flat_red/index.d.ts.map +1 -1
- package/dist/themes/flat_red/tokens.d.ts +59 -9
- package/dist/themes/flat_red/tokens.d.ts.map +1 -1
- package/dist/themes/index.d.ts +118 -18
- package/dist/themes/index.d.ts.map +1 -1
- package/dist/themes/makeTheme.d.ts +59 -9
- package/dist/themes/makeTheme.d.ts.map +1 -1
- package/dist/themes/neutral/index.d.ts +118 -18
- package/dist/themes/neutral/index.d.ts.map +1 -1
- package/dist/themes/neutral/tokens.d.ts +59 -9
- package/dist/themes/neutral/tokens.d.ts.map +1 -1
- package/dist/themes/theme.css.d.ts +59 -9
- package/dist/themes/theme.css.d.ts.map +1 -1
- package/dist/themes/theme.css.js +63 -18
- package/package.json +1 -1
|
@@ -120,14 +120,16 @@ export declare const tokens: {
|
|
|
120
120
|
primary: string;
|
|
121
121
|
secondary: string;
|
|
122
122
|
reverse: string;
|
|
123
|
-
|
|
124
|
-
|
|
123
|
+
tertiary: string;
|
|
124
|
+
placeholder: string;
|
|
125
125
|
};
|
|
126
126
|
background: {
|
|
127
127
|
default: string;
|
|
128
128
|
reverse: string;
|
|
129
129
|
inactive: string;
|
|
130
130
|
emphasisInactive: string;
|
|
131
|
+
emphasisLight: string;
|
|
132
|
+
modal: string;
|
|
131
133
|
};
|
|
132
134
|
border: {
|
|
133
135
|
default: string;
|
|
@@ -135,47 +137,95 @@ export declare const tokens: {
|
|
|
135
137
|
selected: string;
|
|
136
138
|
strong: string;
|
|
137
139
|
};
|
|
140
|
+
focus: {
|
|
141
|
+
ring: string;
|
|
142
|
+
};
|
|
138
143
|
info: {
|
|
139
144
|
text: string;
|
|
140
145
|
foreground: string;
|
|
141
|
-
|
|
146
|
+
backgroundStrong: string;
|
|
147
|
+
backgroundSubtle: string;
|
|
142
148
|
};
|
|
143
149
|
success: {
|
|
144
150
|
text: string;
|
|
145
151
|
foreground: string;
|
|
146
|
-
|
|
147
|
-
|
|
152
|
+
backgroundStrong: string;
|
|
153
|
+
backgroundSubtle: string;
|
|
148
154
|
};
|
|
149
155
|
warning: {
|
|
150
156
|
text: string;
|
|
151
157
|
foreground: string;
|
|
152
|
-
|
|
153
|
-
|
|
158
|
+
backgroundStrong: string;
|
|
159
|
+
backgroundSubtle: string;
|
|
154
160
|
};
|
|
155
161
|
alert: {
|
|
156
162
|
text: string;
|
|
157
163
|
foreground: string;
|
|
158
|
-
|
|
164
|
+
backgroundStrong: string;
|
|
165
|
+
backgroundSubtle: string;
|
|
159
166
|
};
|
|
160
167
|
button: {
|
|
161
168
|
primary: {
|
|
162
169
|
solid: {
|
|
163
170
|
default: string;
|
|
164
171
|
hover: string;
|
|
165
|
-
pressed: string;
|
|
166
172
|
border: string;
|
|
173
|
+
pressed: string;
|
|
174
|
+
text: string;
|
|
167
175
|
};
|
|
168
176
|
outlined: {
|
|
169
177
|
border: string;
|
|
170
178
|
text: string;
|
|
179
|
+
hover: string;
|
|
180
|
+
pressed: string;
|
|
171
181
|
};
|
|
172
182
|
};
|
|
173
183
|
critical: {
|
|
174
184
|
solid: {
|
|
175
185
|
default: string;
|
|
186
|
+
hover: string;
|
|
187
|
+
border: string;
|
|
188
|
+
pressed: string;
|
|
189
|
+
text: string;
|
|
176
190
|
};
|
|
191
|
+
outlined: {
|
|
192
|
+
border: string;
|
|
193
|
+
text: string;
|
|
194
|
+
hover: string;
|
|
195
|
+
pressed: string;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
secondary: {
|
|
199
|
+
border: string;
|
|
200
|
+
hover: string;
|
|
201
|
+
pressed: string;
|
|
202
|
+
text: string;
|
|
203
|
+
};
|
|
204
|
+
disabled: {
|
|
205
|
+
fill: string;
|
|
206
|
+
text: string;
|
|
177
207
|
};
|
|
178
208
|
};
|
|
209
|
+
link: {
|
|
210
|
+
primary: string;
|
|
211
|
+
secondary: string;
|
|
212
|
+
hover: string;
|
|
213
|
+
pressed: string;
|
|
214
|
+
critical: string;
|
|
215
|
+
criticalHover: string;
|
|
216
|
+
criticalPressed: string;
|
|
217
|
+
};
|
|
218
|
+
illustration: {
|
|
219
|
+
brightSide: string;
|
|
220
|
+
darkSide: string;
|
|
221
|
+
lightFill: string;
|
|
222
|
+
mainFill: string;
|
|
223
|
+
outline: string;
|
|
224
|
+
shadow: string;
|
|
225
|
+
white: string;
|
|
226
|
+
yellowDarkSide: string;
|
|
227
|
+
yellowMainFill: string;
|
|
228
|
+
};
|
|
179
229
|
};
|
|
180
230
|
colours: {
|
|
181
231
|
gamut: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../lib/themes/neutral/tokens.ts"],"names":[],"mappings":"AAoEA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../lib/themes/neutral/tokens.ts"],"names":[],"mappings":"AAoEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiLK,CAAC"}
|
|
@@ -182,14 +182,16 @@ export declare const overdriveTokens: {
|
|
|
182
182
|
primary: `var(--${string})`;
|
|
183
183
|
secondary: `var(--${string})`;
|
|
184
184
|
reverse: `var(--${string})`;
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
tertiary: `var(--${string})`;
|
|
186
|
+
placeholder: `var(--${string})`;
|
|
187
187
|
};
|
|
188
188
|
background: {
|
|
189
189
|
default: `var(--${string})`;
|
|
190
190
|
reverse: `var(--${string})`;
|
|
191
191
|
inactive: `var(--${string})`;
|
|
192
192
|
emphasisInactive: `var(--${string})`;
|
|
193
|
+
emphasisLight: `var(--${string})`;
|
|
194
|
+
modal: `var(--${string})`;
|
|
193
195
|
};
|
|
194
196
|
border: {
|
|
195
197
|
default: `var(--${string})`;
|
|
@@ -197,46 +199,94 @@ export declare const overdriveTokens: {
|
|
|
197
199
|
selected: `var(--${string})`;
|
|
198
200
|
strong: `var(--${string})`;
|
|
199
201
|
};
|
|
202
|
+
focus: {
|
|
203
|
+
ring: `var(--${string})`;
|
|
204
|
+
};
|
|
200
205
|
info: {
|
|
201
206
|
text: `var(--${string})`;
|
|
202
207
|
foreground: `var(--${string})`;
|
|
203
|
-
|
|
208
|
+
backgroundStrong: `var(--${string})`;
|
|
209
|
+
backgroundSubtle: `var(--${string})`;
|
|
204
210
|
};
|
|
205
211
|
success: {
|
|
206
212
|
text: `var(--${string})`;
|
|
207
213
|
foreground: `var(--${string})`;
|
|
208
|
-
|
|
209
|
-
|
|
214
|
+
backgroundStrong: `var(--${string})`;
|
|
215
|
+
backgroundSubtle: `var(--${string})`;
|
|
210
216
|
};
|
|
211
217
|
warning: {
|
|
212
218
|
text: `var(--${string})`;
|
|
213
219
|
foreground: `var(--${string})`;
|
|
214
|
-
|
|
215
|
-
|
|
220
|
+
backgroundStrong: `var(--${string})`;
|
|
221
|
+
backgroundSubtle: `var(--${string})`;
|
|
216
222
|
};
|
|
217
223
|
alert: {
|
|
218
224
|
text: `var(--${string})`;
|
|
219
225
|
foreground: `var(--${string})`;
|
|
220
|
-
|
|
226
|
+
backgroundStrong: `var(--${string})`;
|
|
227
|
+
backgroundSubtle: `var(--${string})`;
|
|
221
228
|
};
|
|
222
229
|
button: {
|
|
223
230
|
primary: {
|
|
224
231
|
solid: {
|
|
225
232
|
default: `var(--${string})`;
|
|
226
233
|
hover: `var(--${string})`;
|
|
227
|
-
pressed: `var(--${string})`;
|
|
228
234
|
border: `var(--${string})`;
|
|
235
|
+
pressed: `var(--${string})`;
|
|
236
|
+
text: `var(--${string})`;
|
|
229
237
|
};
|
|
230
238
|
outlined: {
|
|
231
239
|
border: `var(--${string})`;
|
|
232
240
|
text: `var(--${string})`;
|
|
241
|
+
hover: `var(--${string})`;
|
|
242
|
+
pressed: `var(--${string})`;
|
|
233
243
|
};
|
|
234
244
|
};
|
|
235
245
|
critical: {
|
|
236
246
|
solid: {
|
|
237
247
|
default: `var(--${string})`;
|
|
248
|
+
hover: `var(--${string})`;
|
|
249
|
+
border: `var(--${string})`;
|
|
250
|
+
pressed: `var(--${string})`;
|
|
251
|
+
text: `var(--${string})`;
|
|
252
|
+
};
|
|
253
|
+
outlined: {
|
|
254
|
+
border: `var(--${string})`;
|
|
255
|
+
text: `var(--${string})`;
|
|
256
|
+
hover: `var(--${string})`;
|
|
257
|
+
pressed: `var(--${string})`;
|
|
238
258
|
};
|
|
239
259
|
};
|
|
260
|
+
secondary: {
|
|
261
|
+
border: `var(--${string})`;
|
|
262
|
+
hover: `var(--${string})`;
|
|
263
|
+
pressed: `var(--${string})`;
|
|
264
|
+
text: `var(--${string})`;
|
|
265
|
+
};
|
|
266
|
+
disabled: {
|
|
267
|
+
fill: `var(--${string})`;
|
|
268
|
+
text: `var(--${string})`;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
link: {
|
|
272
|
+
primary: `var(--${string})`;
|
|
273
|
+
secondary: `var(--${string})`;
|
|
274
|
+
hover: `var(--${string})`;
|
|
275
|
+
pressed: `var(--${string})`;
|
|
276
|
+
critical: `var(--${string})`;
|
|
277
|
+
criticalHover: `var(--${string})`;
|
|
278
|
+
criticalPressed: `var(--${string})`;
|
|
279
|
+
};
|
|
280
|
+
illustration: {
|
|
281
|
+
brightSide: `var(--${string})`;
|
|
282
|
+
darkSide: `var(--${string})`;
|
|
283
|
+
lightFill: `var(--${string})`;
|
|
284
|
+
mainFill: `var(--${string})`;
|
|
285
|
+
outline: `var(--${string})`;
|
|
286
|
+
shadow: `var(--${string})`;
|
|
287
|
+
white: `var(--${string})`;
|
|
288
|
+
yellowDarkSide: `var(--${string})`;
|
|
289
|
+
yellowMainFill: `var(--${string})`;
|
|
240
290
|
};
|
|
241
291
|
};
|
|
242
292
|
colours: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.css.d.ts","sourceRoot":"","sources":["../../lib/themes/theme.css.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAKpD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwDQ,CAAC;AAEtB,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"theme.css.d.ts","sourceRoot":"","sources":["../../lib/themes/theme.css.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAKpD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwDQ,CAAC;AAEtB,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC;AA6crC;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI3B,CAAC;AAGF,OAAO,EAAE,eAAe,IAAI,iBAAiB,EAAE,CAAC;AAEhD,MAAM,MAAM,WAAW,GAAG,kBAAkB,CAAC,OAAO,eAAe,CAAC,CAAC;AAErE,0FAA0F;AAC1F,eAAO,MAAM,SAAS,QAKpB,CAAC"}
|
package/dist/themes/theme.css.js
CHANGED
|
@@ -137,14 +137,16 @@ const THEME_CONTRACT = {
|
|
|
137
137
|
primary: 'color-foreground-primary',
|
|
138
138
|
secondary: 'color-foreground-secondary',
|
|
139
139
|
reverse: 'color-foreground-reverse',
|
|
140
|
-
|
|
141
|
-
|
|
140
|
+
tertiary: 'color-foreground-tertiary',
|
|
141
|
+
placeholder: 'color-foreground-placeholder'
|
|
142
142
|
},
|
|
143
143
|
background: {
|
|
144
144
|
default: 'color-background-default',
|
|
145
145
|
reverse: 'color-background-reverse',
|
|
146
146
|
inactive: 'color-background-inactive',
|
|
147
|
-
emphasisInactive: 'color-background-emphasis-inactive'
|
|
147
|
+
emphasisInactive: 'color-background-emphasis-inactive',
|
|
148
|
+
emphasisLight: 'color-background-emphasis-light',
|
|
149
|
+
modal: 'color-background-modal'
|
|
148
150
|
},
|
|
149
151
|
border: {
|
|
150
152
|
default: 'color-border-default',
|
|
@@ -152,46 +154,94 @@ const THEME_CONTRACT = {
|
|
|
152
154
|
selected: 'color-border-selected',
|
|
153
155
|
strong: 'color-border-strong'
|
|
154
156
|
},
|
|
157
|
+
focus: {
|
|
158
|
+
ring: 'color-focus-ring'
|
|
159
|
+
},
|
|
155
160
|
info: {
|
|
156
161
|
text: 'color-info-text',
|
|
157
162
|
foreground: 'color-info-foreground',
|
|
158
|
-
|
|
163
|
+
backgroundStrong: 'color-info-background-strong',
|
|
164
|
+
backgroundSubtle: 'color-info-background-subtle'
|
|
159
165
|
},
|
|
160
166
|
success: {
|
|
161
167
|
text: 'color-success-text',
|
|
162
168
|
foreground: 'color-success-foreground',
|
|
163
|
-
|
|
164
|
-
|
|
169
|
+
backgroundStrong: 'color-success-background-strong',
|
|
170
|
+
backgroundSubtle: 'color-success-background-subtle'
|
|
165
171
|
},
|
|
166
172
|
warning: {
|
|
167
173
|
text: 'color-warning-text',
|
|
168
174
|
foreground: 'color-warning-foreground',
|
|
169
|
-
|
|
170
|
-
|
|
175
|
+
backgroundStrong: 'color-warning-background-strong',
|
|
176
|
+
backgroundSubtle: 'color-warning-background-subtle'
|
|
171
177
|
},
|
|
172
178
|
alert: {
|
|
173
179
|
text: 'color-alert-text',
|
|
174
180
|
foreground: 'color-alert-foreground',
|
|
175
|
-
|
|
181
|
+
backgroundStrong: 'color-alert-background-strong',
|
|
182
|
+
backgroundSubtle: 'color-alert-background-subtle'
|
|
176
183
|
},
|
|
177
184
|
button: {
|
|
178
185
|
primary: {
|
|
179
186
|
solid: {
|
|
180
187
|
default: 'color-button-primary-solid-default',
|
|
181
188
|
hover: 'color-button-primary-solid-hover',
|
|
189
|
+
border: 'color-button-primary-solid-border',
|
|
182
190
|
pressed: 'color-button-primary-solid-pressed',
|
|
183
|
-
|
|
191
|
+
text: 'color-button-primary-solid-text'
|
|
184
192
|
},
|
|
185
193
|
outlined: {
|
|
186
194
|
border: 'color-button-primary-outlined-border',
|
|
187
|
-
text: 'color-button-primary-outlined-text'
|
|
195
|
+
text: 'color-button-primary-outlined-text',
|
|
196
|
+
hover: 'color-button-primary-outlined-hover',
|
|
197
|
+
pressed: 'color-button-primary-outlined-pressed'
|
|
188
198
|
}
|
|
189
199
|
},
|
|
190
200
|
critical: {
|
|
191
201
|
solid: {
|
|
192
|
-
default: 'color-button-critical-solid-default'
|
|
202
|
+
default: 'color-button-critical-solid-default',
|
|
203
|
+
hover: 'color-button-critical-solid-hover',
|
|
204
|
+
border: 'color-button-critical-solid-border',
|
|
205
|
+
pressed: 'color-button-critical-solid-pressed',
|
|
206
|
+
text: 'color-button-critical-solid-text'
|
|
207
|
+
},
|
|
208
|
+
outlined: {
|
|
209
|
+
border: 'color-button-critical-outlined-border',
|
|
210
|
+
text: 'color-button-critical-outlined-text',
|
|
211
|
+
hover: 'color-button-critical-outlined-hover',
|
|
212
|
+
pressed: 'color-button-critical-outlined-pressed'
|
|
193
213
|
}
|
|
214
|
+
},
|
|
215
|
+
secondary: {
|
|
216
|
+
border: 'color-button-secondary-border',
|
|
217
|
+
hover: 'color-button-secondary-hover',
|
|
218
|
+
pressed: 'color-button-secondary-pressed',
|
|
219
|
+
text: 'color-button-secondary-text'
|
|
220
|
+
},
|
|
221
|
+
disabled: {
|
|
222
|
+
fill: 'color-button-disabled-fill',
|
|
223
|
+
text: 'color-button-disabled-text'
|
|
194
224
|
}
|
|
225
|
+
},
|
|
226
|
+
link: {
|
|
227
|
+
primary: 'color-link-primary',
|
|
228
|
+
secondary: 'color-link-secondary',
|
|
229
|
+
hover: 'color-link-hover',
|
|
230
|
+
pressed: 'color-link-pressed',
|
|
231
|
+
critical: 'color-link-critical',
|
|
232
|
+
criticalHover: 'color-link-critical-hover',
|
|
233
|
+
criticalPressed: 'color-link-critical-pressed'
|
|
234
|
+
},
|
|
235
|
+
illustration: {
|
|
236
|
+
brightSide: 'color-illustration-bright-side',
|
|
237
|
+
darkSide: 'color-illustration-dark-side',
|
|
238
|
+
lightFill: 'color-illustration-light-fill',
|
|
239
|
+
mainFill: 'color-illustration-main-fill',
|
|
240
|
+
outline: 'color-illustration-outline',
|
|
241
|
+
shadow: 'color-illustration-shadow',
|
|
242
|
+
white: 'color-illustration-white',
|
|
243
|
+
yellowDarkSide: 'color-illustration-yellow-dark-side',
|
|
244
|
+
yellowMainFill: 'color-illustration-yellow-main-fill'
|
|
195
245
|
}
|
|
196
246
|
},
|
|
197
247
|
// existing colours for compatability
|
|
@@ -338,12 +388,7 @@ const THEME_CONTRACT = {
|
|
|
338
388
|
md: 'border-radius-md',
|
|
339
389
|
lg: 'border-radius-lg',
|
|
340
390
|
xl: 'border-radius-xl',
|
|
341
|
-
/**
|
|
342
|
-
* @deprecated Use radius.xlarge — removed in v5 (DS-2026 major).
|
|
343
|
-
* Note: values differ today (2xl = 24px, xlarge = 20px); the exact
|
|
344
|
-
* DS-2026 mapping for this key is pending design resolution
|
|
345
|
-
* (master §6-Q2) and will be finalised at the major.
|
|
346
|
-
*/
|
|
391
|
+
/** DS-2026 Extra Large radius (24px) — used for modals. */
|
|
347
392
|
'2xl': 'border-radius-2xl',
|
|
348
393
|
/** @deprecated Use radius.xsmall (identical 4px value) — removed in v5 (DS-2026 major). */
|
|
349
394
|
'1': 'border-radius-1',
|