@@ -41,13 +41,13 @@ export interface BoxProps extends React.AriaAttributes {
4141 /** Border radius */
4242 borderRadius ?: BorderRadiusScale ;
4343 /** Vertical end horizontal start border radius */
44- borderRadiusEndStart ?: BorderRadiusScale ;
44+ borderEndStartRadius ?: BorderRadiusScale ;
4545 /** Vertical end horizontal end border radius */
46- borderRadiusEndEnd ?: BorderRadiusScale ;
46+ borderEndEndRadius ?: BorderRadiusScale ;
4747 /** Vertical start horizontal start border radius */
48- borderRadiusStartStart ?: BorderRadiusScale ;
48+ borderStartStartRadius ?: BorderRadiusScale ;
4949 /** Vertical start horizontal end border radius */
50- borderRadiusStartEnd ?: BorderRadiusScale ;
50+ borderStartEndRadius ?: BorderRadiusScale ;
5151 /** Border width */
5252 borderWidth ?: BorderWidthScale ;
5353 /** Vertical start border width */
@@ -153,10 +153,10 @@ export const Box = forwardRef<HTMLElement, BoxProps>(
153153 borderInlineStartWidth,
154154 borderInlineEndWidth,
155155 borderRadius,
156- borderRadiusEndStart ,
157- borderRadiusEndEnd ,
158- borderRadiusStartStart ,
159- borderRadiusStartEnd ,
156+ borderEndStartRadius ,
157+ borderEndEndRadius ,
158+ borderStartStartRadius ,
159+ borderStartEndRadius ,
160160 children,
161161 color,
162162 id,
@@ -224,17 +224,17 @@ export const Box = forwardRef<HTMLElement, BoxProps>(
224224 '--pc-box-border-radius' : borderRadius
225225 ? `var(--p-border-radius-${ borderRadius } )`
226226 : undefined ,
227- '--pc-box-border-radius- end-start' : borderRadiusEndStart
228- ? `var(--p-border-radius-${ borderRadiusEndStart } )`
227+ '--pc-box-border-end-start-radius ' : borderEndStartRadius
228+ ? `var(--p-border-radius-${ borderEndStartRadius } )`
229229 : undefined ,
230- '--pc-box-border-radius- end-end' : borderRadiusEndEnd
231- ? `var(--p-border-radius-${ borderRadiusEndEnd } )`
230+ '--pc-box-border-end-end-radius ' : borderEndEndRadius
231+ ? `var(--p-border-radius-${ borderEndEndRadius } )`
232232 : undefined ,
233- '--pc-box-border-radius- start-start' : borderRadiusStartStart
234- ? `var(--p-border-radius-${ borderRadiusStartStart } )`
233+ '--pc-box-border-start-start-radius ' : borderStartStartRadius
234+ ? `var(--p-border-radius-${ borderStartStartRadius } )`
235235 : undefined ,
236- '--pc-box-border-radius- start-end' : borderRadiusStartEnd
237- ? `var(--p-border-radius-${ borderRadiusStartEnd } )`
236+ '--pc-box-border-start-end-radius ' : borderStartEndRadius
237+ ? `var(--p-border-radius-${ borderStartEndRadius } )`
238238 : undefined ,
239239 '--pc-box-border-width' : borderWidth
240240 ? `var(--p-border-width-${ borderWidth } )`
0 commit comments